From 133be328007799f2718c4b6a46cd4f4a6838a8b7 Mon Sep 17 00:00:00 2001 From: yongfeng <2283865573@qq.com> Date: Sun, 19 Jan 2025 20:13:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E5=B8=83=E5=BC=8F=E5=8A=A8=E6=80=81?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E4=B8=AD=E5=BF=83=E6=8E=A7=E5=88=B6=E9=99=90?= =?UTF-8?q?=E6=B5=81=E3=80=81=E5=88=87=E9=9D=A2=E6=8E=A7=E5=88=B6=E8=B6=85?= =?UTF-8?q?=E6=97=B6=E7=86=94=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bigmarket-app/pom.xml | 4 + .../main/java/cn/bugstack/Application.java | 2 + .../java/cn/bugstack/aop/RateLimiterAOP.java | 166 + .../bugstack/config/DCCValueBeanFactory.java | 18 +- .../rule/chain/impl/BackListLogicChain.java | 60 - bigmarket-trigger/pom.xml | 4 + .../http/RaffleActivityController.java | 25 +- .../RateLimiterAccessInterceptor.java | 21 + .../cn/bugstack/types/enums/ResponseCode.java | 2 + data/log/log-info-2024-12-11.0.log | 1354 - data/log/log_error.log | 15584 +---------- data/log/log_info.log | 21335 +--------------- pom.xml | 5 + 13 files changed, 769 insertions(+), 37811 deletions(-) create mode 100644 bigmarket-app/src/main/java/cn/bugstack/aop/RateLimiterAOP.java delete mode 100644 bigmarket-domain/src/main/java/cn/bugstack/domain/strategy/service/rule/chain/impl/BackListLogicChain.java create mode 100644 bigmarket-types/src/main/java/cn/bugstack/types/annotations/RateLimiterAccessInterceptor.java delete mode 100644 data/log/log-info-2024-12-11.0.log diff --git a/bigmarket-app/pom.xml b/bigmarket-app/pom.xml index f56b694..4efd4b5 100644 --- a/bigmarket-app/pom.xml +++ b/bigmarket-app/pom.xml @@ -117,6 +117,10 @@ business-behavior-monitor-sdk 1.1 + + com.netflix.hystrix + hystrix-javanica + cn.bugstack diff --git a/bigmarket-app/src/main/java/cn/bugstack/Application.java b/bigmarket-app/src/main/java/cn/bugstack/Application.java index a048a62..64ce7a1 100644 --- a/bigmarket-app/src/main/java/cn/bugstack/Application.java +++ b/bigmarket-app/src/main/java/cn/bugstack/Application.java @@ -4,12 +4,14 @@ import org.apache.dubbo.config.spring.context.annotation.EnableDubbo; import org.springframework.beans.factory.annotation.Configurable; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.scheduling.annotation.EnableScheduling; @SpringBootApplication @Configurable @EnableScheduling @EnableDubbo +@EnableAspectJAutoProxy(proxyTargetClass = true) public class Application { public static void main(String[] args){ diff --git a/bigmarket-app/src/main/java/cn/bugstack/aop/RateLimiterAOP.java b/bigmarket-app/src/main/java/cn/bugstack/aop/RateLimiterAOP.java new file mode 100644 index 0000000..0432587 --- /dev/null +++ b/bigmarket-app/src/main/java/cn/bugstack/aop/RateLimiterAOP.java @@ -0,0 +1,166 @@ +package cn.bugstack.aop; + +import cn.bugstack.types.annotations.DCCValue; +import cn.bugstack.types.annotations.RateLimiterAccessInterceptor; +import com.google.common.cache.Cache; +import com.google.common.cache.CacheBuilder; +import com.google.common.util.concurrent.RateLimiter; +import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; +import org.aspectj.lang.JoinPoint; +import org.aspectj.lang.ProceedingJoinPoint; +import org.aspectj.lang.Signature; +import org.aspectj.lang.annotation.Around; +import org.aspectj.lang.annotation.Aspect; +import org.aspectj.lang.annotation.Pointcut; +import org.aspectj.lang.reflect.MethodSignature; +import org.springframework.stereotype.Component; + +import java.lang.reflect.Field; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.concurrent.TimeUnit; + +/** + * @ClassName: RateLimiterAOP + * @Description: + * @Author: zhaoyongfeng + * @Date: 2025/1/19 17:04 + */ +@Slf4j +@Aspect +@Component +public class RateLimiterAOP { + @DCCValue("rateLimiterSwitch:close") + private String rateLimiterSwitch; + + // 个人限频记录1分钟 + private final Cache loginRecord = CacheBuilder.newBuilder() + .expireAfterWrite(1, TimeUnit.MINUTES) + .build(); + // 个人限频黑名单24h - 分布式业务场景,可以记录到 Redis 中 + private final Cache blacklist = CacheBuilder.newBuilder() + .expireAfterWrite(24, TimeUnit.HOURS) + .build(); + @Pointcut("@annotation(cn.bugstack.types.annotations.RateLimiterAccessInterceptor)") + public void aopPoint() { + } + @Around("aopPoint() && @annotation(rateLimiterAccessInterceptor)") + public Object doRouter(ProceedingJoinPoint jp, RateLimiterAccessInterceptor rateLimiterAccessInterceptor) throws Throwable{ + // 0. 限流开关【open 开启、close 关闭】关闭后,不会走限流策略 + if (StringUtils.isBlank(rateLimiterSwitch) || "close".equals(rateLimiterSwitch)) { + return jp.proceed(); + } + String key = rateLimiterAccessInterceptor.key(); + if (StringUtils.isBlank(key)) { + throw new RuntimeException("annotation RateLimiter uId is null!"); + } + // 获取拦截字段 + String keyAttr = getAttrValue(key, jp.getArgs()); + log.info("aop attr {}", keyAttr); + // 黑名单拦截 + if (!"all".equals(keyAttr) && rateLimiterAccessInterceptor.blacklistCount() != 0 && null != blacklist.getIfPresent(keyAttr) && blacklist.getIfPresent(keyAttr) > rateLimiterAccessInterceptor.blacklistCount()) { + log.info("限流-黑名单拦截(24h):{}", keyAttr); + return fallbackMethodResult(jp, rateLimiterAccessInterceptor.fallbackMethod()); + } + // 获取限流 -> Guava 缓存1分钟 + RateLimiter rateLimiter = loginRecord.getIfPresent(keyAttr); + if (null == rateLimiter) { + rateLimiter = RateLimiter.create(rateLimiterAccessInterceptor.permitsPerSecond()); + loginRecord.put(keyAttr, rateLimiter); + } + // 限流拦截 + if (!rateLimiter.tryAcquire()) { + if (rateLimiterAccessInterceptor.blacklistCount() != 0) { + if (null == blacklist.getIfPresent(keyAttr)) { + blacklist.put(keyAttr, 1L); + } else { + blacklist.put(keyAttr, blacklist.getIfPresent(keyAttr) + 1L); + } + } + log.info("限流-超频次拦截:{}", keyAttr); + return fallbackMethodResult(jp, rateLimiterAccessInterceptor.fallbackMethod()); + } + // 返回结果 + return jp.proceed(); + } + /** + * @description: 调用用户配置的回调方法,当拦截后,返回回调结果。 + * @return: java.lang.Object + * @author zhaoyongfeng + * @date: 2025/1/19 17:59 + */ + private Object fallbackMethodResult(JoinPoint jp, String fallbackMethod) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { + Signature sig = jp.getSignature(); + MethodSignature methodSignature = (MethodSignature) sig; + Method method = jp.getTarget().getClass().getMethod(fallbackMethod, methodSignature.getParameterTypes()); + return method.invoke(jp.getThis(), jp.getArgs()); + } + /** + * 实际根据自身业务调整,主要是为了获取通过某个值做拦截 + */ + public String getAttrValue(String attr, Object[] args) { + if (args[0] instanceof String) { + return args[0].toString(); + } + String filedValue = null; + for (Object arg : args) { + try { + if (StringUtils.isNotBlank(filedValue)) { + break; + } + // filedValue = BeanUtils.getProperty(arg, attr); + // fix: 使用lombok时,uId这种字段的get方法与idea生成的get方法不同,会导致获取不到属性值,改成反射获取解决 + filedValue = String.valueOf(this.getValueByName(arg, attr)); + } catch (Exception e) { + log.error("获取路由属性值失败 attr:{}", attr, e); + } + } + return filedValue; + } + + + /** + * 获取对象的特定属性值 + * + * @param item 对象 + * @param name 属性名 + * @return 属性值 + * @author tang + */ + private Object getValueByName(Object item, String name) { + try { + Field field = getFieldByName(item, name); + if (field == null) { + return null; + } + field.setAccessible(true); + Object o = field.get(item); + field.setAccessible(false); + return o; + } catch (IllegalAccessException e) { + return null; + } + } + /** + * 根据名称获取方法,该方法同时兼顾继承类获取父类的属性 + * + * @param item 对象 + * @param name 属性名 + * @return 该属性对应方法 + * @author tang + */ + private Field getFieldByName(Object item, String name) { + try { + Field field; + try { + field = item.getClass().getDeclaredField(name); + } catch (NoSuchFieldException e) { + field = item.getClass().getSuperclass().getDeclaredField(name); + } + return field; + } catch (NoSuchFieldException e) { + return null; + } + } +} diff --git a/bigmarket-app/src/main/java/cn/bugstack/config/DCCValueBeanFactory.java b/bigmarket-app/src/main/java/cn/bugstack/config/DCCValueBeanFactory.java index 2a217b4..09cdee6 100644 --- a/bigmarket-app/src/main/java/cn/bugstack/config/DCCValueBeanFactory.java +++ b/bigmarket-app/src/main/java/cn/bugstack/config/DCCValueBeanFactory.java @@ -5,6 +5,8 @@ import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; import org.apache.curator.framework.CuratorFramework; import org.apache.curator.framework.recipes.cache.CuratorCache; +import org.springframework.aop.framework.AopProxyUtils; +import org.springframework.aop.support.AopUtils; import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanPostProcessor; import org.springframework.context.annotation.Configuration; @@ -64,8 +66,14 @@ public class DCCValueBeanFactory implements BeanPostProcessor { @Override public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { - Class beanClass = bean.getClass(); - Field[] fields = beanClass.getDeclaredFields(); + // 注意;增加 AOP 代理后,获得类的方式要通过 AopProxyUtils.getTargetClass(bean); 不能直接 bean.class 因为代理后类的结构发生变化,这样不能获得到自己的自定义注解了。 + Class targetBeanClass = bean.getClass(); + Object targetBeanObject = bean; + if (AopUtils.isAopProxy(bean)) { + targetBeanClass = AopUtils.getTargetClass(bean); + targetBeanObject = AopProxyUtils.getSingletonTarget(bean); + } + Field[] fields = targetBeanClass.getDeclaredFields(); for (Field field : fields) { if (!field.isAnnotationPresent(DCCValue.class)) { continue; @@ -89,7 +97,7 @@ public class DCCValueBeanFactory implements BeanPostProcessor { client.create().creatingParentsIfNeeded().forPath(keyPath); if (StringUtils.isNotBlank(defaultValue)) { field.setAccessible(true); - field.set(bean, defaultValue); + field.set(targetBeanObject, defaultValue); field.setAccessible(false); } log.info("DCC 节点监听 创建节点 {}", keyPath); @@ -97,7 +105,7 @@ public class DCCValueBeanFactory implements BeanPostProcessor { String configValue = new String(client.getData().forPath(keyPath)); if (StringUtils.isNotBlank(configValue)) { field.setAccessible(true); - field.set(bean, configValue); + field.set(targetBeanObject, configValue); field.setAccessible(false); log.info("DCC 节点监听 设置配置 {} {} {}", keyPath, field.getName(), configValue); } @@ -106,7 +114,7 @@ public class DCCValueBeanFactory implements BeanPostProcessor { throw new RuntimeException(e); } - dccObjGroup.put(BASE_CONFIG_PATH_CONFIG.concat("/").concat(key), bean); + dccObjGroup.put(BASE_CONFIG_PATH_CONFIG.concat("/").concat(key), targetBeanObject); } return bean; } diff --git a/bigmarket-domain/src/main/java/cn/bugstack/domain/strategy/service/rule/chain/impl/BackListLogicChain.java b/bigmarket-domain/src/main/java/cn/bugstack/domain/strategy/service/rule/chain/impl/BackListLogicChain.java deleted file mode 100644 index 18c1154..0000000 --- a/bigmarket-domain/src/main/java/cn/bugstack/domain/strategy/service/rule/chain/impl/BackListLogicChain.java +++ /dev/null @@ -1,60 +0,0 @@ -package cn.bugstack.domain.strategy.service.rule.chain.impl; - -import cn.bugstack.domain.strategy.repository.IStrategyRepository; -import cn.bugstack.domain.strategy.service.rule.chain.AbstractLogicChain; -import cn.bugstack.domain.strategy.service.rule.chain.factory.DefaultChainFactory; -import cn.bugstack.types.common.Constants; -import lombok.extern.slf4j.Slf4j; -import org.springframework.beans.factory.config.ConfigurableBeanFactory; -import org.springframework.context.annotation.Scope; -import org.springframework.stereotype.Component; - -import javax.annotation.Resource; - -/** - * @author Fuzhengwei bugstack.cn @小傅哥 - * @description 黑名单责任链 - * @create 2024-01-20 10:23 - */ -@Slf4j -@Component("rule_blacklist") -@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE) -public class BackListLogicChain extends AbstractLogicChain { - - @Resource - private IStrategyRepository repository; - - @Override - public DefaultChainFactory.StrategyAwardVO logic(String userId, Long strategyId) { - log.info("抽奖责任链-黑名单开始 userId: {} strategyId: {} ruleModel: {}", userId, strategyId, ruleModel()); - - // 查询规则值配置 - String ruleValue = repository.queryStrategyRuleValue(strategyId, ruleModel()); - String[] splitRuleValue = ruleValue.split(Constants.COLON); - Integer awardId = Integer.parseInt(splitRuleValue[0]); - - // 黑名单抽奖判断 - String[] userBlackIds = splitRuleValue[1].split(Constants.SPLIT); - for (String userBlackId : userBlackIds) { - if (userId.equals(userBlackId)) { - log.info("抽奖责任链-黑名单接管 userId: {} strategyId: {} ruleModel: {} awardId: {}", userId, strategyId, ruleModel(), awardId); - return DefaultChainFactory.StrategyAwardVO.builder() - .awardId(awardId) - .logicModel(ruleModel()) - // 写入默认配置黑名单奖品值 0.01 ~ 1 积分,也可以配置到数据库表中 - .awardRuleValue("0.01,1") - .build(); - } - } - - // 过滤其他责任链 - log.info("抽奖责任链-黑名单放行 userId: {} strategyId: {} ruleModel: {}", userId, strategyId, ruleModel()); - return next().logic(userId, strategyId); - } - - @Override - protected String ruleModel() { - return DefaultChainFactory.LogicModel.RULE_BLACKLIST.getCode(); - } - -} diff --git a/bigmarket-trigger/pom.xml b/bigmarket-trigger/pom.xml index 26e1b53..9c9438d 100644 --- a/bigmarket-trigger/pom.xml +++ b/bigmarket-trigger/pom.xml @@ -46,6 +46,10 @@ org.springframework.cloud spring-cloud-starter-zookeeper-discovery + + com.netflix.hystrix + hystrix-javanica + cn.bugstack diff --git a/bigmarket-trigger/src/main/java/cn/bugstack/trigger/http/RaffleActivityController.java b/bigmarket-trigger/src/main/java/cn/bugstack/trigger/http/RaffleActivityController.java index e81ce3c..86317a9 100644 --- a/bigmarket-trigger/src/main/java/cn/bugstack/trigger/http/RaffleActivityController.java +++ b/bigmarket-trigger/src/main/java/cn/bugstack/trigger/http/RaffleActivityController.java @@ -26,9 +26,12 @@ import cn.bugstack.trigger.api.IRaffleActivityService; import cn.bugstack.trigger.api.dto.*; import cn.bugstack.trigger.api.response.Response; import cn.bugstack.types.annotations.DCCValue; +import cn.bugstack.types.annotations.RateLimiterAccessInterceptor; import cn.bugstack.types.enums.ResponseCode; import cn.bugstack.types.exception.AppException; import com.alibaba.fastjson.JSON; +import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand; +import com.netflix.hystrix.contrib.javanica.annotation.HystrixProperty; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.RandomStringUtils; import org.apache.commons.lang3.StringUtils; @@ -133,12 +136,18 @@ public class RaffleActivityController implements IRaffleActivityService { * "activityId": 100301 * }' */ + @RateLimiterAccessInterceptor(key = "userId", fallbackMethod = "drawRateLimiterError", permitsPerSecond = 1.0d, blacklistCount = 1) + @HystrixCommand(commandProperties = { + @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "150") + }, fallbackMethod = "drawHystrixError" + ) @RequestMapping(value = "draw", method = RequestMethod.POST) @Override public Response draw(@RequestBody ActivityDrawRequestDTO request) { try { log.info("活动抽奖开始 userId:{} activityId:{}", request.getUserId(), request.getActivityId()); - if (!"open".equals(degradeSwitch)) { + // 0. 降级开关【open 开启、close 关闭】 + if (StringUtils.isNotBlank(degradeSwitch) && "open".equals(degradeSwitch)) { return Response.builder() .code(ResponseCode.DEGRADE_SWITCH.getCode()) .info(ResponseCode.DEGRADE_SWITCH.getInfo()) @@ -200,7 +209,21 @@ public class RaffleActivityController implements IRaffleActivityService { .build(); } } + public Response drawRateLimiterError(@RequestBody ActivityDrawRequestDTO request) { + log.info("活动抽奖限流 userId:{} activityId:{}", request.getUserId(), request.getActivityId()); + return Response.builder() + .code(ResponseCode.RATE_LIMITER.getCode()) + .info(ResponseCode.RATE_LIMITER.getInfo()) + .build(); + } + public Response drawHystrixError(@RequestBody ActivityDrawRequestDTO request) { + log.info("活动抽奖熔断 userId:{} activityId:{}", request.getUserId(), request.getActivityId()); + return Response.builder() + .code(ResponseCode.HYSTRIX.getCode()) + .info(ResponseCode.HYSTRIX.getInfo()) + .build(); + } /** * 日历签到返利接口 * diff --git a/bigmarket-types/src/main/java/cn/bugstack/types/annotations/RateLimiterAccessInterceptor.java b/bigmarket-types/src/main/java/cn/bugstack/types/annotations/RateLimiterAccessInterceptor.java new file mode 100644 index 0000000..7f58cdd --- /dev/null +++ b/bigmarket-types/src/main/java/cn/bugstack/types/annotations/RateLimiterAccessInterceptor.java @@ -0,0 +1,21 @@ +package cn.bugstack.types.annotations; + +import java.lang.annotation.*; + +@Retention(RetentionPolicy.RUNTIME) +@Target({ElementType.METHOD}) +@Documented +public @interface RateLimiterAccessInterceptor { + + /** 用哪个字段作为拦截标识,未配置则默认走全部 */ + String key() default "all"; + + /** 限制频次(每秒请求次数) */ + double permitsPerSecond(); + + /** 黑名单拦截(多少次限制后加入黑名单)0 不限制 */ + double blacklistCount() default 0; + + /** 拦截后的执行方法 */ + String fallbackMethod(); +} diff --git a/bigmarket-types/src/main/java/cn/bugstack/types/enums/ResponseCode.java b/bigmarket-types/src/main/java/cn/bugstack/types/enums/ResponseCode.java index 591553c..760c5fe 100644 --- a/bigmarket-types/src/main/java/cn/bugstack/types/enums/ResponseCode.java +++ b/bigmarket-types/src/main/java/cn/bugstack/types/enums/ResponseCode.java @@ -14,6 +14,8 @@ public enum ResponseCode { ILLEGAL_PARAMETER("0002", "非法参数"), INDEX_DUP("0003", "唯一索引冲突"), DEGRADE_SWITCH("0004", "活动已降级"), + RATE_LIMITER("0005", "访问限流拦截"), + HYSTRIX("0006", "访问熔断拦截"), STRATEGY_RULE_WEIGHT_IS_NULL("ERR_BIZ_001", "业务异常,策略规则中 rule_weight 权重规则已适用但未配置"), UN_ASSEMBLED_STRATEGY_ARMORY("ERR_BIZ_002", "抽奖策略配置未装配,请通过IStrategyArmory完成装配"), ACTIVITY_STATE_ERROR("ERR_BIZ_003", "活动未开启(非open状态)"), diff --git a/data/log/log-info-2024-12-11.0.log b/data/log/log-info-2024-12-11.0.log deleted file mode 100644 index ef5e8ee..0000000 --- a/data/log/log-info-2024-12-11.0.log +++ /dev/null @@ -1,1354 +0,0 @@ -24-12-11.16:22:25.860 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 24140 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) -24-12-11.16:22:25.863 [main ] INFO Application - The following 1 profile is active: "dev" -24-12-11.16:22:27.512 [main ] INFO RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -24-12-11.16:22:27.515 [main ] INFO RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -24-12-11.16:22:27.651 [main ] INFO RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 118 ms. Found 0 Redis repository interfaces. -24-12-11.16:22:28.694 [main ] INFO TomcatWebServer - Tomcat initialized with port(s): 8091 (http) -24-12-11.16:22:28.706 [main ] INFO Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8091"] -24-12-11.16:22:28.707 [main ] INFO StandardService - Starting service [Tomcat] -24-12-11.16:22:28.707 [main ] INFO StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.75] -24-12-11.16:22:28.921 [main ] INFO [/] - Initializing Spring embedded WebApplicationContext -24-12-11.16:22:28.922 [main ] INFO ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3006 ms -24-12-11.16:22:29.280 [main ] INFO Version - Redisson 3.23.4 -24-12-11.16:22:30.855 [redisson-netty-2-4] INFO MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.16:22:30.872 [redisson-netty-2-13] INFO MasterConnectionPool - 5 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.16:22:33.555 [main ] INFO EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' -24-12-11.16:22:33.697 [main ] INFO Http11NioProtocol - Starting ProtocolHandler ["http-nio-8091"] -24-12-11.16:22:33.700 [main ] WARN AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8091 is already in use -24-12-11.16:22:33.730 [main ] INFO Http11NioProtocol - Pausing ProtocolHandler ["http-nio-8091"] -24-12-11.16:22:33.730 [main ] INFO StandardService - Stopping service [Tomcat] -24-12-11.16:22:33.736 [main ] INFO Http11NioProtocol - Stopping ProtocolHandler ["http-nio-8091"] -24-12-11.16:22:33.737 [main ] INFO Http11NioProtocol - Destroying ProtocolHandler ["http-nio-8091"] -24-12-11.16:22:33.751 [main ] INFO ConditionEvaluationReportLoggingListener - - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. -24-12-11.16:22:33.775 [main ] ERROR LoggingFailureAnalysisReporter - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8091 was already in use. - -Action: - -Identify and stop the process that's listening on port 8091 or configure this application to listen on another port. - -24-12-11.16:22:57.937 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 8280 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) -24-12-11.16:22:57.940 [main ] INFO Application - The following 1 profile is active: "dev" -24-12-11.16:22:59.081 [main ] INFO RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -24-12-11.16:22:59.084 [main ] INFO RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -24-12-11.16:22:59.222 [main ] INFO RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 119 ms. Found 0 Redis repository interfaces. -24-12-11.16:23:00.140 [main ] INFO TomcatWebServer - Tomcat initialized with port(s): 8091 (http) -24-12-11.16:23:00.150 [main ] INFO Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8091"] -24-12-11.16:23:00.150 [main ] INFO StandardService - Starting service [Tomcat] -24-12-11.16:23:00.151 [main ] INFO StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.75] -24-12-11.16:23:00.347 [main ] INFO [/] - Initializing Spring embedded WebApplicationContext -24-12-11.16:23:00.347 [main ] INFO ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2368 ms -24-12-11.16:23:00.667 [main ] INFO Version - Redisson 3.23.4 -24-12-11.16:23:02.096 [redisson-netty-2-4] INFO MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.16:23:02.122 [redisson-netty-2-13] INFO MasterConnectionPool - 5 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.16:23:03.836 [main ] INFO EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' -24-12-11.16:23:03.952 [main ] INFO Http11NioProtocol - Starting ProtocolHandler ["http-nio-8091"] -24-12-11.16:23:03.966 [main ] INFO TomcatWebServer - Tomcat started on port(s): 8091 (http) with context path '' -24-12-11.16:23:03.968 [main ] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-11.16:23:04.001 [main ] INFO CachingConnectionFactory - Created new connection: rabbitConnectionFactory#4a642e4b:0/SimpleConnection@7a1ddbf1 [delegate=amqp://admin@127.0.0.1:5672/, localPort= 61823] -24-12-11.16:23:04.067 [main ] INFO Application - Started Application in 6.998 seconds (JVM running for 9.405) -24-12-11.16:23:06.922 [RMI TCP Connection(3)-192.168.157.1] INFO [/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -24-12-11.16:23:06.922 [RMI TCP Connection(3)-192.168.157.1] INFO DispatcherServlet - Initializing Servlet 'dispatcherServlet' -24-12-11.16:23:06.924 [RMI TCP Connection(3)-192.168.157.1] INFO DispatcherServlet - Completed initialization in 2 ms -24-12-11.16:23:06.946 [RMI TCP Connection(2)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.16:23:07.345 [RMI TCP Connection(2)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.16:23:07.364 [RMI TCP Connection(2)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.16:23:07.385 [RMI TCP Connection(2)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.16:23:13.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-11.16:23:13.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-11.16:23:14.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-11.16:23:14.155 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-11.16:23:15.415 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-11.16:23:15.415 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-11.16:57:21.633 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 7568 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) -24-12-11.16:57:21.636 [main ] INFO Application - The following 1 profile is active: "dev" -24-12-11.16:57:22.867 [main ] INFO RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -24-12-11.16:57:22.869 [main ] INFO RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -24-12-11.16:57:22.979 [main ] INFO RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 98 ms. Found 0 Redis repository interfaces. -24-12-11.16:57:23.863 [main ] INFO TomcatWebServer - Tomcat initialized with port(s): 8091 (http) -24-12-11.16:57:23.873 [main ] INFO Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8091"] -24-12-11.16:57:23.873 [main ] INFO StandardService - Starting service [Tomcat] -24-12-11.16:57:23.873 [main ] INFO StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.75] -24-12-11.16:57:24.066 [main ] INFO [/] - Initializing Spring embedded WebApplicationContext -24-12-11.16:57:24.067 [main ] INFO ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2379 ms -24-12-11.16:57:24.395 [main ] INFO Version - Redisson 3.23.4 -24-12-11.16:57:26.026 [redisson-netty-2-4] INFO MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.16:57:26.044 [redisson-netty-2-13] INFO MasterConnectionPool - 5 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.16:57:27.798 [main ] INFO EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' -24-12-11.16:57:27.946 [main ] INFO Http11NioProtocol - Starting ProtocolHandler ["http-nio-8091"] -24-12-11.16:57:27.967 [main ] INFO TomcatWebServer - Tomcat started on port(s): 8091 (http) with context path '' -24-12-11.16:57:27.969 [main ] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-11.16:57:28.004 [main ] INFO CachingConnectionFactory - Created new connection: rabbitConnectionFactory#4a642e4b:0/SimpleConnection@7a1ddbf1 [delegate=amqp://admin@127.0.0.1:5672/, localPort= 57191] -24-12-11.16:57:28.080 [main ] INFO Application - Started Application in 7.009 seconds (JVM running for 9.251) -24-12-11.16:57:30.742 [RMI TCP Connection(2)-192.168.157.1] INFO [/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -24-12-11.16:57:30.743 [RMI TCP Connection(2)-192.168.157.1] INFO DispatcherServlet - Initializing Servlet 'dispatcherServlet' -24-12-11.16:57:30.745 [RMI TCP Connection(2)-192.168.157.1] INFO DispatcherServlet - Completed initialization in 2 ms -24-12-11.16:57:30.752 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.16:57:30.951 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.16:57:30.967 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.16:57:30.986 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.16:58:00.003 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.16:58:00.014 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.16:58:52.743 [http-nio-8091-exec-1] INFO RaffleActivityController - 活动抽奖 userId:xiaofuge activityId:100301 -24-12-11.16:58:52.928 [http-nio-8091-exec-1] INFO AbstractRaffleActivityPartake - 创建参与活动订单 userId:xiaofuge activityId:100301 userRaffleOrderEntity:{"activityId":100301,"activityName":"测试活动","orderId":"313091076458","orderState":"create","orderTime":1712308231000,"strategyId":100006,"userId":"xiaofuge"} -24-12-11.16:58:52.929 [http-nio-8091-exec-1] INFO RaffleActivityController - 活动抽奖,创建订单 userId:xiaofuge activityId:100301 orderId:313091076458 -24-12-11.16:58:52.944 [http-nio-8091-exec-1] INFO DefaultLogicChain - 抽奖责任链-默认处理 userId: xiaofuge strategyId: 100006 ruleModel: rule_default awardId: 102 -24-12-11.16:58:52.946 [http-nio-8091-exec-1] INFO AbstractRaffleStrategy - 抽奖策略计算-责任链 xiaofuge 100006 102 rule_default -24-12-11.16:58:52.946 [http-nio-8091-exec-1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.16:58:52.965 [http-nio-8091-exec-1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.16:58:52.998 [http-nio-8091-exec-1] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减 userId:xiaofuge strategyId:100006 awardId:102 -24-12-11.16:58:53.002 [http-nio-8091-exec-1] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减-成功 userId:xiaofuge strategyId:100006 awardId:102 -24-12-11.16:58:53.025 [http-nio-8091-exec-1] INFO DecisionTreeEngine - 决策树引擎【规则树-兜底奖励】treeId:tree_luck_award node:rule_stock code:0001 -24-12-11.16:58:53.026 [http-nio-8091-exec-1] INFO AbstractRaffleStrategy - 抽奖策略计算-规则树 xiaofuge 100006 102 null -24-12-11.16:58:53.121 [http-nio-8091-exec-1] ERROR AwardRepository - 写入中奖记录,唯一索引冲突 userId: xiaofuge activityId: 100301 awardId: 102 -org.springframework.dao.DuplicateKeyException: -### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -### The error may exist in file [C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes\mybatis\mapper\user_award_record_mapper.xml] -### The error may involve cn.bugstack.infrastructure.persistent.dao.IUserAwardRecordDao.insert-Inline -### The error occurred while setting parameters -### SQL: insert into user_award_record_001( user_id, activity_id, strategy_id, order_id, award_id, award_title, award_time, award_state, create_time, update_time ) values ( ?,?,?,?,?,?,?,?,now(),now() ) -### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -; Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy108.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:62) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy134.insert(Unknown Source) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:80) - at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.saveUserAwardRecord(AwardRepository.java:77) - at cn.bugstack.domain.award.service.AwardService.saveUserAwardRecord(AwardService.java:50) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:130) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) - at com.sun.proxy.$Proxy181.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:197) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:184) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 65 common frames omitted -24-12-11.16:58:53.128 [http-nio-8091-exec-1] ERROR RaffleActivityController - 活动抽奖失败 userId:xiaofuge activityId:100301 -cn.bugstack.types.exception.AppException: null - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:94) - at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.saveUserAwardRecord(AwardRepository.java:77) - at cn.bugstack.domain.award.service.AwardService.saveUserAwardRecord(AwardService.java:50) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:130) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: org.springframework.dao.DuplicateKeyException: -### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -### The error may exist in file [C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes\mybatis\mapper\user_award_record_mapper.xml] -### The error may involve cn.bugstack.infrastructure.persistent.dao.IUserAwardRecordDao.insert-Inline -### The error occurred while setting parameters -### SQL: insert into user_award_record_001( user_id, activity_id, strategy_id, order_id, award_id, award_title, award_time, award_state, create_time, update_time ) values ( ?,?,?,?,?,?,?,?,now(),now() ) -### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -; Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy108.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:62) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy134.insert(Unknown Source) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:80) - ... 58 common frames omitted -Caused by: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) - at com.sun.proxy.$Proxy181.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:197) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:184) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 65 common frames omitted -24-12-11.16:59:00.005 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.16:59:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存 strategyId:100006 awardId:102 -24-12-11.16:59:00.017 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:00:00.015 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:00:00.017 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:01:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:01:00.015 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:02:00.012 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:02:00.015 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:02:05.911 [http-nio-8091-exec-3] INFO RaffleActivityController - 活动抽奖 userId:xiaofuge activityId:100301 -24-12-11.17:02:05.918 [http-nio-8091-exec-3] INFO AbstractRaffleActivityPartake - 创建参与活动订单 userId:xiaofuge activityId:100301 userRaffleOrderEntity:{"activityId":100301,"activityName":"测试活动","orderId":"313091076458","orderState":"create","orderTime":1712308231000,"strategyId":100006,"userId":"xiaofuge"} -24-12-11.17:02:05.918 [http-nio-8091-exec-3] INFO RaffleActivityController - 活动抽奖,创建订单 userId:xiaofuge activityId:100301 orderId:313091076458 -24-12-11.17:02:05.922 [http-nio-8091-exec-3] INFO DefaultLogicChain - 抽奖责任链-默认处理 userId: xiaofuge strategyId: 100006 ruleModel: rule_default awardId: 104 -24-12-11.17:02:05.922 [http-nio-8091-exec-3] INFO AbstractRaffleStrategy - 抽奖策略计算-责任链 xiaofuge 100006 104 rule_default -24-12-11.17:02:05.927 [http-nio-8091-exec-3] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减 userId:xiaofuge strategyId:100006 awardId:104 -24-12-11.17:02:05.929 [http-nio-8091-exec-3] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减-成功 userId:xiaofuge strategyId:100006 awardId:104 -24-12-11.17:02:05.931 [http-nio-8091-exec-3] INFO DecisionTreeEngine - 决策树引擎【规则树-兜底奖励】treeId:tree_luck_award node:rule_stock code:0001 -24-12-11.17:02:05.931 [http-nio-8091-exec-3] INFO AbstractRaffleStrategy - 抽奖策略计算-规则树 xiaofuge 100006 104 null -24-12-11.17:02:05.941 [http-nio-8091-exec-3] ERROR AwardRepository - 写入中奖记录,唯一索引冲突 userId: xiaofuge activityId: 100301 awardId: 104 -org.springframework.dao.DuplicateKeyException: -### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -### The error may exist in file [C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes\mybatis\mapper\user_award_record_mapper.xml] -### The error may involve cn.bugstack.infrastructure.persistent.dao.IUserAwardRecordDao.insert-Inline -### The error occurred while setting parameters -### SQL: insert into user_award_record_001( user_id, activity_id, strategy_id, order_id, award_id, award_title, award_time, award_state, create_time, update_time ) values ( ?,?,?,?,?,?,?,?,now(),now() ) -### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -; Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy108.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:62) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy134.insert(Unknown Source) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:80) - at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.saveUserAwardRecord(AwardRepository.java:77) - at cn.bugstack.domain.award.service.AwardService.saveUserAwardRecord(AwardService.java:50) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:130) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) - at com.sun.proxy.$Proxy181.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:197) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:184) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 65 common frames omitted -24-12-11.17:02:05.945 [http-nio-8091-exec-3] ERROR RaffleActivityController - 活动抽奖失败 userId:xiaofuge activityId:100301 -cn.bugstack.types.exception.AppException: null - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:94) - at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.saveUserAwardRecord(AwardRepository.java:77) - at cn.bugstack.domain.award.service.AwardService.saveUserAwardRecord(AwardService.java:50) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:130) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: org.springframework.dao.DuplicateKeyException: -### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -### The error may exist in file [C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes\mybatis\mapper\user_award_record_mapper.xml] -### The error may involve cn.bugstack.infrastructure.persistent.dao.IUserAwardRecordDao.insert-Inline -### The error occurred while setting parameters -### SQL: insert into user_award_record_001( user_id, activity_id, strategy_id, order_id, award_id, award_title, award_time, award_state, create_time, update_time ) values ( ?,?,?,?,?,?,?,?,now(),now() ) -### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -; Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy108.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:62) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy134.insert(Unknown Source) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:80) - ... 58 common frames omitted -Caused by: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) - at com.sun.proxy.$Proxy181.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:197) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:184) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 65 common frames omitted -24-12-11.17:02:07.682 [http-nio-8091-exec-5] INFO RaffleActivityController - 活动抽奖 userId:xiaofuge activityId:100301 -24-12-11.17:02:07.687 [http-nio-8091-exec-5] INFO AbstractRaffleActivityPartake - 创建参与活动订单 userId:xiaofuge activityId:100301 userRaffleOrderEntity:{"activityId":100301,"activityName":"测试活动","orderId":"313091076458","orderState":"create","orderTime":1712308231000,"strategyId":100006,"userId":"xiaofuge"} -24-12-11.17:02:07.687 [http-nio-8091-exec-5] INFO RaffleActivityController - 活动抽奖,创建订单 userId:xiaofuge activityId:100301 orderId:313091076458 -24-12-11.17:02:07.691 [http-nio-8091-exec-5] INFO DefaultLogicChain - 抽奖责任链-默认处理 userId: xiaofuge strategyId: 100006 ruleModel: rule_default awardId: 106 -24-12-11.17:02:07.691 [http-nio-8091-exec-5] INFO AbstractRaffleStrategy - 抽奖策略计算-责任链 xiaofuge 100006 106 rule_default -24-12-11.17:02:07.702 [http-nio-8091-exec-5] INFO RuleLockLogicTreeNode - 规则过滤-次数锁 userId:xiaofuge strategyId:100006 awardId:106 -24-12-11.17:02:07.708 [http-nio-8091-exec-5] INFO DecisionTreeEngine - 决策树引擎【规则树】treeId:tree_lock_1 node:rule_lock code:0001 -24-12-11.17:02:07.708 [http-nio-8091-exec-5] INFO RuleLuckAwardLogicTreeNode - 规则过滤-兜底奖品 userId:xiaofuge strategyId:100006 awardId:106 ruleValue:101:1,100 -24-12-11.17:02:07.708 [http-nio-8091-exec-5] INFO RuleLuckAwardLogicTreeNode - 规则过滤-兜底奖品 userId:xiaofuge strategyId:100006 awardId:101 awardRuleValue:1,100 -24-12-11.17:02:07.708 [http-nio-8091-exec-5] INFO DecisionTreeEngine - 决策树引擎【规则树】treeId:tree_lock_1 node:rule_luck_award code:0001 -24-12-11.17:02:07.708 [http-nio-8091-exec-5] INFO AbstractRaffleStrategy - 抽奖策略计算-规则树 xiaofuge 100006 101 1,100 -24-12-11.17:02:07.718 [http-nio-8091-exec-5] ERROR AwardRepository - 写入中奖记录,唯一索引冲突 userId: xiaofuge activityId: 100301 awardId: 101 -org.springframework.dao.DuplicateKeyException: -### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -### The error may exist in file [C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes\mybatis\mapper\user_award_record_mapper.xml] -### The error may involve cn.bugstack.infrastructure.persistent.dao.IUserAwardRecordDao.insert-Inline -### The error occurred while setting parameters -### SQL: insert into user_award_record_001( user_id, activity_id, strategy_id, order_id, award_id, award_title, award_time, award_state, create_time, update_time ) values ( ?,?,?,?,?,?,?,?,now(),now() ) -### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -; Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy108.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:62) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy134.insert(Unknown Source) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:80) - at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.saveUserAwardRecord(AwardRepository.java:77) - at cn.bugstack.domain.award.service.AwardService.saveUserAwardRecord(AwardService.java:50) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:130) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) - at com.sun.proxy.$Proxy181.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:197) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:184) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 65 common frames omitted -24-12-11.17:02:07.722 [http-nio-8091-exec-5] ERROR RaffleActivityController - 活动抽奖失败 userId:xiaofuge activityId:100301 -cn.bugstack.types.exception.AppException: null - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:94) - at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.saveUserAwardRecord(AwardRepository.java:77) - at cn.bugstack.domain.award.service.AwardService.saveUserAwardRecord(AwardService.java:50) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:130) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: org.springframework.dao.DuplicateKeyException: -### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -### The error may exist in file [C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes\mybatis\mapper\user_award_record_mapper.xml] -### The error may involve cn.bugstack.infrastructure.persistent.dao.IUserAwardRecordDao.insert-Inline -### The error occurred while setting parameters -### SQL: insert into user_award_record_001( user_id, activity_id, strategy_id, order_id, award_id, award_title, award_time, award_state, create_time, update_time ) values ( ?,?,?,?,?,?,?,?,now(),now() ) -### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -; Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy108.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:62) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy134.insert(Unknown Source) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:80) - ... 58 common frames omitted -Caused by: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) - at com.sun.proxy.$Proxy181.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:197) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:184) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 65 common frames omitted -24-12-11.17:02:14.689 [http-nio-8091-exec-7] INFO RaffleActivityController - 活动抽奖 userId:xiaofuge activityId:100301 -24-12-11.17:02:14.694 [http-nio-8091-exec-7] INFO AbstractRaffleActivityPartake - 创建参与活动订单 userId:xiaofuge activityId:100301 userRaffleOrderEntity:{"activityId":100301,"activityName":"测试活动","orderId":"313091076458","orderState":"create","orderTime":1712308231000,"strategyId":100006,"userId":"xiaofuge"} -24-12-11.17:02:14.694 [http-nio-8091-exec-7] INFO RaffleActivityController - 活动抽奖,创建订单 userId:xiaofuge activityId:100301 orderId:313091076458 -24-12-11.17:02:14.698 [http-nio-8091-exec-7] INFO DefaultLogicChain - 抽奖责任链-默认处理 userId: xiaofuge strategyId: 100006 ruleModel: rule_default awardId: 101 -24-12-11.17:02:14.698 [http-nio-8091-exec-7] INFO AbstractRaffleStrategy - 抽奖策略计算-责任链 xiaofuge 100006 101 rule_default -24-12-11.17:02:14.703 [http-nio-8091-exec-7] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减 userId:xiaofuge strategyId:100006 awardId:101 -24-12-11.17:02:14.705 [http-nio-8091-exec-7] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减-成功 userId:xiaofuge strategyId:100006 awardId:101 -24-12-11.17:02:14.706 [http-nio-8091-exec-7] INFO DecisionTreeEngine - 决策树引擎【规则树-兜底奖励】treeId:tree_luck_award node:rule_stock code:0001 -24-12-11.17:02:14.706 [http-nio-8091-exec-7] INFO AbstractRaffleStrategy - 抽奖策略计算-规则树 xiaofuge 100006 101 null -24-12-11.17:02:14.711 [http-nio-8091-exec-7] ERROR AwardRepository - 写入中奖记录,唯一索引冲突 userId: xiaofuge activityId: 100301 awardId: 101 -org.springframework.dao.DuplicateKeyException: -### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -### The error may exist in file [C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes\mybatis\mapper\user_award_record_mapper.xml] -### The error may involve cn.bugstack.infrastructure.persistent.dao.IUserAwardRecordDao.insert-Inline -### The error occurred while setting parameters -### SQL: insert into user_award_record_001( user_id, activity_id, strategy_id, order_id, award_id, award_title, award_time, award_state, create_time, update_time ) values ( ?,?,?,?,?,?,?,?,now(),now() ) -### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -; Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy108.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:62) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy134.insert(Unknown Source) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:80) - at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.saveUserAwardRecord(AwardRepository.java:77) - at cn.bugstack.domain.award.service.AwardService.saveUserAwardRecord(AwardService.java:50) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:130) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) - at com.sun.proxy.$Proxy181.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:197) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:184) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 65 common frames omitted -24-12-11.17:02:14.715 [http-nio-8091-exec-7] ERROR RaffleActivityController - 活动抽奖失败 userId:xiaofuge activityId:100301 -cn.bugstack.types.exception.AppException: null - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:94) - at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.saveUserAwardRecord(AwardRepository.java:77) - at cn.bugstack.domain.award.service.AwardService.saveUserAwardRecord(AwardService.java:50) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:130) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: org.springframework.dao.DuplicateKeyException: -### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -### The error may exist in file [C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes\mybatis\mapper\user_award_record_mapper.xml] -### The error may involve cn.bugstack.infrastructure.persistent.dao.IUserAwardRecordDao.insert-Inline -### The error occurred while setting parameters -### SQL: insert into user_award_record_001( user_id, activity_id, strategy_id, order_id, award_id, award_title, award_time, award_state, create_time, update_time ) values ( ?,?,?,?,?,?,?,?,now(),now() ) -### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' -; Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy108.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:62) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy134.insert(Unknown Source) - at cn.bugstack.infrastructure.persistent.repository.AwardRepository.lambda$saveUserAwardRecord$0(AwardRepository.java:80) - ... 58 common frames omitted -Caused by: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '313091076458' for key 'user_award_record_001.uq_order_id' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) - at com.sun.proxy.$Proxy181.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:197) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:184) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 65 common frames omitted -24-12-11.17:03:00.011 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:03:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存 strategyId:100006 awardId:104 -24-12-11.17:03:00.021 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:04:00.012 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:04:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存 strategyId:100006 awardId:101 -24-12-11.17:04:00.021 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:04:15.907 [http-nio-8091-exec-9] INFO RaffleActivityController - 活动抽奖 userId:zyf activityId:100301 -24-12-11.17:04:15.946 [http-nio-8091-exec-9] INFO RaffleActivityController - 活动抽奖,创建订单 userId:zyf activityId:100301 orderId:215319667932 -24-12-11.17:04:15.950 [http-nio-8091-exec-9] INFO DefaultLogicChain - 抽奖责任链-默认处理 userId: zyf strategyId: 100006 ruleModel: rule_default awardId: 104 -24-12-11.17:04:15.950 [http-nio-8091-exec-9] INFO AbstractRaffleStrategy - 抽奖策略计算-责任链 zyf 100006 104 rule_default -24-12-11.17:04:15.955 [http-nio-8091-exec-9] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减 userId:zyf strategyId:100006 awardId:104 -24-12-11.17:04:15.957 [http-nio-8091-exec-9] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减-成功 userId:zyf strategyId:100006 awardId:104 -24-12-11.17:04:15.959 [http-nio-8091-exec-9] INFO DecisionTreeEngine - 决策树引擎【规则树-兜底奖励】treeId:tree_luck_award node:rule_stock code:0001 -24-12-11.17:04:15.959 [http-nio-8091-exec-9] INFO AbstractRaffleStrategy - 抽奖策略计算-规则树 zyf 100006 104 null -24-12-11.17:04:15.981 [http-nio-8091-exec-9] INFO EventPublisher - 发送MQ消息 topic:send_award message:"{\"data\":{\"awardId\":104,\"awardTitle\":\"5等奖\",\"userId\":\"zyf\"},\"id\":\"40178053600\",\"timestamp\":1733907855960}" -24-12-11.17:04:15.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-1] INFO SendAwardCustomer - 监听用户奖品发送消息 topic: send_award message: "{\"data\":{\"awardId\":104,\"awardTitle\":\"5等奖\",\"userId\":\"zyf\"},\"id\":\"40178053600\",\"timestamp\":1733907855960}" -24-12-11.17:05:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:05:00.015 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:05:00.017 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存 strategyId:100006 awardId:104 -24-12-11.17:06:00.014 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:06:00.016 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.17:06:32.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-11.17:06:32.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-11.17:06:32.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-11.17:06:33.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-11.17:06:34.220 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-11.17:06:34.221 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-11.20:36:35.313 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 22296 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) -24-12-11.20:36:35.315 [main ] INFO Application - The following 1 profile is active: "dev" -24-12-11.20:36:36.529 [main ] INFO RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -24-12-11.20:36:36.531 [main ] INFO RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -24-12-11.20:36:36.649 [main ] INFO RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 102 ms. Found 0 Redis repository interfaces. -24-12-11.20:36:37.564 [main ] INFO TomcatWebServer - Tomcat initialized with port(s): 8091 (http) -24-12-11.20:36:37.575 [main ] INFO Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8091"] -24-12-11.20:36:37.576 [main ] INFO StandardService - Starting service [Tomcat] -24-12-11.20:36:37.576 [main ] INFO StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.75] -24-12-11.20:36:37.768 [main ] INFO [/] - Initializing Spring embedded WebApplicationContext -24-12-11.20:36:37.768 [main ] INFO ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2414 ms -24-12-11.20:36:38.099 [main ] INFO Version - Redisson 3.23.4 -24-12-11.20:36:39.527 [redisson-netty-2-4] INFO MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.20:36:39.539 [redisson-netty-2-13] INFO MasterConnectionPool - 5 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.20:36:41.199 [main ] INFO EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' -24-12-11.20:36:41.312 [main ] INFO Http11NioProtocol - Starting ProtocolHandler ["http-nio-8091"] -24-12-11.20:36:41.327 [main ] INFO TomcatWebServer - Tomcat started on port(s): 8091 (http) with context path '' -24-12-11.20:36:41.329 [main ] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-11.20:36:41.374 [main ] INFO CachingConnectionFactory - Created new connection: rabbitConnectionFactory#1653b84e:0/SimpleConnection@123ca460 [delegate=amqp://admin@127.0.0.1:5672/, localPort= 49262] -24-12-11.20:36:41.445 [main ] INFO Application - Started Application in 6.63 seconds (JVM running for 8.689) -24-12-11.20:36:41.500 [RMI TCP Connection(1)-192.168.157.1] INFO [/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -24-12-11.20:36:41.501 [RMI TCP Connection(1)-192.168.157.1] INFO DispatcherServlet - Initializing Servlet 'dispatcherServlet' -24-12-11.20:36:41.501 [RMI TCP Connection(1)-192.168.157.1] INFO DispatcherServlet - Completed initialization in 0 ms -24-12-11.20:36:43.811 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.20:36:44.022 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.20:36:44.037 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.20:36:44.056 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.20:36:48.487 [http-nio-8091-exec-1] INFO RaffleActivityController - 活动抽奖 userId:zyf activityId:100301 -24-12-11.20:36:48.588 [redisson-netty-2-6] ERROR CommandDecoder - Unable to decode data. channel: [id: 0x1cd788fd, L:/127.0.0.1:49253 - R:127.0.0.1/127.0.0.1:16379], reply: ReplayingDecoderByteBuf(ridx=131, widx=131), command: (GET), promise: java.util.concurrent.CompletableFuture@4eeb96fe[Not completed, 1 dependents], params: [big_market_activity_key_100301] -com.alibaba.fastjson.JSONException: offset 1, character , line 1, column 2, fastjson-version 2.0.28 cn.bugstack.domain.activity.model.entity.ActivityEntit��测试活动�� �测试活动java.util.Dat尯֕�1�����:̚ - at com.alibaba.fastjson.JSON.parseObject(JSON.java:711) - at com.alibaba.fastjson.JSON.parseObject(JSON.java:625) - at cn.bugstack.config.RedisClientConfig$RedisCodec.lambda$new$1(RedisClientConfig.java:70) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:394) - at org.redisson.client.handler.CommandDecoder.decodeCommand(CommandDecoder.java:205) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:144) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:120) - at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:529) - at io.netty.handler.codec.ReplayingDecoder.callDecode(ReplayingDecoder.java:366) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:750) -Caused by: com.alibaba.fastjson2.JSONException: offset 1, character , line 1, column 2, fastjson-version 2.0.28 cn.bugstack.domain.activity.model.entity.ActivityEntit��测试活动�� �测试活动java.util.Dat尯֕�1�����:̚ - at com.alibaba.fastjson2.reader.ObjectReaderImplObject.readObject(ObjectReaderImplObject.java:290) - at com.alibaba.fastjson.JSON.parseObject(JSON.java:701) - ... 25 common frames omitted -24-12-11.20:36:48.596 [redisson-netty-2-6] ERROR ErrorsLoggingHandler - Exception occured. Channel: [id: 0x1cd788fd, L:/127.0.0.1:49253 - R:127.0.0.1/127.0.0.1:16379] -io.netty.handler.codec.DecoderException: com.alibaba.fastjson.JSONException: offset 1, character , line 1, column 2, fastjson-version 2.0.28 cn.bugstack.domain.activity.model.entity.ActivityEntit��测试活动�� �测试活动java.util.Dat尯֕�1�����:̚ - at io.netty.handler.codec.ReplayingDecoder.callDecode(ReplayingDecoder.java:421) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:750) -Caused by: com.alibaba.fastjson.JSONException: offset 1, character , line 1, column 2, fastjson-version 2.0.28 cn.bugstack.domain.activity.model.entity.ActivityEntit��测试活动�� �测试活动java.util.Dat尯֕�1�����:̚ - at com.alibaba.fastjson.JSON.parseObject(JSON.java:711) - at com.alibaba.fastjson.JSON.parseObject(JSON.java:625) - at cn.bugstack.config.RedisClientConfig$RedisCodec.lambda$new$1(RedisClientConfig.java:70) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:394) - at org.redisson.client.handler.CommandDecoder.decodeCommand(CommandDecoder.java:205) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:144) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:120) - at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:529) - at io.netty.handler.codec.ReplayingDecoder.callDecode(ReplayingDecoder.java:366) - ... 17 common frames omitted -Caused by: com.alibaba.fastjson2.JSONException: offset 1, character , line 1, column 2, fastjson-version 2.0.28 cn.bugstack.domain.activity.model.entity.ActivityEntit��测试活动�� �测试活动java.util.Dat尯֕�1�����:̚ - at com.alibaba.fastjson2.reader.ObjectReaderImplObject.readObject(ObjectReaderImplObject.java:290) - at com.alibaba.fastjson.JSON.parseObject(JSON.java:701) - ... 25 common frames omitted -24-12-11.20:36:48.599 [http-nio-8091-exec-1] ERROR RaffleActivityController - 活动抽奖失败 userId:zyf activityId:100301 -org.springframework.dao.InvalidDataAccessApiUsageException: Unexpected exception while processing command; nested exception is org.redisson.client.RedisException: Unexpected exception while processing command - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:52) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$59c64388.queryRaffleActivityByActivityId() - at cn.bugstack.domain.activity.service.partake.AbstractRaffleActivityPartake.createOrder(AbstractRaffleActivityPartake.java:47) - at cn.bugstack.domain.activity.service.partake.AbstractRaffleActivityPartake.createOrder(AbstractRaffleActivityPartake.java:34) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -Caused by: org.redisson.client.RedisException: Unexpected exception while processing command - at org.redisson.command.CommandAsyncService.convertException(CommandAsyncService.java:299) - at org.redisson.command.CommandAsyncService.get(CommandAsyncService.java:116) - at org.redisson.RedissonObject.get(RedissonObject.java:90) - at org.redisson.RedissonBucket.get(RedissonBucket.java:135) - at cn.bugstack.infrastructure.persistent.redis.RedissonService.getValue(RedissonService.java:33) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository.queryRaffleActivityByActivityId(ActivityRepository.java:89) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$FastClassBySpringCGLIB$$5fc4459a.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - ... 61 common frames omitted -Caused by: com.alibaba.fastjson.JSONException: offset 1, character , line 1, column 2, fastjson-version 2.0.28 cn.bugstack.domain.activity.model.entity.ActivityEntit��测试活动�� �测试活动java.util.Dat尯֕�1�����:̚ - at com.alibaba.fastjson.JSON.parseObject(JSON.java:711) - at com.alibaba.fastjson.JSON.parseObject(JSON.java:625) - at cn.bugstack.config.RedisClientConfig$RedisCodec.lambda$new$1(RedisClientConfig.java:70) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:394) - at org.redisson.client.handler.CommandDecoder.decodeCommand(CommandDecoder.java:205) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:144) - at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:120) - at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:529) - at io.netty.handler.codec.ReplayingDecoder.callDecode(ReplayingDecoder.java:366) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: com.alibaba.fastjson2.JSONException: offset 1, character , line 1, column 2, fastjson-version 2.0.28 cn.bugstack.domain.activity.model.entity.ActivityEntit��测试活动�� �测试活动java.util.Dat尯֕�1�����:̚ - at com.alibaba.fastjson2.reader.ObjectReaderImplObject.readObject(ObjectReaderImplObject.java:290) - at com.alibaba.fastjson.JSON.parseObject(JSON.java:701) - ... 25 common frames omitted -24-12-11.20:37:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.20:37:00.017 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.20:37:57.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-11.20:37:57.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-11.20:37:58.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-11.20:37:58.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-11.20:37:59.149 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-11.20:37:59.150 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-11.20:38:09.521 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 11380 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) -24-12-11.20:38:09.523 [main ] INFO Application - The following 1 profile is active: "dev" -24-12-11.20:38:10.651 [main ] INFO RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -24-12-11.20:38:10.653 [main ] INFO RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -24-12-11.20:38:10.762 [main ] INFO RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 98 ms. Found 0 Redis repository interfaces. -24-12-11.20:38:11.553 [main ] INFO TomcatWebServer - Tomcat initialized with port(s): 8091 (http) -24-12-11.20:38:11.563 [main ] INFO Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8091"] -24-12-11.20:38:11.563 [main ] INFO StandardService - Starting service [Tomcat] -24-12-11.20:38:11.563 [main ] INFO StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.75] -24-12-11.20:38:11.743 [main ] INFO [/] - Initializing Spring embedded WebApplicationContext -24-12-11.20:38:11.744 [main ] INFO ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2184 ms -24-12-11.20:38:12.025 [main ] INFO Version - Redisson 3.23.4 -24-12-11.20:38:13.392 [redisson-netty-2-4] INFO MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.20:38:13.404 [redisson-netty-2-13] INFO MasterConnectionPool - 5 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-11.20:38:14.830 [main ] INFO EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' -24-12-11.20:38:14.939 [main ] INFO Http11NioProtocol - Starting ProtocolHandler ["http-nio-8091"] -24-12-11.20:38:14.952 [main ] INFO TomcatWebServer - Tomcat started on port(s): 8091 (http) with context path '' -24-12-11.20:38:14.954 [main ] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-11.20:38:14.981 [main ] INFO CachingConnectionFactory - Created new connection: rabbitConnectionFactory#4a642e4b:0/SimpleConnection@7a1ddbf1 [delegate=amqp://admin@127.0.0.1:5672/, localPort= 49566] -24-12-11.20:38:15.041 [main ] INFO Application - Started Application in 6.003 seconds (JVM running for 8.184) -24-12-11.20:38:17.695 [RMI TCP Connection(3)-192.168.157.1] INFO [/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -24-12-11.20:38:17.695 [RMI TCP Connection(3)-192.168.157.1] INFO DispatcherServlet - Initializing Servlet 'dispatcherServlet' -24-12-11.20:38:17.696 [RMI TCP Connection(3)-192.168.157.1] INFO DispatcherServlet - Completed initialization in 1 ms -24-12-11.20:38:17.703 [RMI TCP Connection(2)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.20:38:17.917 [RMI TCP Connection(2)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.20:38:17.933 [RMI TCP Connection(2)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.20:38:17.953 [RMI TCP Connection(2)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.20:38:19.387 [http-nio-8091-exec-1] INFO RaffleActivityController - 活动抽奖 userId:zyf activityId:100301 -24-12-11.20:38:19.498 [http-nio-8091-exec-1] ERROR RaffleActivityController - 活动抽奖失败 userId:zyf activityId:100301 -cn.bugstack.types.exception.AppException: null - at cn.bugstack.domain.activity.service.partake.RaffleActivityPartakeService.doFilterAccount(RaffleActivityPartakeService.java:37) - at cn.bugstack.domain.activity.service.partake.AbstractRaffleActivityPartake.createOrder(AbstractRaffleActivityPartake.java:66) - at cn.bugstack.domain.activity.service.partake.AbstractRaffleActivityPartake.createOrder(AbstractRaffleActivityPartake.java:34) - at cn.bugstack.trigger.http.RaffleActivityController.draw(RaffleActivityController.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:555) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:750) -24-12-11.20:39:00.011 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.20:39:00.016 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-11.20:39:41.420 [http-nio-8091-exec-2] INFO RaffleActivityController - 活动抽奖 userId:zyf activityId:100301 -24-12-11.20:39:41.461 [http-nio-8091-exec-2] INFO RaffleActivityController - 活动抽奖,创建订单 userId:zyf activityId:100301 orderId:826777463429 -24-12-11.20:39:41.477 [http-nio-8091-exec-2] INFO DefaultLogicChain - 抽奖责任链-默认处理 userId: zyf strategyId: 100006 ruleModel: rule_default awardId: 105 -24-12-11.20:39:41.478 [http-nio-8091-exec-2] INFO AbstractRaffleStrategy - 抽奖策略计算-责任链 zyf 100006 105 rule_default -24-12-11.20:39:41.478 [http-nio-8091-exec-2] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-11.20:39:41.495 [http-nio-8091-exec-2] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-11.20:39:41.506 [http-nio-8091-exec-2] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减 userId:zyf strategyId:100006 awardId:105 -24-12-11.20:39:41.509 [http-nio-8091-exec-2] INFO RuleStockLogicTreeNode - 规则过滤-库存扣减-成功 userId:zyf strategyId:100006 awardId:105 -24-12-11.20:39:41.532 [http-nio-8091-exec-2] INFO DecisionTreeEngine - 决策树引擎【规则树-兜底奖励】treeId:tree_luck_award node:rule_stock code:0001 -24-12-11.20:39:41.533 [http-nio-8091-exec-2] INFO AbstractRaffleStrategy - 抽奖策略计算-规则树 zyf 100006 105 null -24-12-11.20:39:41.662 [http-nio-8091-exec-2] INFO EventPublisher - 发送MQ消息 topic:send_award message:"{\"data\":{\"awardId\":105,\"awardTitle\":\"4等奖\",\"userId\":\"zyf\"},\"id\":\"54023653092\",\"timestamp\":1733920781544}" -24-12-11.20:39:41.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-1] INFO SendAwardCustomer - 监听用户奖品发送消息 topic: send_award message: "{\"data\":{\"awardId\":105,\"awardTitle\":\"4等奖\",\"userId\":\"zyf\"},\"id\":\"54023653092\",\"timestamp\":1733920781544}" -24-12-11.20:39:46.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-11.20:39:46.313 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-11.20:39:46.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-11.20:39:46.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-11.20:39:47.957 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-11.20:39:47.957 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped diff --git a/data/log/log_error.log b/data/log/log_error.log index af6cfd0..0b1da48 100644 --- a/data/log/log_error.log +++ b/data/log/log_error.log @@ -1,15520 +1,64 @@ -24-12-26.21:57:55.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpIOException: java.io.IOException - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:70) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:603) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:725) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createBareChannel(CachingConnectionFactory.java:676) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.getCachedChannelProxy(CachingConnectionFactory.java:650) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.getChannel(CachingConnectionFactory.java:540) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.access$1600(CachingConnectionFactory.java:100) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory$ChannelCachingConnectionProxy.createChannel(CachingConnectionFactory.java:1418) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2216) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2183) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2163) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:463) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:447) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1942) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1915) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1384) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1230) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.io.IOException: null - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:129) - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:125) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:396) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1225) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1173) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:641) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:616) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:566) - ... 16 common frames omitted -Caused by: com.rabbitmq.client.ShutdownSignalException: connection error - at com.rabbitmq.utility.ValueOrException.getValue(ValueOrException.java:66) - at com.rabbitmq.utility.BlockingValueOrException.uninterruptibleGetValue(BlockingValueOrException.java:36) - at com.rabbitmq.client.impl.AMQChannel$BlockingRpcContinuation.getReply(AMQChannel.java:502) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:326) - ... 21 common frames omitted -Caused by: java.io.EOFException: null - at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:290) - at com.rabbitmq.client.impl.Frame.readFrom(Frame.java:91) - at com.rabbitmq.client.impl.SocketFrameHandler.readFrame(SocketFrameHandler.java:184) - at com.rabbitmq.client.impl.AMQConnection$MainLoop.run(AMQConnection.java:665) - ... 1 common frames omitted -24-12-26.21:57:55.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpIOException: java.io.IOException - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:70) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:603) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:725) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:252) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2210) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2183) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2163) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:463) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:447) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1942) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1915) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1384) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1230) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.io.IOException: null - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:129) - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:125) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:396) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1225) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1173) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:641) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:616) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:566) - ... 12 common frames omitted -Caused by: com.rabbitmq.client.ShutdownSignalException: connection error - at com.rabbitmq.utility.ValueOrException.getValue(ValueOrException.java:66) - at com.rabbitmq.utility.BlockingValueOrException.uninterruptibleGetValue(BlockingValueOrException.java:36) - at com.rabbitmq.client.impl.AMQChannel$BlockingRpcContinuation.getReply(AMQChannel.java:502) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:326) - ... 17 common frames omitted -Caused by: java.io.EOFException: null - at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:290) - at com.rabbitmq.client.impl.Frame.readFrom(Frame.java:91) - at com.rabbitmq.client.impl.SocketFrameHandler.readFrame(SocketFrameHandler.java:184) - at com.rabbitmq.client.impl.AMQConnection$MainLoop.run(AMQConnection.java:665) - ... 1 common frames omitted -24-12-26.21:57:56.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpIOException: java.io.IOException - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:70) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:603) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:725) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:252) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2210) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2183) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2163) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:463) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:447) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1942) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1915) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1384) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1230) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.io.IOException: null - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:129) - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:125) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:396) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1225) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1173) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:641) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:616) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:566) - ... 12 common frames omitted -Caused by: com.rabbitmq.client.ShutdownSignalException: connection error - at com.rabbitmq.utility.ValueOrException.getValue(ValueOrException.java:66) - at com.rabbitmq.utility.BlockingValueOrException.uninterruptibleGetValue(BlockingValueOrException.java:36) - at com.rabbitmq.client.impl.AMQChannel$BlockingRpcContinuation.getReply(AMQChannel.java:502) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:326) - ... 17 common frames omitted -Caused by: java.io.EOFException: null - at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:290) - at com.rabbitmq.client.impl.Frame.readFrom(Frame.java:91) - at com.rabbitmq.client.impl.SocketFrameHandler.readFrame(SocketFrameHandler.java:184) - at com.rabbitmq.client.impl.AMQConnection$MainLoop.run(AMQConnection.java:665) - ... 1 common frames omitted -24-12-26.21:58:01.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:01.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-3] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:01.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-3] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.21:58:06.603 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.21:58:06.610 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@63b34712 (Communications link failure - -The last packet successfully received from the server was 66,595 milliseconds ago. The last packet sent successfully to the server was 66,597 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.610 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3a1ac79f (Communications link failure - -The last packet successfully received from the server was 66,595 milliseconds ago. The last packet sent successfully to the server was 66,597 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.611 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@592a429 (Communications link failure - -The last packet successfully received from the server was 576,234 milliseconds ago. The last packet sent successfully to the server was 576,234 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.612 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@41416e45 (Communications link failure - -The last packet successfully received from the server was 579,234 milliseconds ago. The last packet sent successfully to the server was 579,234 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.612 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@67dc3ec0 (Communications link failure - -The last packet successfully received from the server was 575,620 milliseconds ago. The last packet sent successfully to the server was 575,621 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.612 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@38332aa8 (Communications link failure - -The last packet successfully received from the server was 574,056 milliseconds ago. The last packet sent successfully to the server was 574,057 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.613 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@b163b9b (Communications link failure - -The last packet successfully received from the server was 574,799 milliseconds ago. The last packet sent successfully to the server was 574,800 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.613 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@510113c (Communications link failure - -The last packet successfully received from the server was 572,683 milliseconds ago. The last packet sent successfully to the server was 572,684 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.613 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2bfd16ee (Communications link failure - -The last packet successfully received from the server was 569,997 milliseconds ago. The last packet sent successfully to the server was 569,998 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.613 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@62c126d3 (Communications link failure - -The last packet successfully received from the server was 571,637 milliseconds ago. The last packet sent successfully to the server was 571,637 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.614 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@61046692 (Communications link failure - -The last packet successfully received from the server was 569,903 milliseconds ago. The last packet sent successfully to the server was 569,904 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.614 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@72e2654e (Communications link failure - -The last packet successfully received from the server was 568,124 milliseconds ago. The last packet sent successfully to the server was 568,125 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.614 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@40c37670 (Communications link failure - -The last packet successfully received from the server was 568,485 milliseconds ago. The last packet sent successfully to the server was 568,485 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.614 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@74ce7fec (Communications link failure - -The last packet successfully received from the server was 567,035 milliseconds ago. The last packet sent successfully to the server was 567,036 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.615 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4ebe580d (Communications link failure - -The last packet successfully received from the server was 564,149 milliseconds ago. The last packet sent successfully to the server was 564,149 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.615 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@455f16a5 (Communications link failure - -The last packet successfully received from the server was 564,830 milliseconds ago. The last packet sent successfully to the server was 564,831 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.616 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@440bd158 (Communications link failure - -The last packet successfully received from the server was 562,918 milliseconds ago. The last packet sent successfully to the server was 562,919 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.616 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4424e438 (Communications link failure - -The last packet successfully received from the server was 562,650 milliseconds ago. The last packet sent successfully to the server was 562,651 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.619 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@433df72a (Communications link failure - -The last packet successfully received from the server was 561,420 milliseconds ago. The last packet sent successfully to the server was 561,421 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.619 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1f0f6a3a (Communications link failure - -The last packet successfully received from the server was 559,969 milliseconds ago. The last packet sent successfully to the server was 559,969 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.621 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7f7fb170 (Communications link failure - -The last packet successfully received from the server was 555,445 milliseconds ago. The last packet sent successfully to the server was 555,445 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.621 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2258bd40 (Communications link failure - -The last packet successfully received from the server was 546,731 milliseconds ago. The last packet sent successfully to the server was 546,731 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.623 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4aade998 (Communications link failure - -The last packet successfully received from the server was 553,179 milliseconds ago. The last packet sent successfully to the server was 553,179 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.623 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@152de98f (Communications link failure - -The last packet successfully received from the server was 546,562 milliseconds ago. The last packet sent successfully to the server was 546,562 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.625 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@764bda36 (Communications link failure - -The last packet successfully received from the server was 545,128 milliseconds ago. The last packet sent successfully to the server was 545,129 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.625 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@50367084 (Communications link failure - -The last packet successfully received from the server was 547,984 milliseconds ago. The last packet sent successfully to the server was 547,985 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.626 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1271207f (Communications link failure - -The last packet successfully received from the server was 540,642 milliseconds ago. The last packet sent successfully to the server was 540,643 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.626 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7c1e590f (Communications link failure - -The last packet successfully received from the server was 544,469 milliseconds ago. The last packet sent successfully to the server was 544,470 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.628 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@75a43dcc (Communications link failure - -The last packet successfully received from the server was 539,149 milliseconds ago. The last packet sent successfully to the server was 539,149 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.628 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7e6883cd (Communications link failure - -The last packet successfully received from the server was 543,366 milliseconds ago. The last packet sent successfully to the server was 543,367 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:08.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:10.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-4] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:12.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-4] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:19.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-4] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:21.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:21.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-5] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:23.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-4] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:23.448 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:25.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-5] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:32.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-5] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:34.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-5] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:34.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-6] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:36.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:36.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-6] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:40.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:43.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-6] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:46.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-7] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:47.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-6] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:49.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:50.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-7] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:52.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:53.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-7] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:56.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-8] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:00.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-7] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:03.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-8] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.21:59:04.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:06.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-8] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.21:59:07.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:09.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-9] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:10.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-8] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:13.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-9] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:16.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:19.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:20.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-9] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:22.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-9] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:23.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-10] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:25.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-10] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:26.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:29.445 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:32.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-10] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:35.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-11] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:36.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-10] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:38.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:39.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-11] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:41.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:42.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-11] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:45.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-12] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:48.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-11] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:51.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-12] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:52.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:54.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-12] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:55.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:57.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-13] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:58.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-12] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:01.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-13] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:00:05.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:00:08.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:09.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-13] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:11.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-13] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:12.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-14] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:14.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-14] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:15.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:18.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:21.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-14] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:24.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-15] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:25.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-14] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:27.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:28.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-15] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:30.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:31.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-15] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:34.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-16] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:37.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-15] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:40.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-16] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:41.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:43.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-16] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:44.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:46.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-17] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:47.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-16] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:50.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-17] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:53.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:56.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:57.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-17] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:59.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-17] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:00.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-18] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:02.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-18] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:03.298 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:01:04.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:01:07.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:10.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-18] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:13.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-19] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:14.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-18] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:16.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:17.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-19] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:19.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:20.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-19] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:23.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-20] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:26.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-19] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:29.403 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-20] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:30.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:32.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-20] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:33.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:35.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-21] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:36.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-20] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:39.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-21] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:42.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:45.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:46.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-21] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:48.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-21] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:49.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-22] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:51.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-22] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:52.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:55.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:58.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-22] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:01.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-23] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:02.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-22] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:03.299 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:02:04.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:05.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-23] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:02:08.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:09.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-23] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:12.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-24] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:15.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-23] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:18.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-24] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:19.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:21.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-24] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:22.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:24.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-25] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:25.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-24] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:28.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-25] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:31.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:34.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:35.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-25] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:37.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-25] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:38.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-26] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:40.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-26] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:41.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:44.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:47.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-26] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:50.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-27] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:51.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-26] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:53.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:54.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-27] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:56.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:57.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-27] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:00.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-28] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:03.292 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:03:03.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-27] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:03:06.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-28] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:08.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:10.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-28] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:11.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:13.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-29] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:14.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-28] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:17.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-29] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:20.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:23.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:24.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-29] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:26.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-29] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:27.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-30] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:29.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-30] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:30.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:33.443 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:36.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-30] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:39.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-31] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:40.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-30] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:42.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:43.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-31] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:45.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:46.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-31] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:49.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-32] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:52.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-31] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:55.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-32] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:56.932 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:58.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-32] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:59.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:01.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-33] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:02.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-32] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:04:05.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-33] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:04:09.089 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:12.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:13.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-33] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:15.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-33] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:16.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-34] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:18.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-34] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:19.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:22.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:25.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-34] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:28.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-35] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:29.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-34] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:31.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:32.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-35] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:34.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:35.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-35] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:38.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-36] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:41.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-35] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:44.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-36] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:45.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:47.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-36] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:48.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:50.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-37] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:51.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-36] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:54.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-37] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:57.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:00.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:01.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-37] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:03.295 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:05:03.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-37] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:04.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-38] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:05:06.934 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-38] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:07.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:10.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:14.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-38] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:17.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-39] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:18.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-38] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:20.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:21.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-39] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:23.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:24.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-39] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:27.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-40] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:30.306 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-39] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:33.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-40] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:34.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:36.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-40] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:37.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:39.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-41] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:40.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-40] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:43.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-41] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:46.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:49.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:50.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-41] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:52.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-41] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:53.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-42] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:55.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-42] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:56.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:59.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:02.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-42] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:03.292 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:06:05.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-43] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:06:06.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-42] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:08.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:09.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-43] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:11.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:12.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-43] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:15.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-44] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:19.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-43] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:22.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-44] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:23.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:25.118 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-44] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:26.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:28.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-45] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:29.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-44] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:32.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-45] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:35.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:38.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:39.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-45] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:41.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-45] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:42.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-46] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:44.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-46] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:45.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:48.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:51.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-46] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:54.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-47] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:55.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-46] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:57.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:58.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-47] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:00.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:01.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-47] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:07:04.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-48] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:06.601 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:07:07.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-47] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:10.719 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-48] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:11.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:13.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-48] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:14.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:16.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-49] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:17.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-48] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:20.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-49] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:23.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:26.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:28.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-49] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:30.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-49] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:31.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-50] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:33.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-50] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:34.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:37.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:40.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-50] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:43.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-51] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:44.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-50] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:46.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:47.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-51] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:49.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:50.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-51] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:53.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-52] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:56.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-51] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:59.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-52] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:00.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:02.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-52] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:08:03.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:05.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-53] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:06.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-52] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:06.604 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:08:09.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-53] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:12.655 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:15.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:16.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-53] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:18.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-53] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:19.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-54] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:21.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-54] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:22.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:25.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:28.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-54] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:31.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-55] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:32.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-54] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:34.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:35.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-55] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:38.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:39.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-55] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:42.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-56] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:45.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-55] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:48.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-56] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:49.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:51.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-56] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:52.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:54.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-57] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:55.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-56] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:58.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-57] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:01.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:03.296 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:09:04.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:05.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-57] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:09:07.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-57] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:08.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-58] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:10.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-58] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:11.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:14.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:17.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-58] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:20.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-59] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:21.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-58] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:23.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:24.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-59] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:26.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:27.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-59] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:30.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-60] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:33.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-59] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:36.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-60] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:37.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:39.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-60] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:40.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:42.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-61] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:44.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-60] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:47.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-61] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:50.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:53.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:54.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-61] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:56.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-61] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:57.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-62] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:59.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-62] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:00.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:10:03.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:06.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-62] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:10:09.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-63] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:10.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-62] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:12.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:13.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-63] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:15.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:16.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-63] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:19.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-64] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:22.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-63] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:25.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-64] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:26.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:28.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-64] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:29.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:31.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-65] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:32.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-64] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:35.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-65] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:38.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:41.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:42.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-65] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:44.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-65] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:45.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-66] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:48.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-66] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:49.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:52.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:55.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-66] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:58.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-67] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:59.206 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-66] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:01.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:02.244 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-67] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:03.306 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:11:04.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:05.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-67] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:11:08.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-68] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:11.424 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-67] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:14.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-68] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:15.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:17.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-68] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:18.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:20.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-69] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:21.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-68] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:24.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-69] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:27.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:30.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:31.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-69] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:33.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-69] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:34.776 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-70] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:36.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-70] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:37.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:40.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:43.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-70] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:46.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-71] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:48.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-70] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:50.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:51.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-71] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:53.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:54.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-71] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:57.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-72] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:00.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-71] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:03.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-72] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:12:04.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:06.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-72] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:12:07.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:09.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-73] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:10.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-72] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:13.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-73] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:16.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:19.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:20.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-73] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:22.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-73] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:23.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-74] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:25.547 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-74] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:26.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:29.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:32.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-74] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:35.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-75] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:36.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-74] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:38.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:39.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-75] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:41.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:42.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-75] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:45.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-76] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:48.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-75] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:51.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-76] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:53.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:55.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-76] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:55.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:58.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-77] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:59.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-76] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:02.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-77] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:13:05.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:06.600 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:13:08.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:09.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-77] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:11.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-77] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:12.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-78] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:14.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-78] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:15.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:18.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:21.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-78] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:24.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-79] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:25.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-78] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:27.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:28.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-79] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:30.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:31.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-79] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:34.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-80] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:37.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-79] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:40.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-80] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:41.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:43.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-80] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:44.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:46.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-81] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:47.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-80] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:50.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-81] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:53.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:56.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:57.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-81] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:59.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-81] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:00.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-82] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:03.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-82] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:03.297 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:14:04.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:06.599 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:14:07.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:10.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-82] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:13.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-83] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:14.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-82] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:16.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:17.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-83] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:19.244 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:20.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-83] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:23.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-84] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:26.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-83] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:29.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-84] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:30.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:32.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-84] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:33.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:35.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-85] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:36.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-84] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:39.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-85] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:42.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:45.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:46.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-85] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:48.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-85] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:49.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-86] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:51.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-86] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:52.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:55.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:58.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-86] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:01.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-87] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:02.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-86] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:03.302 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:15:04.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:05.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-87] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:15:07.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:08.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-87] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:11.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-88] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:15.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-87] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:18.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-88] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:19.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:21.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-88] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:22.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:24.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-89] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:25.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-88] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:28.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-89] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:31.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:34.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:35.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-89] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:37.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-89] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:38.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-90] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:40.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-90] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:41.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:44.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:47.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-90] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:50.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-91] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:51.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-90] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:53.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:54.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-91] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:56.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:57.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-91] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:00.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-92] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:16:03.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-91] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:16:06.796 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-92] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:07.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:09.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-92] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:10.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:12.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-93] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:13.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-92] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:16.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-93] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:20.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:23.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:24.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-93] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:26.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-93] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:27.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-94] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:29.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-94] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:30.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:33.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:36.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-94] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:39.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-95] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:40.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-94] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:42.423 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:43.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-95] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:45.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:46.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-95] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:49.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-96] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:52.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-95] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:55.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-96] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:56.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:58.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-96] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:59.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:01.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-97] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:02.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-96] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:17:05.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-97] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:17:08.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:11.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:12.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-97] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:14.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-97] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:15.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-98] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:17.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-98] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:18.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:21.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:25.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-98] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:28.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-99] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:29.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-98] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:31.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:32.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-99] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:34.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:35.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-99] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:38.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-100] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:41.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-99] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:44.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-100] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:45.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:47.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-100] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:48.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:50.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-101] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:51.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-100] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:54.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-101] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:57.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:00.574 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:01.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-101] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:18:03.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-101] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:04.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-102] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:18:06.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-102] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:07.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:10.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:13.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-102] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:16.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-103] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:17.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-102] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:19.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:20.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-103] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:22.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:24.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-103] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:26.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-104] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:30.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-103] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:33.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-104] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:34.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:36.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-104] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:37.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:39.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-105] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:40.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-104] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:43.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-105] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:46.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:49.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:50.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-105] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:52.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-105] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:53.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-106] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:55.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-106] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:56.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:59.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:02.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-106] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:19:05.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-107] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:06.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-106] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:19:08.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:09.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-107] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:11.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:12.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-107] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:15.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-108] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:18.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-107] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:21.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-108] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:22.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:24.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-108] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:25.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:27.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-109] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:28.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-108] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:31.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-109] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:35.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:38.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:39.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-109] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:41.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-109] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:42.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-110] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:44.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-110] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:45.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:48.246 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:51.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-110] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:54.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-111] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:55.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-110] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:57.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:58.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-111] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:00.448 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:01.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-111] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:20:04.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-112] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:06.596 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:20:07.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-111] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:10.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-112] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:11.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:13.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-112] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:14.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:16.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-113] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:17.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-112] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:20.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-113] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:23.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:26.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:27.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-113] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:29.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-113] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:30.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-114] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:32.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-114] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:34.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:37.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:40.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-114] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:43.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-115] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:44.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-114] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:46.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:47.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-115] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:49.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:50.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-115] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:53.271 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-116] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:56.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-115] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:59.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-116] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:00.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:02.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-116] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:21:03.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:05.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-117] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:06.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-116] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:21:09.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-117] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:12.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:15.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:16.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-117] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:18.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-117] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:19.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-118] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:21.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-118] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:22.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:25.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:28.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-118] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:31.878 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-119] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:32.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-118] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:34.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:35.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-119] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:37.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:39.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-119] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:42.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-120] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:45.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-119] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:48.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-120] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:49.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:51.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-120] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:52.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:54.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-121] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:55.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-120] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:58.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-121] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:01.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:22:04.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:05.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-121] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:06.606 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:22:07.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-121] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:08.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-122] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:10.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-122] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:11.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:14.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:17.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-122] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:20.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-123] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:21.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-122] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:23.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:24.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-123] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:26.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:27.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-123] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:31.029 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-124] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:34.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-123] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:37.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-124] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:38.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:40.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-124] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:41.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:43.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-125] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:44.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-124] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:47.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-125] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:50.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:53.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:54.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-125] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:56.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-125] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:57.423 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-126] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:59.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-126] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:00.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:03.301 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:23:03.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:23:06.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-126] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:09.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-127] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:10.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-126] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:12.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:13.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-127] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:15.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:16.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-127] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:19.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-128] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:22.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-127] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:25.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-128] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:26.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:28.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-128] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:29.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:31.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-129] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:33.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-128] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:36.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-129] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:39.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:42.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:43.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-129] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:45.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-129] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:46.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-130] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:48.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-130] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:49.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:52.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:55.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-130] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:58.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-131] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:59.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-130] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:01.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:02.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-131] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:24:04.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:05.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-131] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:06.602 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:24:08.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-132] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:11.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-131] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:14.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-132] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:15.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:17.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-132] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:18.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:20.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-133] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:21.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-132] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:24.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-133] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:27.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:30.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:31.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-133] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:34.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-133] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:34.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-134] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:37.012 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-134] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:38.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:41.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:44.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-134] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:47.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-135] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:48.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-134] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:50.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:51.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-135] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:53.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:54.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-135] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:57.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-136] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:00.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-135] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:25:03.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-136] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:04.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:06.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-136] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:25:07.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:09.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-137] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:10.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-136] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:13.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-137] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:16.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:19.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:20.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-137] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:22.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-137] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:23.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-138] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:25.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-138] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:26.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:29.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:32.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-138] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:35.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-139] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:36.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-138] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:38.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:39.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-139] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:41.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:42.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-139] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:45.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-140] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:49.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-139] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:52.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-140] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:53.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:55.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-140] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:56.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:58.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-141] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:59.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-140] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:02.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-141] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:03.292 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:26:05.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:26:08.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:09.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-141] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:11.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-141] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:12.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-142] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:14.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-142] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:15.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:18.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:21.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-142] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:24.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-143] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:25.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-142] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:27.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:28.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-143] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:30.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:31.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-143] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:34.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-144] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:37.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-143] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:40.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-144] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:41.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:43.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-144] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:44.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:46.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-145] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:47.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-144] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:50.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-145] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:54.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:56.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:58.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-145] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:00.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-145] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:01.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-146] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:03.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-146] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:27:04.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:06.600 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:27:07.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:10.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-146] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:13.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-147] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:14.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-146] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:16.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:17.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-147] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:19.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:20.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-147] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:23.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-148] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:26.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-147] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:29.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-148] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:30.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:32.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-148] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:33.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:35.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-149] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:36.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-148] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:39.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-149] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:42.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:45.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:46.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-149] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:48.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-149] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:49.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-150] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:51.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-150] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:52.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:55.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:59.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-150] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:02.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-151] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:03.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-150] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:28:05.116 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:06.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-151] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:28:09.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-151] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:10.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:12.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-152] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:13.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-151] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:16.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-152] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:19.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:22.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:23.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-152] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:25.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-152] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:26.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-153] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:28.431 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-153] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:29.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:32.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:35.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-153] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:38.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-154] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:39.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:41.646 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-153] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:42.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:44.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-154] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:45.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-154] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:48.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-155] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:51.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:54.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:55.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-154] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:57.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-155] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:58.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-155] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:00.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-156] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:01.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:03.295 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:29:04.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:29:08.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-155] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:11.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-156] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:12.107 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-156] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:14.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:15.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-157] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:17.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:18.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-156] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:21.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-157] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:24.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-157] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:27.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-158] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:28.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:30.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-157] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:31.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:33.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-158] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:34.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-158] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:37.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-159] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:40.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:43.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:44.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-158] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:46.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-159] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:47.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-159] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:49.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-160] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:50.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:53.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:56.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-159] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:59.776 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-160] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:00.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-160] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:02.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:03.292 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:30:03.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-161] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:05.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:06.592 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:30:06.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-160] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:09.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-161] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:13.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-161] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:16.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-162] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:17.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:19.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-161] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:20.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:22.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-162] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:23.255 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-162] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:26.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-163] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:29.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:32.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:33.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-162] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:35.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-163] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:36.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-163] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:38.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-164] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:39.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:42.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:45.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-163] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:48.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-164] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:49.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-164] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:51.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:52.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-165] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:54.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-164] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:58.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-165] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:01.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-165] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:03.305 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:31:04.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-166] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:05.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:31:07.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-165] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:08.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:11.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-166] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:12.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-166] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:15.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-167] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:18.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:21.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:22.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-166] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:24.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-167] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:25.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-167] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:27.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-168] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:28.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:31.374 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:34.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-167] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:37.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-168] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:38.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-168] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:40.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:41.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-169] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:43.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:44.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-168] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:47.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-169] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:50.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-169] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:53.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-170] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:54.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:56.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-169] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:57.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:59.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-170] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:00.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-170] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:32:03.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-171] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:32:07.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:10.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:11.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-170] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:13.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-171] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:14.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-171] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:16.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-172] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:17.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:20.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:23.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-171] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:26.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-172] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:27.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-172] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:29.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:30.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-173] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:32.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:33.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-172] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:36.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-173] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:39.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-173] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:42.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-174] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:43.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:45.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-173] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:46.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:48.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-174] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:49.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-174] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:52.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-175] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:55.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:58.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:59.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-174] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:01.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-175] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:02.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-175] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:33:04.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-176] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:06.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:33:09.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:12.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-175] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:15.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-176] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:16.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-176] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:18.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:19.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-177] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:21.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:22.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-176] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:25.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-177] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:28.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-177] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:31.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-178] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:32.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:34.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-177] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:35.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:37.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-178] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:38.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-178] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:41.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-179] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:44.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:47.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:48.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-178] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:50.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-179] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:51.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-179] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:53.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-180] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:54.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:57.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:00.919 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-179] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:03.296 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:34:03.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-180] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:05.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-180] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:06.603 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:34:07.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:08.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-181] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:10.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:11.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-180] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:14.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-181] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:17.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-181] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:20.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-182] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:21.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:23.298 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-181] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:24.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:26.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-182] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:27.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-182] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:30.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-183] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:33.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:36.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:37.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-182] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:39.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-183] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:40.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-183] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:42.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-184] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:43.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:46.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:49.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-183] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:52.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-184] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:53.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-184] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:55.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:56.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-185] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:58.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:59.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-184] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:02.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-185] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:03.303 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:35:05.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-185] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:35:08.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-186] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:10.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:12.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-185] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:13.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:15.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-186] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:16.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-186] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:19.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-187] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:22.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:25.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:26.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-186] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:28.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-187] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:29.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-187] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:31.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-188] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:32.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:35.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:38.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-187] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:41.481 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-188] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:42.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-188] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:44.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:45.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-189] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:47.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:48.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-188] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:51.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-189] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:54.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-189] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:57.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-190] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:58.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:00.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-189] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:01.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:36:03.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-190] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:04.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-190] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:06.600 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:36:07.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-191] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:10.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:13.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:15.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-190] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:17.063 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-191] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:18.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-191] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:20.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-192] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:21.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:24.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:27.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-191] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:30.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-192] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:31.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-192] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:33.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:34.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-193] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:36.313 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:37.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-192] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:40.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-193] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:43.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-193] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:46.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-194] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:47.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:49.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-193] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:50.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:52.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-194] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:53.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-194] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:56.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-195] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:59.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:02.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:03.295 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:37:03.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-194] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:05.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-195] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:37:06.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-195] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:08.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-196] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:09.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:12.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:16.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-195] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:18.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-196] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:20.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-196] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:22.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:23.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-197] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:25.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:26.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-196] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:29.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-197] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:32.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-197] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:35.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-198] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:36.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:38.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-197] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:39.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:41.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-198] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:42.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-198] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:45.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-199] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:48.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:51.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:52.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-198] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:54.622 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-199] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:55.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-199] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:57.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-200] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:58.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:01.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:03.296 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:38:04.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-199] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:38:07.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-200] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:08.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-200] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:10.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:11.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-201] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:13.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:14.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-200] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:17.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-201] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:21.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-201] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:24.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-202] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:25.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:27.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-201] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:28.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:30.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-202] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:31.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-202] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:34.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-203] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:37.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:40.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:41.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-202] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:43.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-203] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:44.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-203] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:46.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-204] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:47.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:50.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:53.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-203] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:56.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-204] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:57.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-204] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:59.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:00.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-205] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:02.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:39:03.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-204] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:39:06.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-205] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:09.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-205] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:12.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-206] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:13.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:15.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-205] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:16.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:18.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-206] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:19.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-206] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:22.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-207] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:26.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:29.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:30.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-206] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:32.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-207] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:33.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-207] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:35.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-208] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:36.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:39.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:42.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-207] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:45.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-208] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:46.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-208] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:48.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:49.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-209] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:51.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:52.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-208] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:55.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-209] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:58.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-209] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:01.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-210] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:02.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:03.295 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:40:04.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-209] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:05.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:40:07.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-210] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:08.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-210] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:11.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-211] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:14.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:17.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:18.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-210] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:20.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-211] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:21.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-211] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:23.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-212] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:25.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:28.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:31.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-211] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:34.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-212] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:35.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-212] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:37.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:38.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-213] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:40.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:41.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-212] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:44.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-213] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:47.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-213] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:50.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-214] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:51.413 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:53.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-213] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:54.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:56.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-214] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:57.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-214] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:00.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-215] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:03.301 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:41:03.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:41:06.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:07.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-214] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:09.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-215] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:10.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-215] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:12.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-216] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:13.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:16.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:19.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-215] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:22.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-216] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:23.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-216] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:25.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:26.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-217] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:28.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:30.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-216] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:32.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-217] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:36.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-217] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:39.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-218] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:40.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:42.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-217] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:43.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:45.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-218] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:46.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-218] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:49.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-219] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:52.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:55.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:56.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-218] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:58.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-219] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:59.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-219] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:01.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-220] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:02.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:42:05.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:42:08.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-219] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:11.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-220] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:12.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-220] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:14.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:15.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-221] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:17.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:18.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-220] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:21.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-221] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:24.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-221] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:27.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-222] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:28.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:30.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-221] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:31.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:33.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-222] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:34.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-222] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:37.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-223] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:41.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:44.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:45.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-222] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:47.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-223] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:48.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-223] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:50.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-224] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:51.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:54.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:57.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-223] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:00.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-224] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:01.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-224] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:03.305 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:43:03.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:04.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-225] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:06.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:43:07.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-224] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:10.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-225] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:13.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-225] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:16.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-226] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:17.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:19.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-225] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:20.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:22.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-226] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:23.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-226] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:26.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-227] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:29.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:32.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:33.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-226] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:35.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-227] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:36.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-227] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:38.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-228] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:39.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:42.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:46.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-227] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:49.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-228] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:50.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-228] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:52.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:53.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-229] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:55.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:56.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-228] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:59.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-229] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:02.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-229] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:44:05.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-230] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:06.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:44:08.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-229] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:09.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:11.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-230] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:12.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-230] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:15.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-231] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:18.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:21.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:22.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-230] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:24.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-231] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:25.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-231] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:27.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-232] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:28.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:31.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:34.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-231] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:37.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-232] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:38.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-232] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:40.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:41.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-233] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:43.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:44.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-232] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:47.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-233] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:51.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-233] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:54.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-234] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:55.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:57.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-233] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:58.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:00.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-234] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:01.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-234] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:45:04.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-235] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:45:07.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:10.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:11.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-234] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:13.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-235] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:14.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-235] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:16.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-236] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:17.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:20.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:23.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-235] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:26.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-236] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:27.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-236] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:29.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:30.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-237] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:32.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:33.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-236] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:36.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-237] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:39.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-237] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:42.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-238] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:43.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:45.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-237] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:46.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:48.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-238] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:49.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-238] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:52.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-239] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:56.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:59.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:00.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-238] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:02.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-239] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:03.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-239] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:46:05.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-240] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:06.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:06.592 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:46:09.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:12.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-239] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:15.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-240] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:16.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-240] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:18.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:19.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-241] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:21.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:22.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-240] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:25.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-241] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:28.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-241] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:31.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-242] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:32.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:34.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-241] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:35.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:37.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-242] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:38.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-242] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:41.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-243] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:44.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:47.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:48.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-242] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:50.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-243] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:51.895 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-243] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:53.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-244] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:54.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:57.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:01.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-243] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:03.297 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:47:04.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-244] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:05.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-244] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:47:07.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:08.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-245] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:10.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:11.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-244] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:14.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-245] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:17.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-245] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:20.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-246] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:21.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:23.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-245] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:24.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:26.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-246] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:27.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-246] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:30.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-247] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:33.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:36.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:37.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-246] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:39.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-247] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:40.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-247] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:42.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-248] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:43.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:46.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:49.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-247] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:52.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-248] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:53.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-248] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:55.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:56.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-249] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:58.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:59.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-248] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:02.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-249] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:03.296 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:48:05.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-249] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:06.599 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:48:08.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-250] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:10.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:12.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-249] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:13.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:15.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-250] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:16.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-250] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:19.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-251] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:22.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:25.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:26.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-250] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:28.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-251] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:29.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-251] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:31.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-252] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:32.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:35.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:38.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-251] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:41.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-252] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:42.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-252] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:44.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:45.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-253] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:47.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:48.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-252] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:51.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-253] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:54.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-253] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:57.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-254] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:58.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:00.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-253] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:01.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:49:03.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-254] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:04.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-254] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:49:07.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-255] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:10.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:13.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:15.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-254] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:17.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-255] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:18.012 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-255] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:20.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-256] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:21.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:24.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:27.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-255] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:30.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-256] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:31.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-256] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:33.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:34.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-257] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:36.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:37.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-256] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:40.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-257] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:43.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-257] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:46.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-258] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:47.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:49.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-257] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:50.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:52.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-258] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:53.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-258] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:56.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-259] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:59.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:02.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:03.303 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:50:03.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-258] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:05.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-259] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:50:06.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-259] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:08.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-260] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:09.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:12.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:15.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-259] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:18.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-260] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:19.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-260] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:21.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:22.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-261] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:25.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:26.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-260] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:29.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-261] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:32.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-261] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:35.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-262] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:36.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:38.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-261] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:39.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:41.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-262] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:42.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-262] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:45.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-263] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:48.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:51.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:52.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-262] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:54.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-263] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:55.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-263] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:57.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-264] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:58.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:01.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:03.304 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:51:04.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-263] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:06.603 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:51:07.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-264] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:08.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-264] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:10.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:11.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-265] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:13.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:14.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-264] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:17.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-265] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:20.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-265] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:23.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-266] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:25.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:27.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-265] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:28.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:30.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-266] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:31.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-266] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:34.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-267] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:37.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:40.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:41.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-266] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:43.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-267] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:44.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-267] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:46.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-268] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:47.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:50.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:53.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-267] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:56.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-268] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:57.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-268] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:59.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:00.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-269] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:02.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:52:03.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-268] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:52:06.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-269] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:09.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-269] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:12.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-270] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:13.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:15.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-269] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:16.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:18.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-270] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:19.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-270] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:22.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-271] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:25.963 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:28.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:30.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-270] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:32.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-271] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:33.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-271] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:35.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-272] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:36.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:39.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:42.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-271] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:45.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-272] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:46.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-272] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:48.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:49.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-273] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:51.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:52.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-272] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:55.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-273] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:58.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-273] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:01.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-274] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:02.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:03.302 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:53:04.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-273] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:05.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:06.596 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:53:07.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-274] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:08.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-274] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:11.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-275] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:14.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:17.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:18.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-274] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:20.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-275] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:21.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-275] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:23.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-276] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:24.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:27.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:30.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-275] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:33.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-276] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:34.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-276] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:36.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:37.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-277] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:39.964 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:41.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-276] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:44.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-277] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:47.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-277] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:50.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-278] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:51.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:53.208 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-277] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:54.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:56.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-278] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:57.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-278] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:00.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-279] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:54:03.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:06.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:06.601 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:54:07.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-278] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:09.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-279] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:10.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-279] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:12.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-280] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:13.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:16.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:19.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-279] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:22.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-280] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:23.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-280] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:25.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:26.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-281] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:28.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:29.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-280] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:32.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-281] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:35.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-281] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:38.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-282] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:39.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:41.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-281] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:42.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:44.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-282] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:45.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-282] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:48.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-283] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:51.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:55.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:56.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-282] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:58.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-283] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:59.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-283] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:01.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-284] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:02.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:55:05.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:55:08.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-283] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:11.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-284] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:12.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-284] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:14.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:15.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-285] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:17.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:18.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-284] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:21.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-285] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:24.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-285] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:27.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-286] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:28.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:30.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-285] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:31.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:33.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-286] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:34.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-286] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:37.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-287] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:40.934 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:43.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:44.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-286] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:47.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-287] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:48.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-287] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:50.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-288] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:51.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:54.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:57.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-287] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:00.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-288] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:01.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-288] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:03.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:56:04.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-289] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:06.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:06.599 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:56:07.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-288] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:10.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-289] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:13.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-289] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:16.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-290] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:17.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:19.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-289] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:20.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:22.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-290] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:23.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-290] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:26.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-291] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:29.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:32.639 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:33.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-290] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:35.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-291] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:36.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-291] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:38.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-292] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:39.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:42.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:45.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-291] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:48.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-292] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:49.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-292] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:51.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:52.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-293] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:54.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:56.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-292] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:59.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-293] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:02.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-293] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:57:05.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-294] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:06.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:06.596 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:57:08.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-293] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:09.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:11.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-294] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:12.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-294] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:15.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-295] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:18.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:21.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:22.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-294] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:24.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-295] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:25.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-295] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:27.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-296] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:28.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:31.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:34.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-295] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:37.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-296] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:38.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-296] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:40.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:41.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-297] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:43.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:44.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-296] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:47.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-297] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:51.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-297] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:54.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-298] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:55.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:57.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-297] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:58.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:00.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-298] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:01.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-298] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:03.302 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:58:04.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-299] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:58:07.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:10.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:11.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-298] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:13.413 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-299] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:14.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-299] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:16.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-300] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:17.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:20.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:23.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-299] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:26.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-300] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:27.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-300] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:29.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:30.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-301] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:32.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:33.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-300] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:36.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-301] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:39.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-301] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:42.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-302] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:43.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:45.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-301] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:46.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:48.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-302] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:49.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-302] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:53.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-303] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:56.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:59.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:00.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-302] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:02.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-303] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:03.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-303] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:03.297 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:59:05.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-304] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:06.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:59:09.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:12.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-303] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:15.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-304] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:16.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-304] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:18.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:19.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-305] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:21.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:22.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-304] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:25.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-305] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:28.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-305] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:31.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-306] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:32.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:34.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-305] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:35.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:37.786 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-306] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:38.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-306] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:41.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-307] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:44.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:47.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:48.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-306] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:51.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-307] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:51.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-307] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:54.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-308] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:55.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:58.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:01.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-307] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:03.297 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:00:04.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-308] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:05.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-308] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:00:07.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:08.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-309] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:10.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:11.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-308] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:14.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-309] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:17.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-309] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:20.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-310] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:21.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:23.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-309] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:24.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:26.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-310] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:27.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-310] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:30.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-311] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:33.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:36.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:37.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-310] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:39.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-311] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:40.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-311] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:42.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-312] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:43.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:46.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:49.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-311] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:52.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-312] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:53.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-312] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:55.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:56.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-313] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:59.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:00.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-312] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:03.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-313] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:01:06.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-313] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:01:09.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-314] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:10.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:12.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-313] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:13.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:15.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-314] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:16.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-314] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:19.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-315] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:22.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:25.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:26.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-314] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:28.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-315] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:29.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-315] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:31.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-316] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:32.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:35.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:38.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-315] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:41.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-316] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:42.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-316] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:44.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:45.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-317] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:47.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:48.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-316] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:51.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-317] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:54.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-317] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:57.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-318] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:58.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:01.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-317] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:02.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:02:04.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-318] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:05.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-318] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:02:08.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-319] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:11.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:14.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:15.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-318] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:17.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-319] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:18.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-319] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:20.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-320] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:21.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:24.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:27.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-319] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:30.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-320] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:31.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-320] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:33.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:34.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-321] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:36.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:37.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-320] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:40.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-321] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:43.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-321] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:46.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-322] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:47.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:49.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-321] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:50.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:52.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-322] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:53.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-322] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:56.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-323] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:59.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:02.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:03:04.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-322] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:06.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-323] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:03:07.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-323] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:09.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-324] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:10.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:13.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:16.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-323] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:19.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-324] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:20.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-324] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:22.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:23.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-325] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:25.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:26.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-324] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:29.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-325] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:32.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-325] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:35.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-326] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:36.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:38.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-325] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:39.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:41.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-326] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:42.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-326] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:45.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-327] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:48.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:51.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:52.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-326] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:54.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-327] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-327] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:57.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-328] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:58.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:01.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:04:04.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-327] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:04:07.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-328] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:09.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:11.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-328] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:12.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:14.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-329] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:15.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-328] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:18.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-329] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:21.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:24.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:25.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-329] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:27.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-329] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:28.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-330] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:30.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-330] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:31.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:34.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:37.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-330] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:40.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-331] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:41.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-330] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:43.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:44.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-331] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:46.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:47.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-331] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:50.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-332] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:53.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-331] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:56.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-332] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:57.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:59.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-332] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:00.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:02.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-333] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:05:03.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-332] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:05:06.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-333] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:09.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:12.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:14.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-333] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:16.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-333] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:17.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-334] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:19.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-334] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:20.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:23.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:26.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-334] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:29.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-335] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:30.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-334] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:32.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:33.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-335] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:35.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:36.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-335] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:39.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-336] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:42.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-335] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:45.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-336] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:46.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:48.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-336] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:49.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:51.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-337] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:52.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-336] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:55.638 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-337] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:58.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:01.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:02.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-337] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:03.304 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:06:04.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-337] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:05.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-338] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:06:07.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-338] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:08.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:11.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:14.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-338] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:17.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-339] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:19.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-338] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:21.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:22.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-339] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:24.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:25.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-339] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:28.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-340] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:31.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-339] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:34.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-340] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:35.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:37.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-340] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:38.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:40.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-341] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:41.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-340] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:44.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-341] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:47.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:50.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:51.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-341] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:53.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-341] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:54.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-342] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:56.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-342] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:57.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:00.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:03.302 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:07:03.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-342] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:07:06.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-343] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:07.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-342] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:09.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:10.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-343] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:12.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:13.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-343] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:16.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-344] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:19.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-343] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:22.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-344] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:23.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:26.005 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-344] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:26.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:29.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-345] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:30.076 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-344] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:33.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-345] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:36.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:39.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:40.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-345] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:42.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-345] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:43.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-346] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:45.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-346] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:46.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:49.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:52.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-346] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:55.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-347] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:56.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-346] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:58.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:59.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-347] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:01.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:02.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-347] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:08:05.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-348] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:06.596 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:08:08.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-347] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:11.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-348] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:12.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:14.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-348] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:15.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:17.786 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-349] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:18.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-348] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:21.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-349] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:24.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:27.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:28.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-349] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:31.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-349] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:32.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-350] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:34.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-350] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:35.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:38.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:41.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-350] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:44.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-351] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:45.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-350] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:47.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:48.246 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-351] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:50.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:51.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-351] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:54.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-352] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:57.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-351] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:00.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-352] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:01.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:09:03.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-352] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:04.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:06.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-353] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:06.598 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:09:07.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-352] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:10.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-353] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:13.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:16.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:17.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-353] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:19.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-353] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:20.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-354] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:22.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-354] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:23.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:26.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:29.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-354] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:32.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-355] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:33.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-354] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:36.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:36.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-355] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:39.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:40.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-355] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:43.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-356] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:46.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-355] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:49.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-356] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:50.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:52.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-356] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:53.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:55.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-357] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:56.344 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-356] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:59.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-357] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:02.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:10:05.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:06.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-357] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:10:08.518 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-357] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:09.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-358] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:11.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-358] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:12.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:15.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:18.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-358] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:21.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-359] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:22.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-358] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:24.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:25.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-359] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:27.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:28.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-359] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:31.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-360] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:34.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-359] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:37.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-360] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:38.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:40.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-360] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:41.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:43.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-361] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:44.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-360] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:48.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-361] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:51.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:54.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:55.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-361] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:57.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-361] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:58.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-362] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:00.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-362] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:01.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:11:04.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:11:07.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-362] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:10.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-363] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:11.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-362] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:13.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:14.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-363] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:16.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:17.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-363] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:20.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-364] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:23.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-363] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:26.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-364] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:27.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:29.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-364] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:30.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:32.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-365] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:33.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-364] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:36.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-365] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:39.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:42.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:43.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-365] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:45.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-365] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:46.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-366] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:48.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-366] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:49.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:53.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:56.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-366] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:59.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-367] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:00.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-366] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:02.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:03.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-367] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:03.303 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:12:05.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:06.307 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-367] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:12:09.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-368] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:12.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-367] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:15.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-368] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:16.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:18.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-368] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:19.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:21.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-369] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:22.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-368] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:25.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-369] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:28.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:31.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:32.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-369] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:34.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-369] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:35.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-370] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:37.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-370] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:38.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:41.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:44.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-370] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:47.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-371] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:48.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-370] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:50.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:51.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-371] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:53.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:55.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-371] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:58.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-372] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:01.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-371] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:03.301 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:13:04.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-372] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:05.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:13:07.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-372] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:08.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:10.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-373] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:11.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-372] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:14.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-373] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:17.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:20.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:21.327 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-373] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:23.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-373] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:24.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-374] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:26.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-374] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:27.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:30.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:33.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-374] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:36.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-375] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:37.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-374] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:39.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:40.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-375] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:42.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:43.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-375] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:46.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-376] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:49.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-375] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:52.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-376] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:53.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:55.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-376] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:56.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:58.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-377] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:59.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-376] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:02.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-377] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:14:05.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:14:08.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:09.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-377] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:12.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-377] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:12.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-378] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:15.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-378] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:16.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:19.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:22.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-378] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:25.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-379] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:26.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-378] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:28.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:29.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-379] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:31.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:32.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-379] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:35.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-380] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:38.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-379] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:41.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-380] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:42.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:44.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-380] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:45.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:47.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-381] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:48.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-380] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:51.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-381] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:54.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:57.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:58.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-381] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:00.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-381] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:01.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-382] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:15:03.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-382] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:04.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:15:07.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:10.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-382] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:13.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-383] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:15.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-382] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:17.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:18.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-383] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:20.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:21.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-383] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:24.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-384] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:27.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-383] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:30.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-384] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:31.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:33.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-384] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:34.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:36.298 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-385] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:37.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-384] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:40.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-385] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:43.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:46.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:47.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-385] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:49.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-385] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:50.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-386] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:52.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-386] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:53.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:56.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:59.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-386] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:02.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-387] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:16:03.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-386] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:05.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:16:06.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-387] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:08.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:09.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-387] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:12.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-388] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:15.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-387] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:18.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-388] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:19.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:22.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-388] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:23.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:25.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-389] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:26.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-388] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:29.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-389] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:32.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:35.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:36.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-389] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:38.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-389] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:39.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-390] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:41.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-390] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:42.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:45.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:48.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-390] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:51.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-391] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:52.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-390] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:54.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:55.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-391] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:57.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:58.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-391] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:01.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-392] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:17:04.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-391] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:06.603 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:17:07.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-392] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:08.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:10.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-392] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:11.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:13.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-393] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:14.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-392] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:17.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-393] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:20.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:23.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:25.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-393] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:27.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-393] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:28.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-394] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:30.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-394] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:31.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:34.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:37.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-394] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:40.220 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-395] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:41.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-394] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:43.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:44.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-395] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:46.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:47.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-395] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:50.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-396] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:53.443 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-395] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:56.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-396] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:57.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:59.547 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-396] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:00.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:02.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-397] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:18:03.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-396] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:18:06.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-397] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:09.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:12.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:13.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-397] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:15.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-397] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:16.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-398] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:18.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-398] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:19.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:22.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:25.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-398] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:28.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-399] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:30.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-398] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:32.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:33.038 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-399] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:35.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:36.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-399] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:39.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-400] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:42.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-399] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:45.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-400] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:46.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:48.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-400] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:49.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:51.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-401] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:52.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-400] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:55.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-401] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:58.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:01.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:02.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-401] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:19:04.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-401] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:05.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-402] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:19:07.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-402] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:08.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:11.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:14.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-402] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:17.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-403] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:18.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-402] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:20.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:21.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-403] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:23.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:24.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-403] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:27.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-404] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:30.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-403] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:33.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-404] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:35.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:37.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-404] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:38.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:40.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-405] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:41.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-404] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:44.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-405] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:47.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:50.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:51.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-405] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:53.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-405] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:54.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-406] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:56.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-406] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:57.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:00.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:03.292 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:20:03.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-406] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:06.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-407] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:20:07.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-406] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:09.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:10.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-407] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:12.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:13.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-407] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:16.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-408] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:19.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-407] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:22.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-408] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:23.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:25.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-408] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:26.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:28.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-409] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:29.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-408] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:32.896 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-409] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:35.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:38.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:40.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-409] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:42.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-409] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:43.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-410] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:45.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-410] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:46.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:49.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:52.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-410] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:55.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-411] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:56.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-410] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:58.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:59.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-411] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:01.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:02.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-411] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:03.296 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:21:05.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-412] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:06.598 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:21:08.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-411] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:11.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-412] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:12.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:14.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-412] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:15.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:17.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-413] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:18.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-412] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:21.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-413] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:24.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:27.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:28.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-413] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:30.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-413] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:31.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-414] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:33.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-414] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:34.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:37.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:40.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-414] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:43.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-415] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:45.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-414] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:47.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:47.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-415] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:50.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:51.106 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-415] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:54.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-416] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:57.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-415] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:00.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-416] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:01.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:03.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-416] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:22:04.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:06.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-417] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:06.603 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:22:07.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-416] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:10.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-417] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:13.407 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:16.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:17.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-417] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:19.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-417] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:20.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-418] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:22.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-418] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:23.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:26.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:29.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-418] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:32.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-419] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:33.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-418] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:35.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:36.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-419] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:38.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:39.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-419] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:42.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-420] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:45.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-419] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:48.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-420] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:49.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:52.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-420] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:52.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:55.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-421] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:56.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-420] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:59.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-421] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:02.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:23:05.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:06.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-421] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:23:08.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-421] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:09.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-422] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:11.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-422] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:12.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:15.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:18.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-422] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:21.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-423] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:22.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-422] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:24.518 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:25.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-423] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:27.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:28.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-423] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:31.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-424] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:34.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-423] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:37.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-424] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:38.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:40.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-424] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:41.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:43.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-425] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:44.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-424] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:47.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-425] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:50.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:53.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:54.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-425] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:56.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-425] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:57.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-426] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:59.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-426] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:01.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:03.302 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:24:04.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:06.600 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:24:07.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-426] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:10.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-427] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:11.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-426] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:13.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:14.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-427] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:16.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:17.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-427] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:20.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-428] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:23.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-427] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:26.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-428] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:27.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:29.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-428] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:30.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:32.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-429] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:33.488 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-428] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:36.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-429] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:39.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:42.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:43.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-429] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:45.667 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-429] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:46.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-430] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:48.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-430] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:49.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:52.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:55.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-430] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:58.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-431] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:59.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-430] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:01.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:02.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-431] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:25:04.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:05.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-431] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:25:08.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-432] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:12.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-431] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:15.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-432] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:16.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:18.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-432] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:19.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:21.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-433] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:22.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-432] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:25.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-433] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:28.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:31.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:32.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-433] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:34.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-433] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:35.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-434] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:37.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-434] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:38.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:41.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:44.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-434] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:47.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-435] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:48.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-434] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:50.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:51.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-435] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:53.620 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:54.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-435] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:57.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-436] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:00.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-435] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:03.296 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:26:03.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-436] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:04.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:26:06.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-436] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:07.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:09.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-437] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:10.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-436] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:13.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-437] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:17.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:19.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:21.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-437] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:23.076 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-437] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:24.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-438] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:26.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-438] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:27.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:30.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:33.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-438] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:36.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-439] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:37.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-438] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:39.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:40.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-439] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:42.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:43.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-439] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:46.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-440] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:49.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-439] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:52.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-440] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:53.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:55.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-440] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:56.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:58.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-441] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:59.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-440] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:02.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-441] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:03.299 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:27:05.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:27:08.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:09.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-441] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:11.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-441] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:12.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-442] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:14.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-442] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:15.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:18.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:21.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-442] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:25.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-443] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:26.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-442] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:28.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:29.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-443] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:31.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:32.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-443] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:35.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-444] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:38.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-443] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:41.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-444] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:42.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:44.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-444] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:45.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:47.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-445] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:48.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-444] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:51.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-445] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:54.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:57.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:58.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-445] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:00.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-445] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:01.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-446] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:28:03.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-446] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:04.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:28:07.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:10.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-446] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:13.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-447] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:14.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-446] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:16.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:17.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-447] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:19.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:20.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-447] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:23.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-448] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:26.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-447] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:29.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-448] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:31.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:33.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-448] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:34.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:36.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-449] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:37.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-448] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:40.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-449] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:43.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:46.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:47.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-449] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:49.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-449] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:50.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-450] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:52.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-450] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:53.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:56.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:59.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-450] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:02.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-451] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:29:03.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-450] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:05.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:06.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-451] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:29:08.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:09.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-451] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:12.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-452] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:15.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-451] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:18.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-452] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:19.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:21.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-452] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:22.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:24.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-453] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:25.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-452] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:28.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-453] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:31.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:34.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:35.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-453] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:37.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-453] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:38.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-454] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:40.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-454] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:41.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:44.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:48.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-454] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:51.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-455] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:52.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-454] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:54.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:55.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-455] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:57.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:58.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-455] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:01.220 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-456] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:03.304 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:30:04.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-455] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:30:07.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-456] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:08.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:10.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-456] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:11.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:13.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-457] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:14.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-456] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:17.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-457] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:20.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:23.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:24.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-457] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:26.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-457] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:27.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-458] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:29.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-458] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:30.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:33.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:36.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-458] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:39.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-459] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:40.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-458] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:42.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:43.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-459] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:45.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:46.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-459] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:49.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-460] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:53.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-459] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:56.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-460] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:57.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:59.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-460] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:00.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:02.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-461] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:03.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-460] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:03.292 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:31:06.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-461] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:31:09.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:12.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:13.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-461] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:15.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-461] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:16.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-462] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:18.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-462] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:19.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:22.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:25.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-462] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:28.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-463] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:29.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-462] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:31.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:32.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-463] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:34.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:35.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-463] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:38.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-464] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:41.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-463] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:44.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-464] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:45.836 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:47.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-464] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:48.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:50.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-465] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:51.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-464] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:54.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-465] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:57.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:00.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:02.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-465] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:32:04.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-465] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:05.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-466] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:32:07.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-466] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:08.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:11.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:14.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-466] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:17.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-467] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:18.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-466] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:20.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:21.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-467] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:23.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:24.387 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-467] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:27.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-468] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:30.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-467] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:33.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-468] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:34.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:36.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-468] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:37.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:39.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-469] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:40.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-468] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:43.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-469] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:46.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:49.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:50.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-469] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:52.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-469] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:53.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-470] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:55.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-470] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:56.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:59.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:02.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-470] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:03.295 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:33:06.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-471] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:33:07.063 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-470] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:09.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:10.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-471] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:12.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:13.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-471] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:16.163 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-472] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:19.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-471] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:22.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-472] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:23.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:25.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-472] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:26.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:28.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-473] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:29.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-472] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:32.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-473] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:35.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:38.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:39.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-473] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:41.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-473] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:42.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-474] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:44.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-474] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:45.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:48.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:51.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-474] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:54.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-475] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-474] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:57.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:58.771 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-475] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:00.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:01.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-475] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:03.296 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:34:04.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-476] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:06.602 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:34:07.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-475] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:10.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-476] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:12.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:14.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-476] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:15.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:17.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-477] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:18.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-476] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:21.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-477] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:24.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:27.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:28.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-477] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:30.344 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-477] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:31.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-478] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:33.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-478] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:34.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:37.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:40.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-478] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:43.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-479] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:44.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-478] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:46.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:47.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-479] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:49.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:50.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-479] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:53.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-480] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:56.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-479] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:59.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-480] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:00.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:02.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-480] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:35:03.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:05.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-481] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:06.596 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:35:06.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-480] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:09.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-481] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:12.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:15.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:16.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-481] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:18.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-481] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:19.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-482] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:22.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-482] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:23.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:26.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:29.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-482] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:32.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-483] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:33.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-482] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:35.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:36.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-483] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:38.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:39.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-483] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:42.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-484] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:45.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-483] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:48.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-484] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:49.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:51.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-484] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:52.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:54.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-485] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:55.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-484] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:58.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-485] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:01.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:03.304 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:36:04.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:05.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-485] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:36:07.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-485] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:08.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-486] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:10.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-486] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:11.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:14.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:17.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-486] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:20.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-487] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:21.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-486] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:23.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:24.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-487] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:26.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:28.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-487] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:31.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-488] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:34.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-487] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:37.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-488] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:38.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:40.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-488] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:41.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:43.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-489] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:44.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-488] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:47.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-489] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:50.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:53.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:54.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-489] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:56.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-489] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:57.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-490] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:59.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-490] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:00.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:37:03.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:06.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-490] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:37:09.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-491] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:10.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-490] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:12.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:13.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-491] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:15.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:16.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-491] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:19.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-492] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:22.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-491] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:25.745 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-492] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:26.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:28.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-492] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:29.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:31.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-493] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:32.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-492] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:35.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-493] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:39.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:41.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:43.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-493] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:45.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-493] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:46.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-494] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:48.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-494] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:49.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:52.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:55.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-494] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:58.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-495] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:59.306 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-494] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:01.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:02.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-495] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:38:04.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:05.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-495] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:38:08.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-496] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:11.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-495] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:14.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-496] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:15.542 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:17.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-496] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:18.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:20.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-497] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:21.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-496] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:24.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-497] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:27.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:30.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:31.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-497] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:33.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-497] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:34.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-498] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:36.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-498] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:37.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:40.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:43.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-498] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:46.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-499] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:48.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-498] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:50.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:51.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-499] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:53.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:54.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-499] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:57.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-500] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:00.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-499] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:03.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-500] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:39:04.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:06.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-500] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:39:07.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:09.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-501] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:10.315 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-500] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:13.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-501] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:16.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:19.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:20.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-501] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:22.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-501] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:23.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-502] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:25.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-502] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:26.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:29.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:32.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-502] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:35.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-503] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:36.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-502] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:38.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:39.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-503] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:41.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:42.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-503] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:45.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-504] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:48.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-503] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:51.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-504] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:52.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:55.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-504] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:55.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:57.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-505] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:59.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-504] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:02.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-505] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:03.299 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:40:05.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:06.596 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:40:08.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:09.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-505] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:11.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-505] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:12.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-506] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:14.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-506] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:15.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:18.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:21.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-506] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:24.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-507] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:25.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-506] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:27.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:28.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-507] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:30.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:31.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-507] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:34.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-508] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:37.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-507] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:40.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-508] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:41.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:43.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-508] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:44.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:46.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-509] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:47.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-508] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:50.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-509] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:53.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:56.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:57.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-509] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:59.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-509] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:00.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-510] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:02.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-510] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:41:03.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:41:06.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:10.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-510] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:13.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-511] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:14.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-510] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:16.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:17.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-511] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:19.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:20.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-511] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:23.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-512] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:26.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-511] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:29.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-512] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:30.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:32.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-512] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:33.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:35.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-513] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:36.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-512] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:39.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-513] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:42.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:45.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:46.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-513] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:48.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-513] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:49.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-514] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:51.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-514] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:52.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:55.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:58.820 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-514] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:01.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-515] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:02.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-514] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:03.297 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:42:04.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:05.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-515] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:42:07.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:08.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-515] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:12.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-516] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:15.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-515] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:18.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-516] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:19.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:21.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-516] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:22.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:24.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-517] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:25.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-516] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:28.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-517] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:31.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:34.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:35.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-517] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:37.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-517] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:38.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-518] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:40.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-518] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:41.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:44.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:47.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-518] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:50.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-519] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:51.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-518] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:53.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:54.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-519] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:56.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:57.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-519] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:00.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-520] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:43:03.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-519] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:06.598 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:43:06.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-520] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:07.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:09.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-520] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:10.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:12.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-521] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:13.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-520] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:16.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-521] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:20.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:23.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:24.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-521] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:26.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-521] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:27.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-522] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:29.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-522] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:30.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:33.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:36.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-522] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:39.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-523] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:40.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-522] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:42.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:43.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-523] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:45.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:46.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-523] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:49.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-524] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:52.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-523] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:55.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-524] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:56.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:58.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-524] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:59.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:01.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-525] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:02.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-524] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:44:05.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-525] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:44:08.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:11.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:12.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-525] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:14.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-525] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:15.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-526] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:17.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-526] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:18.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:21.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:24.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-526] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:27.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-527] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:29.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-526] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:31.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:31.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-527] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:34.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:35.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-527] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:38.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-528] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:41.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-527] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:44.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-528] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:45.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:47.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-528] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:48.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:50.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-529] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:51.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-528] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:54.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-529] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:57.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:00.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:01.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-529] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:03.292 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:45:03.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-529] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:04.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-530] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:06.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-530] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:45:07.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:10.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:13.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-530] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:16.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-531] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:17.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-530] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:19.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:20.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-531] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:22.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:23.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-531] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:26.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-532] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:29.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-531] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:32.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-532] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:33.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:35.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-532] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:36.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:38.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-533] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:39.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-532] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:43.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-533] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:46.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:49.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:50.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-533] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:52.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-533] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:53.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-534] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:55.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-534] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:56.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:59.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:02.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-534] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:03.298 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:46:05.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-535] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:06.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-534] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:46:08.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:09.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-535] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:11.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:12.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-535] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:15.492 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-536] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:18.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-535] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:21.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-536] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:22.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:24.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-536] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:25.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:27.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-537] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:28.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-536] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:31.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-537] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:34.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:37.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:38.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-537] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:40.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-537] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:41.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-538] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:43.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-538] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:44.950 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:47.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:51.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-538] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:54.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-539] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:55.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-538] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:57.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:58.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-539] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:00.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:01.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-539] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:47:04.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-540] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:06.601 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:47:07.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-539] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:10.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-540] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:11.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:13.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-540] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:14.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:16.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-541] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:17.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-540] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:20.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-541] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:23.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:26.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:27.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-541] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:29.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-541] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:30.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-542] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:32.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-542] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:33.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:36.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:39.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-542] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:42.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-543] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:43.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-542] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:45.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:46.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-543] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:48.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:49.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-543] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:52.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-544] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:56.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-543] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:59.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-544] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:00.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:02.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-544] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:03.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:03.295 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:48:05.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-545] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:06.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-544] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:48:09.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-545] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:12.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:15.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:16.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-545] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:18.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-545] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:19.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-546] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:21.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-546] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:22.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:25.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:28.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-546] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:31.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-547] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:32.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-546] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:34.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:35.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-547] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:37.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:38.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-547] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:41.739 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-548] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:44.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-547] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:47.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-548] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:48.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:50.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-548] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:51.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:53.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-549] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:54.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-548] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:58.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-549] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:01.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:03.301 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:49:04.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:05.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-549] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:49:07.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-549] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:08.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-550] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:10.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-550] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:11.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:14.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:17.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-550] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:20.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-551] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:21.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-550] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:23.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:24.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-551] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:26.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:27.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-551] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:30.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-552] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:33.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-551] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:36.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-552] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:37.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:39.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-552] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:40.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:42.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-553] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:43.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-552] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:46.731 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-553] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:49.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:52.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:53.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-553] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:55.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-553] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:56.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-554] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:58.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-554] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:59.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:02.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:03.305 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:50:06.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-554] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:50:09.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-555] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:10.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-554] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:12.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:13.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-555] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:15.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:16.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-555] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:19.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-556] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:22.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-555] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:25.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-556] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:26.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:28.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-556] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:29.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:31.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-557] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:32.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-556] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:35.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-557] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:38.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:41.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:42.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-557] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:44.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-557] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:45.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-558] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:47.620 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-558] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:48.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:51.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-559] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:54.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-558] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:57.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-559] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). +25-01-17.19:19:57.943 [main ] WARN AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [cn.bugstack.Application]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'rule_blacklist' for bean class [cn.bugstack.domain.strategy.service.rule.chain.impl.BlackListLogicChain] conflicts with existing, non-compatible bean definition of same name and class [cn.bugstack.domain.strategy.service.rule.chain.impl.BackListLogicChain] +25-01-17.19:19:58.020 [main ] ERROR SpringApplication - Application run failed +org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [cn.bugstack.Application]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'rule_blacklist' for bean class [cn.bugstack.domain.strategy.service.rule.chain.impl.BlackListLogicChain] conflicts with existing, non-compatible bean definition of same name and class [cn.bugstack.domain.strategy.service.rule.chain.impl.BackListLogicChain] + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:188) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) + at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:748) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) + at cn.bugstack.Application.main(Application.java:16) +Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'rule_blacklist' for bean class [cn.bugstack.domain.strategy.service.rule.chain.impl.BlackListLogicChain] conflicts with existing, non-compatible bean definition of same name and class [cn.bugstack.domain.strategy.service.rule.chain.impl.BackListLogicChain] + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) + at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) + at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:295) + at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:249) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:206) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:174) + ... 13 common frames omitted +25-01-17.19:22:36.262 [main ] WARN CuratorZookeeperClient - session timeout [18000] is less than connection timeout [30000] +25-01-17.19:22:42.869 [main ] WARN ConfigurationUtils - [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:42.869 [main ] WARN ConfigurationUtils - [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:52.892 [main ] WARN LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +25-01-17.19:22:55.083 [main ] WARN ServiceConfig - [DUBBO] Use random available port(20880) for protocol dubbo, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.874 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.340 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.644 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.292 [Thread-27 ] WARN NotifyCenter - [NotifyCenter] Start destroying Publisher +25-01-17.19:23:11.292 [Thread-22 ] WARN HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +25-01-17.19:23:11.293 [Thread-27 ] WARN NotifyCenter - [NotifyCenter] Destruction of the end +25-01-17.19:23:11.293 [Thread-22 ] WARN HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +25-01-17.19:23:11.295 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.296 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.297 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.297 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.872 [Dubbo-framework-registry-notification-0-thread-1] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.381 [DubboShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:08.611 [main ] WARN CuratorZookeeperClient - session timeout [18000] is less than connection timeout [30000] +25-01-17.19:25:15.459 [main ] WARN ConfigurationUtils - [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.459 [main ] WARN ConfigurationUtils - [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:24.354 [main ] WARN LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +25-01-17.19:25:26.546 [main ] WARN ServiceConfig - [DUBBO] Use random available port(20880) for protocol dubbo, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.179 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.558 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.828 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.982 [Thread-25 ] WARN NotifyCenter - [NotifyCenter] Start destroying Publisher +25-01-17.19:25:36.982 [Thread-25 ] WARN NotifyCenter - [NotifyCenter] Destruction of the end +25-01-17.19:25:36.982 [Thread-20 ] WARN HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +25-01-17.19:25:36.982 [Thread-20 ] WARN HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +25-01-17.19:25:36.984 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.986 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.986 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.986 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:37.526 [Dubbo-framework-registry-notification-0-thread-1] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 diff --git a/data/log/log_info.log b/data/log/log_info.log index cb06fb7..3f72dc6 100644 --- a/data/log/log_info.log +++ b/data/log/log_info.log @@ -1,20877 +1,470 @@ -24-12-26.21:18:56.742 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 27080 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) -24-12-26.21:18:56.745 [main ] INFO Application - The following 1 profile is active: "dev" -24-12-26.21:18:58.816 [main ] INFO RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -24-12-26.21:18:58.818 [main ] INFO RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -24-12-26.21:18:58.957 [main ] INFO RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 121 ms. Found 0 Redis repository interfaces. -24-12-26.21:18:59.861 [main ] INFO TomcatWebServer - Tomcat initialized with port(s): 8091 (http) -24-12-26.21:18:59.872 [main ] INFO Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8091"] -24-12-26.21:18:59.873 [main ] INFO StandardService - Starting service [Tomcat] -24-12-26.21:18:59.873 [main ] INFO StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.75] -24-12-26.21:19:00.120 [main ] INFO [/] - Initializing Spring embedded WebApplicationContext -24-12-26.21:19:00.120 [main ] INFO ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3331 ms -24-12-26.21:19:00.545 [main ] INFO Version - Redisson 3.23.4 -24-12-26.21:19:02.033 [redisson-netty-2-4] INFO MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-26.21:19:02.048 [redisson-netty-2-13] INFO MasterConnectionPool - 5 connections initialized for 127.0.0.1/127.0.0.1:16379 -24-12-26.21:19:05.548 [main ] INFO EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' -24-12-26.21:19:05.667 [main ] INFO Http11NioProtocol - Starting ProtocolHandler ["http-nio-8091"] -24-12-26.21:19:05.681 [main ] INFO TomcatWebServer - Tomcat started on port(s): 8091 (http) with context path '' -24-12-26.21:19:05.683 [main ] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:19:05.714 [main ] INFO CachingConnectionFactory - Created new connection: rabbitConnectionFactory#391d1e33:0/SimpleConnection@7462ba4b [delegate=amqp://admin@127.0.0.1:5672/, localPort= 54898] -24-12-26.21:19:05.789 [main ] INFO Application - Started Application in 9.561 seconds (JVM running for 12.519) -24-12-26.21:19:07.158 [RMI TCP Connection(4)-192.168.157.1] INFO [/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -24-12-26.21:19:07.158 [RMI TCP Connection(4)-192.168.157.1] INFO DispatcherServlet - Initializing Servlet 'dispatcherServlet' -24-12-26.21:19:07.160 [RMI TCP Connection(4)-192.168.157.1] INFO DispatcherServlet - Completed initialization in 2 ms -24-12-26.21:19:07.167 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-26.21:19:07.654 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-26.21:19:07.677 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Starting... -24-12-26.21:19:07.702 [RMI TCP Connection(3)-192.168.157.1] INFO HikariDataSource - Retail_HikariCP - Start completed. -24-12-26.21:20:00.015 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:20:00.028 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:21:00.007 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:21:00.010 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:22:00.012 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:22:00.015 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:23:00.005 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:23:00.007 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:24:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:24:00.015 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:25:00.004 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:25:00.007 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:26:00.010 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:26:00.012 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:27:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:27:00.016 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:28:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:28:00.007 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:29:00.011 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:29:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:30:00.010 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:30:00.012 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:31:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:31:00.016 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:32:00.014 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:32:00.016 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:33:00.005 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:33:00.007 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:34:00.008 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:34:00.010 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:35:00.010 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:35:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:36:00.015 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:36:00.017 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:37:00.001 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:37:00.002 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:38:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:38:00.003 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:39:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:39:00.003 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:40:00.007 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:40:00.009 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:41:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:41:00.011 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:42:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:42:00.010 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:43:00.011 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:43:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:44:00.003 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:44:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:45:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:45:00.011 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:46:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:46:00.003 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:47:00.000 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:47:00.002 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:48:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:48:00.003 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:49:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:49:00.006 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:50:00.016 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:50:00.018 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:51:00.016 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:51:00.018 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:52:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:52:00.019 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:53:00.002 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:53:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:54:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:54:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:55:00.006 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:55:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:56:00.003 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:56:00.005 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:57:00.007 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:57:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:57:55.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] INFO SimpleMessageListenerContainer - Restarting Consumer@545604a9: tags=[[amq.ctag-Q4nzcNfWUbf4YUniYPdWuQ]], channel=Cached Rabbit Channel: AMQChannel(amqp://admin@127.0.0.1:5672/,1), conn: Proxy@629cbb1 Shared Rabbit Connection: SimpleConnection@7462ba4b [delegate=amqp://admin@127.0.0.1:5672/, localPort= 54898], acknowledgeMode=AUTO local queue size=0 -24-12-26.21:57:55.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:57:55.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpIOException: java.io.IOException - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:70) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:603) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:725) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createBareChannel(CachingConnectionFactory.java:676) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.getCachedChannelProxy(CachingConnectionFactory.java:650) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.getChannel(CachingConnectionFactory.java:540) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.access$1600(CachingConnectionFactory.java:100) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory$ChannelCachingConnectionProxy.createChannel(CachingConnectionFactory.java:1418) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2216) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2183) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2163) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:463) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:447) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1942) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1915) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1384) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1230) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.io.IOException: null - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:129) - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:125) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:396) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1225) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1173) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:641) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:616) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:566) - ... 16 common frames omitted -Caused by: com.rabbitmq.client.ShutdownSignalException: connection error - at com.rabbitmq.utility.ValueOrException.getValue(ValueOrException.java:66) - at com.rabbitmq.utility.BlockingValueOrException.uninterruptibleGetValue(BlockingValueOrException.java:36) - at com.rabbitmq.client.impl.AMQChannel$BlockingRpcContinuation.getReply(AMQChannel.java:502) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:326) - ... 21 common frames omitted -Caused by: java.io.EOFException: null - at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:290) - at com.rabbitmq.client.impl.Frame.readFrom(Frame.java:91) - at com.rabbitmq.client.impl.SocketFrameHandler.readFrame(SocketFrameHandler.java:184) - at com.rabbitmq.client.impl.AMQConnection$MainLoop.run(AMQConnection.java:665) - ... 1 common frames omitted -24-12-26.21:57:55.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:57:55.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-1] INFO SimpleMessageListenerContainer - Restarting Consumer@61c4cebd: tags=[[amq.ctag-xs3LGO1ZXo1Ffc9Ncc6mPA]], channel=Cached Rabbit Channel: AMQChannel(amqp://admin@127.0.0.1:5672/,2), conn: Proxy@629cbb1 Shared Rabbit Connection: null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:57:55.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:57:55.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpIOException: java.io.IOException - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:70) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:603) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:725) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:252) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2210) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2183) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2163) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:463) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:447) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1942) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1915) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1384) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1230) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.io.IOException: null - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:129) - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:125) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:396) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1225) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1173) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:641) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:616) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:566) - ... 12 common frames omitted -Caused by: com.rabbitmq.client.ShutdownSignalException: connection error - at com.rabbitmq.utility.ValueOrException.getValue(ValueOrException.java:66) - at com.rabbitmq.utility.BlockingValueOrException.uninterruptibleGetValue(BlockingValueOrException.java:36) - at com.rabbitmq.client.impl.AMQChannel$BlockingRpcContinuation.getReply(AMQChannel.java:502) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:326) - ... 17 common frames omitted -Caused by: java.io.EOFException: null - at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:290) - at com.rabbitmq.client.impl.Frame.readFrom(Frame.java:91) - at com.rabbitmq.client.impl.SocketFrameHandler.readFrame(SocketFrameHandler.java:184) - at com.rabbitmq.client.impl.AMQConnection$MainLoop.run(AMQConnection.java:665) - ... 1 common frames omitted -24-12-26.21:57:55.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:57:56.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-1] INFO SimpleMessageListenerContainer - Restarting Consumer@716ae973: tags=[[amq.ctag-S75pg8KFH3v5n9pAKzBDEg]], channel=Cached Rabbit Channel: AMQChannel(amqp://admin@127.0.0.1:5672/,3), conn: Proxy@629cbb1 Shared Rabbit Connection: null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:57:56.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:57:56.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpIOException: java.io.IOException - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:70) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:603) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:725) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:252) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2210) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2183) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2163) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:463) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:447) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1942) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1915) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1384) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1230) - at java.lang.Thread.run(Thread.java:750) -Caused by: java.io.IOException: null - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:129) - at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:125) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:396) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1225) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1173) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:641) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:616) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:566) - ... 12 common frames omitted -Caused by: com.rabbitmq.client.ShutdownSignalException: connection error - at com.rabbitmq.utility.ValueOrException.getValue(ValueOrException.java:66) - at com.rabbitmq.utility.BlockingValueOrException.uninterruptibleGetValue(BlockingValueOrException.java:36) - at com.rabbitmq.client.impl.AMQChannel$BlockingRpcContinuation.getReply(AMQChannel.java:502) - at com.rabbitmq.client.impl.AMQConnection.start(AMQConnection.java:326) - ... 17 common frames omitted -Caused by: java.io.EOFException: null - at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:290) - at com.rabbitmq.client.impl.Frame.readFrom(Frame.java:91) - at com.rabbitmq.client.impl.SocketFrameHandler.readFrame(SocketFrameHandler.java:184) - at com.rabbitmq.client.impl.AMQConnection$MainLoop.run(AMQConnection.java:665) - ... 1 common frames omitted -24-12-26.21:57:56.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:00.012 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:58:00.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Restarting Consumer@b8c3ab5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:00.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:01.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:01.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:01.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Restarting Consumer@16ffe502: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:01.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-3] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:01.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-3] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:01.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-3] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:01.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] INFO SimpleMessageListenerContainer - Restarting Consumer@1e6046ff: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:01.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-3] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:01.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-3] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:01.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-3] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.21:58:03.301 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:58:06.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] INFO SimpleMessageListenerContainer - Restarting Consumer@4b7b3aaf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:06.132 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:06.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-3] INFO SimpleMessageListenerContainer - Restarting Consumer@45a8e4bb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:06.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-3] INFO SimpleMessageListenerContainer - Restarting Consumer@30ca97a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:06.603 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.21:58:06.610 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@63b34712 (Communications link failure +25-01-17.19:19:57.451 [main ] INFO WelcomeLogoApplicationListener - -The last packet successfully received from the server was 66,595 milliseconds ago. The last packet sent successfully to the server was 66,597 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.610 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3a1ac79f (Communications link failure + :: Dubbo Spring Boot (v3.0.9) : https://github.com/apache/dubbo-spring-boot-project + :: Dubbo (v3.0.9) : https://github.com/apache/dubbo + :: Discuss group : dev@dubbo.apache.org -The last packet successfully received from the server was 66,595 milliseconds ago. The last packet sent successfully to the server was 66,597 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.611 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@592a429 (Communications link failure +25-01-17.19:19:57.521 [background-preinit] INFO Version - HV000001: Hibernate Validator 6.2.5.Final +25-01-17.19:19:57.532 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 9640 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) +25-01-17.19:19:57.532 [main ] INFO Application - The following 1 profile is active: "dev" +25-01-17.19:19:57.943 [main ] WARN AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [cn.bugstack.Application]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'rule_blacklist' for bean class [cn.bugstack.domain.strategy.service.rule.chain.impl.BlackListLogicChain] conflicts with existing, non-compatible bean definition of same name and class [cn.bugstack.domain.strategy.service.rule.chain.impl.BackListLogicChain] +25-01-17.19:19:58.020 [main ] ERROR SpringApplication - Application run failed +org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [cn.bugstack.Application]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'rule_blacklist' for bean class [cn.bugstack.domain.strategy.service.rule.chain.impl.BlackListLogicChain] conflicts with existing, non-compatible bean definition of same name and class [cn.bugstack.domain.strategy.service.rule.chain.impl.BackListLogicChain] + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:188) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) + at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:748) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) + at cn.bugstack.Application.main(Application.java:16) +Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'rule_blacklist' for bean class [cn.bugstack.domain.strategy.service.rule.chain.impl.BlackListLogicChain] conflicts with existing, non-compatible bean definition of same name and class [cn.bugstack.domain.strategy.service.rule.chain.impl.BackListLogicChain] + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) + at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) + at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:295) + at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:249) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:206) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:174) + ... 13 common frames omitted +25-01-17.19:22:30.614 [main ] INFO WelcomeLogoApplicationListener - -The last packet successfully received from the server was 576,234 milliseconds ago. The last packet sent successfully to the server was 576,234 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.612 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@41416e45 (Communications link failure + :: Dubbo Spring Boot (v3.0.9) : https://github.com/apache/dubbo-spring-boot-project + :: Dubbo (v3.0.9) : https://github.com/apache/dubbo + :: Discuss group : dev@dubbo.apache.org -The last packet successfully received from the server was 579,234 milliseconds ago. The last packet sent successfully to the server was 579,234 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.612 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@67dc3ec0 (Communications link failure +25-01-17.19:22:30.671 [background-preinit] INFO Version - HV000001: Hibernate Validator 6.2.5.Final +25-01-17.19:22:30.681 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 24720 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) +25-01-17.19:22:30.681 [main ] INFO Application - The following 1 profile is active: "dev" +25-01-17.19:22:33.881 [main ] INFO FrameworkModel - [DUBBO] Reset global default framework from null to Dubbo Framework[1], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:33.881 [main ] INFO FrameworkModel - [DUBBO] Dubbo Framework[1] is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:33.930 [main ] INFO ApplicationModel - [DUBBO] Dubbo Application[1.0](unknown) is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:33.930 [main ] INFO ScopeModel - [DUBBO] Dubbo Module[1.0.0] is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:33.970 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:33.970 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.052 [main ] INFO FrameworkModel - [DUBBO] Reset global default application from null to Dubbo Application[1.1](unknown), dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.052 [main ] INFO ApplicationModel - [DUBBO] Dubbo Application[1.1](unknown) is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.052 [main ] INFO ScopeModel - [DUBBO] Dubbo Module[1.1.0] is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.063 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.063 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.090 [main ] INFO DubboSpringInitializer - [DUBBO] Use default application: Dubbo Application[1.1](unknown), dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.090 [main ] INFO ScopeModel - [DUBBO] Dubbo Module[1.1.1] is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.097 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.103 [main ] INFO DubboSpringInitializer - [DUBBO] Use default module model of target application: Dubbo Module[1.1.1], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.103 [main ] INFO DubboSpringInitializer - [DUBBO] Bind Dubbo Module[1.1.1] to spring container: org.springframework.beans.factory.support.DefaultListableBeanFactory@f316aeb, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.409 [main ] INFO RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +25-01-17.19:22:34.410 [main ] INFO RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +25-01-17.19:22:34.560 [main ] INFO RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 135 ms. Found 0 Redis repository interfaces. +25-01-17.19:22:34.735 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.735 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.829 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] Found 2 classes annotated by Dubbo @Service under package [cn.bugstack]: [cn.bugstack.trigger.http.RaffleActivityController, cn.bugstack.trigger.http.RaffleStrategyController], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.838 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] Register ServiceBean[ServiceBean:cn.bugstack.trigger.api.IRaffleActivityService:1.0]: Root bean: class [org.apache.dubbo.config.spring.ServiceBean]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.839 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] Register ServiceBean[ServiceBean:cn.bugstack.trigger.api.IRaffleStrategyService:1.0]: Root bean: class [org.apache.dubbo.config.spring.ServiceBean]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.840 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.840 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.840 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] Ignore package who has already bean scanned: cn.bugstack.trigger.api, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:34.947 [main ] INFO ConfigurationClassPostProcessor - Cannot enhance @Configuration bean definition 'org.apache.dubbo.spring.boot.autoconfigure.DubboRelaxedBinding2AutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'. +25-01-17.19:22:34.947 [main ] INFO ConfigurationClassPostProcessor - Cannot enhance @Configuration bean definition 'org.apache.dubbo.spring.boot.autoconfigure.DubboAutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'. +25-01-17.19:22:35.050 [main ] INFO GenericScope - BeanFactory id=7478c502-6027-3dfa-876d-69dadd81902b +25-01-17.19:22:35.715 [main ] INFO ReferenceAnnotationBeanPostProcessor - class org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor was destroying! +25-01-17.19:22:36.160 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'zooKeeperClientConfig' of type [cn.bugstack.config.ZooKeeperClientConfig$$EnhancerBySpringCGLIB$$cf2c34be] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:22:36.175 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:22:36.180 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:22:36.182 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$545/382762227] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:22:36.188 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:22:36.194 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'zookeeper.sdk.config-cn.bugstack.config.ZookeeperClientConfigProperties' of type [cn.bugstack.config.ZookeeperClientConfigProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:22:36.262 [main ] WARN CuratorZookeeperClient - session timeout [18000] is less than connection timeout [30000] +25-01-17.19:22:36.278 [main ] INFO CuratorFrameworkImpl - Starting +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:zookeeper.version=3.6.0--b4c89dc7f6083829e18fae6e446907ae0b1f22d7, built on 02/25/2020 14:38 GMT +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:host.name=zhaoyongfeng +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:java.version=1.8.0_412 +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:java.vendor=Amazon.com Inc. +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:java.home=D:\tools\javajdk\jak1.8\jre +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:java.class.path=D:\tools\javajdk\jak1.8\jre\lib\charsets.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\access-bridge-64.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\cldrdata.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\dnsns.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\jaccess.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\jfxrt.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\localedata.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\nashorn.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\sunec.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\sunjce_provider.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\sunmscapi.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\sunpkcs11.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\zipfs.jar;D:\tools\javajdk\jak1.8\jre\lib\jce.jar;D:\tools\javajdk\jak1.8\jre\lib\jfr.jar;D:\tools\javajdk\jak1.8\jre\lib\jfxswt.jar;D:\tools\javajdk\jak1.8\jre\lib\jsse.jar;D:\tools\javajdk\jak1.8\jre\lib\management-agent.jar;D:\tools\javajdk\jak1.8\jre\lib\resources.jar;D:\tools\javajdk\jak1.8\jre\lib\rt.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-web\2.7.12\spring-boot-starter-web-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter\2.7.12\spring-boot-starter-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot\2.7.12\spring-boot-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.7.12\spring-boot-starter-logging-2.7.12.jar;C:\Users\31126\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.17.2\log4j-to-slf4j-2.17.2.jar;C:\Users\31126\.m2\repository\org\apache\logging\log4j\log4j-api\2.17.2\log4j-api-2.17.2.jar;C:\Users\31126\.m2\repository\org\slf4j\jul-to-slf4j\1.7.36\jul-to-slf4j-1.7.36.jar;C:\Users\31126\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-json\2.7.12\spring-boot-starter-json-2.7.12.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.13.5\jackson-datatype-jdk8-2.13.5.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.13.5\jackson-datatype-jsr310-2.13.5.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.13.5\jackson-module-parameter-names-2.13.5.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-tomcat\2.7.12\spring-boot-starter-tomcat-2.7.12.jar;C:\Users\31126\.m2\repository\org\apache\tomcat\embed\tomcat-embed-el\9.0.75\tomcat-embed-el-9.0.75.jar;C:\Users\31126\.m2\repository\org\apache\tomcat\embed\tomcat-embed-websocket\9.0.75\tomcat-embed-websocket-9.0.75.jar;C:\Users\31126\.m2\repository\org\springframework\spring-web\5.3.27\spring-web-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-beans\5.3.27\spring-beans-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-webmvc\5.3.27\spring-webmvc-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-aop\5.3.27\spring-aop-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-expression\5.3.27\spring-expression-5.3.27.jar;C:\Users\31126\.m2\repository\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar;C:\Users\31126\.m2\repository\net\bytebuddy\byte-buddy\1.12.23\byte-buddy-1.12.23.jar;C:\Users\31126\.m2\repository\org\springframework\spring-core\5.3.27\spring-core-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-jcl\5.3.27\spring-jcl-5.3.27.jar;C:\Users\31126\.m2\repository\org\apache\tomcat\embed\tomcat-embed-core\9.0.75\tomcat-embed-core-9.0.75.jar;C:\Users\31126\.m2\repository\org\apache\tomcat\tomcat-annotations-api\9.0.75\tomcat-annotations-api-9.0.75.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-configuration-processor\2.7.12\spring-boot-configuration-processor-2.7.12.jar;C:\Users\31126\.m2\repository\org\mybatis\spring\boot\mybatis-spring-boot-starter\2.1.4\mybatis-spring-boot-starter-2.1.4.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-jdbc\2.7.12\spring-boot-starter-jdbc-2.7.12.jar;C:\Users\31126\.m2\repository\com\zaxxer\HikariCP\4.0.3\HikariCP-4.0.3.jar;C:\Users\31126\.m2\repository\org\springframework\spring-jdbc\5.3.27\spring-jdbc-5.3.27.jar;C:\Users\31126\.m2\repository\org\mybatis\spring\boot\mybatis-spring-boot-autoconfigure\2.1.4\mybatis-spring-boot-autoconfigure-2.1.4.jar;C:\Users\31126\.m2\repository\org\mybatis\mybatis\3.5.6\mybatis-3.5.6.jar;C:\Users\31126\.m2\repository\org\mybatis\mybatis-spring\2.0.6\mybatis-spring-2.0.6.jar;C:\Users\31126\.m2\repository\mysql\mysql-connector-java\8.0.22\mysql-connector-java-8.0.22.jar;C:\Users\31126\.m2\repository\com\google\protobuf\protobuf-java\3.11.4\protobuf-java-3.11.4.jar;C:\Users\31126\.m2\repository\com\alibaba\fastjson\2.0.28\fastjson-2.0.28.jar;C:\Users\31126\.m2\repository\com\alibaba\fastjson2\fastjson2-extension\2.0.28\fastjson2-extension-2.0.28.jar;C:\Users\31126\.m2\repository\com\alibaba\fastjson2\fastjson2\2.0.28\fastjson2-2.0.28.jar;C:\Users\31126\.m2\repository\org\apache\commons\commons-lang3\3.9\commons-lang3-3.9.jar;C:\Users\31126\.m2\repository\org\projectlombok\lombok\1.18.26\lombok-1.18.26.jar;C:\Users\31126\.m2\repository\com\google\guava\guava\32.1.3-jre\guava-32.1.3-jre.jar;C:\Users\31126\.m2\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\31126\.m2\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\Users\31126\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\31126\.m2\repository\org\checkerframework\checker-qual\3.37.0\checker-qual-3.37.0.jar;C:\Users\31126\.m2\repository\com\google\errorprone\error_prone_annotations\2.21.1\error_prone_annotations-2.21.1.jar;C:\Users\31126\.m2\repository\com\google\j2objc\j2objc-annotations\2.8\j2objc-annotations-2.8.jar;C:\Users\31126\.m2\repository\io\jsonwebtoken\jjwt\0.9.1\jjwt-0.9.1.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.13.5\jackson-databind-2.13.5.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.13.5\jackson-annotations-2.13.5.jar;C:\Users\31126\.m2\repository\com\auth0\java-jwt\4.4.0\java-jwt-4.4.0.jar;C:\Users\31126\.m2\repository\commons-codec\commons-codec\1.15\commons-codec-1.15.jar;C:\Users\31126\.m2\repository\com\squareup\retrofit2\converter-gson\2.9.0\converter-gson-2.9.0.jar;C:\Users\31126\.m2\repository\com\squareup\retrofit2\retrofit\2.9.0\retrofit-2.9.0.jar;C:\Users\31126\.m2\repository\com\squareup\okhttp3\okhttp\4.9.3\okhttp-4.9.3.jar;C:\Users\31126\.m2\repository\com\squareup\okio\okio\2.8.0\okio-2.8.0.jar;C:\Users\31126\.m2\repository\org\jetbrains\kotlin\kotlin-stdlib-common\1.6.21\kotlin-stdlib-common-1.6.21.jar;C:\Users\31126\.m2\repository\org\jetbrains\kotlin\kotlin-stdlib\1.6.21\kotlin-stdlib-1.6.21.jar;C:\Users\31126\.m2\repository\org\jetbrains\annotations\13.0\annotations-13.0.jar;C:\Users\31126\.m2\repository\com\google\code\gson\gson\2.9.1\gson-2.9.1.jar;C:\Users\31126\.m2\repository\org\redisson\redisson-spring-boot-starter\3.26.0\redisson-spring-boot-starter-3.26.0.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-actuator\2.7.12\spring-boot-starter-actuator-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-actuator-autoconfigure\2.7.12\spring-boot-actuator-autoconfigure-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-actuator\2.7.12\spring-boot-actuator-2.7.12.jar;C:\Users\31126\.m2\repository\io\micrometer\micrometer-core\1.9.11\micrometer-core-1.9.11.jar;C:\Users\31126\.m2\repository\org\hdrhistogram\HdrHistogram\2.1.12\HdrHistogram-2.1.12.jar;C:\Users\31126\.m2\repository\org\latencyutils\LatencyUtils\2.0.3\LatencyUtils-2.0.3.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-data-redis\2.7.12\spring-boot-starter-data-redis-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\data\spring-data-redis\2.7.12\spring-data-redis-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\data\spring-data-keyvalue\2.7.12\spring-data-keyvalue-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\data\spring-data-commons\2.7.12\spring-data-commons-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\spring-oxm\5.3.27\spring-oxm-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-context-support\5.3.27\spring-context-support-5.3.27.jar;C:\Users\31126\.m2\repository\org\redisson\redisson\3.26.0\redisson-3.26.0.jar;C:\Users\31126\.m2\repository\io\netty\netty-common\4.1.92.Final\netty-common-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec\4.1.92.Final\netty-codec-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-buffer\4.1.92.Final\netty-buffer-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport\4.1.92.Final\netty-transport-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver\4.1.92.Final\netty-resolver-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver-dns\4.1.92.Final\netty-resolver-dns-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-handler\4.1.92.Final\netty-handler-4.1.92.Final.jar;C:\Users\31126\.m2\repository\javax\cache\cache-api\1.1.1\cache-api-1.1.1.jar;C:\Users\31126\.m2\repository\io\projectreactor\reactor-core\3.4.29\reactor-core-3.4.29.jar;C:\Users\31126\.m2\repository\org\reactivestreams\reactive-streams\1.0.4\reactive-streams-1.0.4.jar;C:\Users\31126\.m2\repository\io\reactivex\rxjava3\rxjava\3.1.6\rxjava-3.1.6.jar;C:\Users\31126\.m2\repository\org\jboss\marshalling\jboss-marshalling\2.0.11.Final\jboss-marshalling-2.0.11.Final.jar;C:\Users\31126\.m2\repository\org\jboss\marshalling\jboss-marshalling-river\2.0.11.Final\jboss-marshalling-river-2.0.11.Final.jar;C:\Users\31126\.m2\repository\com\esotericsoftware\kryo\5.6.0\kryo-5.6.0.jar;C:\Users\31126\.m2\repository\com\esotericsoftware\reflectasm\1.11.9\reflectasm-1.11.9.jar;C:\Users\31126\.m2\repository\com\esotericsoftware\minlog\1.3.1\minlog-1.3.1.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\dataformat\jackson-dataformat-yaml\2.13.5\jackson-dataformat-yaml-2.13.5.jar;C:\Users\31126\.m2\repository\org\jodd\jodd-bean\5.1.6\jodd-bean-5.1.6.jar;C:\Users\31126\.m2\repository\org\jodd\jodd-core\5.1.6\jodd-core-5.1.6.jar;C:\Users\31126\.m2\repository\org\redisson\redisson-spring-data-32\3.26.0\redisson-spring-data-32-3.26.0.jar;C:\Users\31126\.m2\repository\org\jeasy\easy-random-core\4.3.0\easy-random-core-4.3.0.jar;C:\Users\31126\.m2\repository\org\objenesis\objenesis\3.1\objenesis-3.1.jar;C:\Users\31126\.m2\repository\io\github\classgraph\classgraph\4.8.90\classgraph-4.8.90.jar;C:\Users\31126\.m2\repository\cn\bugstack\middleware\db-router-spring-boot-starter\1.0.2\db-router-spring-boot-starter-1.0.2.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.7.12\spring-boot-autoconfigure-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-aop\2.7.12\spring-boot-starter-aop-2.7.12.jar;C:\Users\31126\.m2\repository\org\aspectj\aspectjweaver\1.9.7\aspectjweaver-1.9.7.jar;C:\Users\31126\.m2\repository\commons-beanutils\commons-beanutils\1.9.4\commons-beanutils-1.9.4.jar;C:\Users\31126\.m2\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar;C:\Users\31126\.m2\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar;C:\Users\31126\.m2\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-amqp\3.2.0\spring-boot-starter-amqp-3.2.0.jar;C:\Users\31126\.m2\repository\org\springframework\spring-messaging\5.3.27\spring-messaging-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\amqp\spring-rabbit\2.4.12\spring-rabbit-2.4.12.jar;C:\Users\31126\.m2\repository\org\springframework\amqp\spring-amqp\2.4.12\spring-amqp-2.4.12.jar;C:\Users\31126\.m2\repository\org\springframework\retry\spring-retry\1.3.4\spring-retry-1.3.4.jar;C:\Users\31126\.m2\repository\com\rabbitmq\amqp-client\5.14.2\amqp-client-5.14.2.jar;C:\Users\31126\.m2\repository\org\apache\dubbo\dubbo\3.0.9\dubbo-3.0.9.jar;C:\Users\31126\.m2\repository\org\springframework\spring-context\5.3.27\spring-context-5.3.27.jar;C:\Users\31126\.m2\repository\com\alibaba\spring\spring-context-support\1.0.8\spring-context-support-1.0.8.jar;C:\Users\31126\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\31126\.m2\repository\io\netty\netty-all\4.1.92.Final\netty-all-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-dns\4.1.92.Final\netty-codec-dns-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-haproxy\4.1.92.Final\netty-codec-haproxy-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-http\4.1.92.Final\netty-codec-http-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-http2\4.1.92.Final\netty-codec-http2-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-memcache\4.1.92.Final\netty-codec-memcache-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-mqtt\4.1.92.Final\netty-codec-mqtt-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-redis\4.1.92.Final\netty-codec-redis-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-smtp\4.1.92.Final\netty-codec-smtp-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-socks\4.1.92.Final\netty-codec-socks-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-stomp\4.1.92.Final\netty-codec-stomp-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-xml\4.1.92.Final\netty-codec-xml-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-unix-common\4.1.92.Final\netty-transport-native-unix-common-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-handler-proxy\4.1.92.Final\netty-handler-proxy-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-handler-ssl-ocsp\4.1.92.Final\netty-handler-ssl-ocsp-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-rxtx\4.1.92.Final\netty-transport-rxtx-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-sctp\4.1.92.Final\netty-transport-sctp-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-udt\4.1.92.Final\netty-transport-udt-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-classes-epoll\4.1.92.Final\netty-transport-classes-epoll-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-classes-kqueue\4.1.92.Final\netty-transport-classes-kqueue-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver-dns-classes-macos\4.1.92.Final\netty-resolver-dns-classes-macos-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-epoll\4.1.92.Final\netty-transport-native-epoll-4.1.92.Final-linux-x86_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-epoll\4.1.92.Final\netty-transport-native-epoll-4.1.92.Final-linux-aarch_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-kqueue\4.1.92.Final\netty-transport-native-kqueue-4.1.92.Final-osx-x86_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-kqueue\4.1.92.Final\netty-transport-native-kqueue-4.1.92.Final-osx-aarch_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver-dns-native-macos\4.1.92.Final\netty-resolver-dns-native-macos-4.1.92.Final-osx-x86_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver-dns-native-macos\4.1.92.Final\netty-resolver-dns-native-macos-4.1.92.Final-osx-aarch_64.jar;C:\Users\31126\.m2\repository\org\yaml\snakeyaml\1.30\snakeyaml-1.30.jar;C:\Users\31126\.m2\repository\org\apache\dubbo\dubbo-spring-boot-starter\3.0.9\dubbo-spring-boot-starter-3.0.9.jar;C:\Users\31126\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure\3.0.9\dubbo-spring-boot-autoconfigure-3.0.9.jar;C:\Users\31126\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure-compatible\3.0.9\dubbo-spring-boot-autoconfigure-compatible-3.0.9.jar;C:\Users\31126\.m2\repository\com\alibaba\nacos\nacos-client\2.1.0\nacos-client-2.1.0.jar;C:\Users\31126\.m2\repository\com\alibaba\nacos\nacos-auth-plugin\2.1.0\nacos-auth-plugin-2.1.0.jar;C:\Users\31126\.m2\repository\com\alibaba\nacos\nacos-encryption-plugin\2.1.0\nacos-encryption-plugin-2.1.0.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.13.5\jackson-core-2.13.5.jar;C:\Users\31126\.m2\repository\org\apache\httpcomponents\httpasyncclient\4.1.5\httpasyncclient-4.1.5.jar;C:\Users\31126\.m2\repository\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar;C:\Users\31126\.m2\repository\org\apache\httpcomponents\httpcore-nio\4.4.16\httpcore-nio-4.4.16.jar;C:\Users\31126\.m2\repository\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar;C:\Users\31126\.m2\repository\io\prometheus\simpleclient\0.15.0\simpleclient-0.15.0.jar;C:\Users\31126\.m2\repository\io\prometheus\simpleclient_tracer_otel\0.15.0\simpleclient_tracer_otel-0.15.0.jar;C:\Users\31126\.m2\repository\io\prometheus\simpleclient_tracer_common\0.15.0\simpleclient_tracer_common-0.15.0.jar;C:\Users\31126\.m2\repository\io\prometheus\simpleclient_tracer_otel_agent\0.15.0\simpleclient_tracer_otel_agent-0.15.0.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-starter-zookeeper-discovery\3.1.4\spring-cloud-starter-zookeeper-discovery-3.1.4.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-starter-zookeeper\3.1.4\spring-cloud-starter-zookeeper-3.1.4.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-starter\3.1.7\spring-cloud-starter-3.1.7.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-context\3.1.7\spring-cloud-context-3.1.7.jar;C:\Users\31126\.m2\repository\org\springframework\security\spring-security-crypto\5.7.8\spring-security-crypto-5.7.8.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-commons\3.1.7\spring-cloud-commons-3.1.7.jar;C:\Users\31126\.m2\repository\org\springframework\security\spring-security-rsa\1.0.11.RELEASE\spring-security-rsa-1.0.11.RELEASE.jar;C:\Users\31126\.m2\repository\org\bouncycastle\bcpkix-jdk15on\1.69\bcpkix-jdk15on-1.69.jar;C:\Users\31126\.m2\repository\org\bouncycastle\bcprov-jdk15on\1.69\bcprov-jdk15on-1.69.jar;C:\Users\31126\.m2\repository\org\bouncycastle\bcutil-jdk15on\1.69\bcutil-jdk15on-1.69.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-zookeeper-core\3.1.4\spring-cloud-zookeeper-core-3.1.4.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-validation\2.7.12\spring-boot-starter-validation-2.7.12.jar;C:\Users\31126\.m2\repository\org\hibernate\validator\hibernate-validator\6.2.5.Final\hibernate-validator-6.2.5.Final.jar;C:\Users\31126\.m2\repository\org\jboss\logging\jboss-logging\3.4.3.Final\jboss-logging-3.4.3.Final.jar;C:\Users\31126\.m2\repository\com\fasterxml\classmate\1.5.1\classmate-1.5.1.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-zookeeper-discovery\3.1.4\spring-cloud-zookeeper-discovery-3.1.4.jar;C:\Users\31126\.m2\repository\org\apache\curator\curator-x-discovery\5.1.0\curator-x-discovery-5.1.0.jar;C:\Users\31126\.m2\repository\org\apache\curator\curator-recipes\5.1.0\curator-recipes-5.1.0.jar;C:\Users\31126\.m2\repository\org\apache\curator\curator-framework\5.1.0\curator-framework-5.1.0.jar;C:\Users\31126\.m2\repository\org\apache\curator\curator-client\5.1.0\curator-client-5.1.0.jar;C:\Users\31126\.m2\repository\org\apache\zookeeper\zookeeper\3.6.0\zookeeper-3.6.0.jar;C:\Users\31126\.m2\repository\org\apache\zookeeper\zookeeper-jute\3.6.0\zookeeper-jute-3.6.0.jar;C:\Users\31126\.m2\repository\org\apache\yetus\audience-annotations\0.5.0\audience-annotations-0.5.0.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-epoll\4.1.92.Final\netty-transport-native-epoll-4.1.92.Final.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-starter-loadbalancer\3.1.7\spring-cloud-starter-loadbalancer-3.1.7.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-loadbalancer\3.1.7\spring-cloud-loadbalancer-3.1.7.jar;C:\Users\31126\.m2\repository\io\projectreactor\addons\reactor-extra\3.4.10\reactor-extra-3.4.10.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-cache\2.7.12\spring-boot-starter-cache-2.7.12.jar;C:\Users\31126\.m2\repository\com\stoyanr\evictor\1.0.0\evictor-1.0.0.jar;C:\Users\31126\.m2\repository\plus\gaga\business-behavior-monitor-sdk\1.1\business-behavior-monitor-sdk-1.1.jar;C:\Users\31126\.m2\repository\ch\qos\logback\logback-classic\1.2.12\logback-classic-1.2.12.jar;C:\Users\31126\.m2\repository\ch\qos\logback\logback-core\1.2.12\logback-core-1.2.12.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-trigger\target\classes;C:\Users\31126\.m2\repository\org\springframework\spring-tx\5.3.27\spring-tx-5.3.27.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-types\target\classes;C:\Users\31126\.m2\repository\com\thoughtworks\xstream\xstream\1.4.10\xstream-1.4.10.jar;C:\Users\31126\.m2\repository\xmlpull\xmlpull\1.1.3.1\xmlpull-1.1.3.1.jar;C:\Users\31126\.m2\repository\xpp3\xpp3_min\1.1.4c\xpp3_min-1.1.4c.jar;C:\Users\31126\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar;C:\Users\31126\.m2\repository\xml-apis\xml-apis\1.0.b2\xml-apis-1.0.b2.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-domain\target\classes;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-api\target\classes;C:\Users\31126\.m2\repository\jakarta\validation\jakarta.validation-api\2.0.2\jakarta.validation-api-2.0.2.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-infrastructure\target\classes;E:\IDEA UL\IntelliJ IDEA 2023.3.4\lib\idea_rt.jar +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:java.library.path=D:\tools\javajdk\jak1.8\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\tools\javajdk\jdk21\bin;C:\Program Files\Common Files\Oracle\Java\javapath;D:\tools\Nodejs\node_global\node_modules;D:\tools\apache-maven-3.9.6\bin;E:\VMware\bin\;C:\Program Files\Microsoft MPI\Bin\;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files\Google\Chrome\Application;D:\tools\dirver;D:\微信小程序\微信web开发者工具\dll;%CATALINA_H%;%CATALINA_HOME%\bin;%CATALINA_HOME%\lib\servlet-api.jar;C:\Users\31126\.conda\envs\fenci\Lib\site-packages\pyqt5_tools;D:\pycharm\python\Lib\site-packages\pyqt5_tools;D:\Anaconda3-2022.10\envs\Py\Library\bin;D:\Anaconda3-2022.10\envs\Py\;D:\Anaconda3-2022.10\envs\Py\Scripts\;D:\pycharm\python\Scripts;D:\pycharm\python;D:\Anaconda3-2022.10;D:\Anaconda3-2022.10\Scripts\;D:\Anaconda3-2022.10\Library\bin\;E:\Wampserver\bin\php\php7.4.9;E:\Wampserver\bin\mysql\mysql5.7.31\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\tools\sqlmap;D:\pycharm\python\sqlmap-master;D:\Qt\6.4.0\mingw_64\bin;D:\pycharm\python\Lib\site-packages\PyQt5\Qt5\bin;D:\tools\Nodejs\node_global;D:\tools\Nodejs\node_cache;D:\tools\Git\cmd;D:\微信小程序\微信web开发者工具\dll;D:\tools\Xshell\;D:\tools\Nodejs;C:\Program Files\Docker\Docker\resources\bin;D:\tools\Apache24\bin;D:\Go\bin;D:\Go\bin;D:\Anaconda3-2022.10\conda\bin;E:\Wampserver\bin\mys;C:\Users\31126\go\bin;D:\JetBrains\GoLand 2024.1.6\bin;. +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:java.io.tmpdir=C:\Users\31126\AppData\Local\Temp\ +25-01-17.19:22:36.285 [main ] INFO ZooKeeper - Client environment:java.compiler= +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:os.name=Windows 11 +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:os.arch=amd64 +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:os.version=10.0 +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:user.name=zhaoyongfeng +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:user.home=C:\Users\31126 +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:user.dir=C:\Users\31126\Desktop\bigmarket-lite +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:os.memory.free=402MB +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:os.memory.max=3609MB +25-01-17.19:22:36.286 [main ] INFO ZooKeeper - Client environment:os.memory.total=452MB +25-01-17.19:22:36.289 [main ] INFO ZooKeeper - Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=18000 watcher=org.apache.curator.ConnectionState@22d8f4ed +25-01-17.19:22:36.292 [main ] INFO X509Util - Setting -D jdk.tls.rejectClientInitiatedRenegotiation=true to disable client-initiated TLS renegotiation +25-01-17.19:22:36.301 [main ] INFO ClientCnxnSocket - jute.maxbuffer value is 1048575 Bytes +25-01-17.19:22:36.305 [main ] INFO ClientCnxn - zookeeper.request.timeout value is 0. feature enabled=false +25-01-17.19:22:36.312 [main-SendThread(127.0.0.1:2181)] INFO ClientCnxn - Opening socket connection to server 127.0.0.1/127.0.0.1:2181. +25-01-17.19:22:36.313 [main-SendThread(127.0.0.1:2181)] INFO ClientCnxn - SASL config status: Will not attempt to authenticate using SASL (unknown error) +25-01-17.19:22:36.315 [main-SendThread(127.0.0.1:2181)] INFO ClientCnxn - Socket connection established, initiating session, client: /127.0.0.1:49487, server: 127.0.0.1/127.0.0.1:2181 +25-01-17.19:22:36.316 [main ] INFO CuratorFrameworkImpl - Default schema +25-01-17.19:22:36.326 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'zookeeperClient' of type [org.apache.curator.framework.imps.CuratorFrameworkImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:22:36.346 [main-SendThread(127.0.0.1:2181)] INFO ClientCnxn - Session establishment complete on server 127.0.0.1/127.0.0.1:2181, session id = 0x10000002cfa0000, negotiated timeout = 18000 +25-01-17.19:22:36.353 [main-EventThread] INFO ConnectionStateManager - State change: CONNECTED +25-01-17.19:22:36.370 [main-EventThread] INFO EnsembleTracker - New config event received: {} +25-01-17.19:22:36.370 [main-EventThread] INFO EnsembleTracker - New config event received: {} +25-01-17.19:22:36.399 [main ] INFO DCCValueBeanFactory - DCC 节点监听 base node /big-market-dcc/config not absent create new done! +25-01-17.19:22:36.409 [main ] INFO Compatibility - Using org.apache.zookeeper.server.quorum.MultipleAddresses +25-01-17.19:22:36.891 [main ] INFO TomcatWebServer - Tomcat initialized with port(s): 8091 (http) +25-01-17.19:22:36.904 [main ] INFO Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8091"] +25-01-17.19:22:36.904 [main ] INFO StandardService - Starting service [Tomcat] +25-01-17.19:22:36.904 [main ] INFO StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.75] +25-01-17.19:22:37.165 [main ] INFO [/] - Initializing Spring embedded WebApplicationContext +25-01-17.19:22:37.165 [main ] INFO ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 6441 ms +25-01-17.19:22:37.826 [main ] INFO DubboConfigBeanInitializer - loading dubbo config beans ... +25-01-17.19:22:37.830 [main ] INFO DubboConfigBeanInitializer - dubbo config beans are loaded. +25-01-17.19:22:37.885 [main ] INFO DefaultApplicationDeployer - [DUBBO] No value is configured in the registry, the DynamicConfigurationFactory extension[name : nacos] supports as the config center, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:37.886 [main ] INFO DefaultApplicationDeployer - [DUBBO] The registry[] will be used as the config center, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:37.891 [main ] INFO DefaultApplicationDeployer - [DUBBO] use registry as config-center: , dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:37.956 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +25-01-17.19:22:37.956 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +25-01-17.19:22:42.869 [main ] WARN ConfigurationUtils - [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:42.869 [main ] WARN ConfigurationUtils - [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:42.920 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] has been initialized!, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:42.923 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] has been initialized!, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:42.934 [main ] INFO DefaultApplicationDeployer - [DUBBO] No value is configured in the registry, the MetadataReportFactory extension[name : nacos] supports as the metadata center, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:42.934 [main ] INFO DefaultApplicationDeployer - [DUBBO] The registry[] will be used as the metadata center, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:42.940 [main ] INFO DefaultApplicationDeployer - [DUBBO] use registry as metadata-center: , dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:43.058 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +25-01-17.19:22:43.058 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +25-01-17.19:22:43.058 [main ] INFO DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](big-market) has been initialized!, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:43.230 [main ] INFO Version - Redisson 3.26.0 +25-01-17.19:22:44.679 [redisson-netty-1-4] INFO ConnectionsHolder - 1 connections initialized for 127.0.0.1/127.0.0.1:16379 +25-01-17.19:22:44.700 [redisson-netty-1-13] INFO ConnectionsHolder - 5 connections initialized for 127.0.0.1/127.0.0.1:16379 +25-01-17.19:22:45.852 [main ] INFO DCCValueBeanFactory - DCC 节点监听 创建节点 /big-market-dcc/config/degradeSwitch +25-01-17.19:22:52.892 [main ] WARN LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +25-01-17.19:22:52.912 [main ] INFO EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +25-01-17.19:22:53.192 [main ] INFO Http11NioProtocol - Starting ProtocolHandler ["http-nio-8091"] +25-01-17.19:22:53.205 [main ] INFO TomcatWebServer - Tomcat started on port(s): 8091 (http) with context path '' +25-01-17.19:22:54.815 [main ] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] +25-01-17.19:22:54.852 [main ] INFO CachingConnectionFactory - Created new connection: rabbitConnectionFactory#595184d8:0/SimpleConnection@122ea8dc [delegate=amqp://admin@127.0.0.1:5672/, localPort= 49603] +25-01-17.19:22:54.948 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] is starting., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:54.949 [main ] INFO DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](big-market) is starting., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.030 [scheduling-1 ] INFO HikariDataSource - Retail_HikariCP - Starting... +25-01-17.19:22:55.083 [main ] WARN ServiceConfig - [DUBBO] Use random available port(20880) for protocol dubbo, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.187 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service cn.bugstack.trigger.api.IRaffleActivityService to local registry url : injvm://127.0.0.1/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.188 [main ] INFO ServiceConfig - [DUBBO] Register dubbo service cn.bugstack.trigger.api.IRaffleActivityService url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0 to registry 127.0.0.1:8848, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.191 [main ] INFO QosProtocolWrapper - [DUBBO] qos won't be started because it is disabled. Please check dubbo.application.qos.enable is configured either in system property, dubbo.properties or XML/spring-boot configuration., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.310 [scheduling-1 ] INFO HikariDataSource - Retail_HikariCP - Start completed. +25-01-17.19:22:55.344 [scheduling-1 ] INFO HikariDataSource - Retail_HikariCP - Starting... +25-01-17.19:22:55.356 [main ] INFO AbstractServer - [DUBBO] Start NettyServer bind /0.0.0.0:20880, export /192.168.5.1:20880, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.365 [scheduling-1 ] INFO HikariDataSource - Retail_HikariCP - Start completed. +25-01-17.19:22:55.431 [main ] INFO MetaCacheManager - [DUBBO] Successfully loaded mapping cache from file .metadata.nacos127.0.0.1:8848, entries 0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.467 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +25-01-17.19:22:55.467 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +25-01-17.19:22:55.623 [main ] INFO MappingCacheManager - [DUBBO] Successfully loaded mapping cache from file .mapping, entries 0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.645 [main ] INFO MigrationRuleListener - [DUBBO] Listening for migration rules on dataId big-market.migration, group DUBBO_SERVICEDISCOVERY_MIGRATION, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.659 [main ] INFO ServiceConfig - [DUBBO] Register dubbo service cn.bugstack.trigger.api.IRaffleActivityService url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0 to registry 127.0.0.1:8848, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.660 [main ] INFO QosProtocolWrapper - [DUBBO] qos won't be started because it is disabled. Please check dubbo.application.qos.enable is configured either in system property, dubbo.properties or XML/spring-boot configuration., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.681 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +25-01-17.19:22:55.682 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +25-01-17.19:22:55.812 [main ] INFO NacosRegistry - [DUBBO] Register: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.832 [main ] INFO NacosRegistry - [DUBBO] Subscribe: provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.874 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:55.885 [DubboSaveMetadataReport-thread-1] INFO NacosMetadataReport - [DUBBO] store provider metadata. Identifier : org.apache.dubbo.metadata.report.identifier.MetadataIdentifier@3be9e72b; definition: FullServiceDefinition{parameters=org.apache.dubbo.common.url.component.URLParam$URLParamMap@16144217} ServiceDefinition [canonicalName=cn.bugstack.trigger.api.IRaffleActivityService, codeSource=file:/C:/Users/31126/Desktop/bigmarket-lite/bigmarket-api/target/classes/, methods=[MethodDefinition [name=draw, parameterTypes=[cn.bugstack.trigger.api.dto.ActivityDrawRequestDTO], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=armory, parameterTypes=[java.lang.Long], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=queryUserActivityAccount, parameterTypes=[cn.bugstack.trigger.api.dto.UserActivityAccountRequestDTO], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=calendarSignRebate, parameterTypes=[java.lang.String], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=isCalendarSignRebate, parameterTypes=[java.lang.String], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=queryUserCreditAccount, parameterTypes=[java.lang.String], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=querySkuProductListByActivityId, parameterTypes=[java.lang.Long], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=creditPayExchangeSku, parameterTypes=[cn.bugstack.trigger.api.dto.SkuProductShopCartRequestDTO], returnType=cn.bugstack.trigger.api.response.Response]]], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.083 [main ] INFO ServiceConfig - [DUBBO] Successfully registered interface application mapping for service cn.bugstack.trigger.api.IRaffleActivityService:1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.103 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service cn.bugstack.trigger.api.IRaffleStrategyService to local registry url : injvm://127.0.0.1/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.103 [main ] INFO ServiceConfig - [DUBBO] Register dubbo service cn.bugstack.trigger.api.IRaffleStrategyService url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0 to registry 127.0.0.1:8848, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.116 [main ] INFO ServiceConfig - [DUBBO] Register dubbo service cn.bugstack.trigger.api.IRaffleStrategyService url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0 to registry 127.0.0.1:8848, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.314 [main ] INFO NacosRegistry - [DUBBO] Register: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.323 [main ] INFO NacosRegistry - [DUBBO] Subscribe: provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.340 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.341 [DubboSaveMetadataReport-thread-1] INFO NacosMetadataReport - [DUBBO] store provider metadata. Identifier : org.apache.dubbo.metadata.report.identifier.MetadataIdentifier@2980a80f; definition: FullServiceDefinition{parameters=org.apache.dubbo.common.url.component.URLParam$URLParamMap@25dc2b36} ServiceDefinition [canonicalName=cn.bugstack.trigger.api.IRaffleStrategyService, codeSource=file:/C:/Users/31126/Desktop/bigmarket-lite/bigmarket-api/target/classes/, methods=[MethodDefinition [name=randomRaffle, parameterTypes=[cn.bugstack.trigger.api.dto.RaffleStrategyRequestDTO], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=strategyArmory, parameterTypes=[java.lang.Long], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=queryRaffleStrategyRuleWeight, parameterTypes=[cn.bugstack.trigger.api.dto.RaffleStrategyRuleWeightRequestDTO], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=queryRaffleAwardList, parameterTypes=[cn.bugstack.trigger.api.dto.RaffleAwardListRequestDTO], returnType=cn.bugstack.trigger.api.response.Response]]], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.363 [main ] INFO ServiceConfig - [DUBBO] Successfully registered interface application mapping for service cn.bugstack.trigger.api.IRaffleStrategyService:1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.363 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] is starting., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.363 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] has started., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.363 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] has started., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.365 [main ] INFO ConfigurableMetadataServiceExporter - [DUBBO] Metadata Service Port hasn't been set will use default protocol defined in protocols., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.365 [main ] INFO ConfigurableMetadataServiceExporter - [DUBBO] Using dubbo protocol to export metadata service on port 20880, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.415 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service org.apache.dubbo.metadata.MetadataService to local registry url : injvm://127.0.0.1/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.416 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service org.apache.dubbo.metadata.MetadataService to url dubbo://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.437 [main ] INFO MigrationRuleListener - [DUBBO] Listening for migration rules on dataId big-market.migration, group DUBBO_SERVICEDISCOVERY_MIGRATION, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.444 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service org.apache.dubbo.metadata.MetadataService to url dubbo://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.637 [main ] INFO NacosRegistry - [DUBBO] Subscribe: provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.644 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.645 [main ] INFO ServiceConfig - [DUBBO] Successfully registered interface application mapping for service big-market/org.apache.dubbo.metadata.MetadataService:1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.645 [main ] INFO ConfigurableMetadataServiceExporter - [DUBBO] The MetadataService exports urls : [dubbo://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.646 [main ] INFO ServiceInstanceMetadataUtils - [DUBBO] Start registering instance address to registry., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.660 [main ] INFO MetadataInfo - [DUBBO] metadata revision changed: null -> 5fd13db71134343ede664282178f635f, app: big-market, services: 2, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.670 [main ] INFO DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](big-market) is ready., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:22:56.678 [main ] INFO Application - Started Application in 28.186 seconds (JVM running for 30.424) +25-01-17.19:22:58.703 [RMI TCP Connection(5)-192.168.157.1] INFO [/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +25-01-17.19:22:58.703 [RMI TCP Connection(5)-192.168.157.1] INFO DispatcherServlet - Initializing Servlet 'dispatcherServlet' +25-01-17.19:22:58.707 [RMI TCP Connection(5)-192.168.157.1] INFO DispatcherServlet - Completed initialization in 4 ms +25-01-17.19:23:11.292 [Thread-27 ] WARN NotifyCenter - [NotifyCenter] Start destroying Publisher +25-01-17.19:23:11.292 [DubboShutdownHook] INFO DubboShutdownHook - [DUBBO] Run shutdown hook now., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.292 [Thread-22 ] WARN HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +25-01-17.19:23:11.292 [DubboShutdownHook] INFO FrameworkModel - [DUBBO] Reset global default application from Dubbo Application[1.1](big-market) to null, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.293 [Thread-27 ] WARN NotifyCenter - [NotifyCenter] Destruction of the end +25-01-17.19:23:11.293 [DubboShutdownHook] INFO DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](big-market) is stopping., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.293 [DubboShutdownHook] INFO RegistryManager - [DUBBO] Close all registries [nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=nacos-registry&application=big-market&application.version=1.0&dubbo=2.0.2&interface=org.apache.dubbo.registry.RegistryService&pid=24720&qos.enable=false&release=3.0.9, nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=nacos-registry&application=big-market&application.version=1.0&dubbo=2.0.2&interface=org.apache.dubbo.registry.RegistryService&pid=24720&qos.enable=false&release=3.0.9], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.293 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy registry:nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=nacos-registry&application=big-market&application.version=1.0&dubbo=2.0.2&interface=org.apache.dubbo.registry.RegistryService&pid=24720&qos.enable=false&release=3.0.9, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.293 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unregister: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.293 [Thread-22 ] WARN HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +25-01-17.19:23:11.294 [SpringApplicationShutdownHook] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] is stopping., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.295 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.296 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.297 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.297 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.297 [SpringApplicationShutdownHook] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] has stopped., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.298 [SpringApplicationShutdownHook] INFO DubboSpringInitializer - [DUBBO] Unbind Dubbo Module[1.1.1] from spring container: org.springframework.beans.factory.support.DefaultListableBeanFactory@f316aeb, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.300 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unregister url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.300 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unregister: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. +25-01-17.19:23:11.304 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unregister url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.305 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unsubscribe: provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.305 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unsubscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.305 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unsubscribe: provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.305 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unsubscribe url provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.305 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unsubscribe: provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.305 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unsubscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.306 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. +25-01-17.19:23:11.307 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. +25-01-17.19:23:11.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#3-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. +25-01-17.19:23:11.316 [DubboShutdownHook] INFO DubboProtocol - [DUBBO] Destroying protocol [DubboProtocol] ..., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.316 [DubboShutdownHook] INFO DubboProtocol - [DUBBO] Closing dubbo server: /192.168.5.1:20880, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.317 [DubboShutdownHook] INFO AbstractServer - [DUBBO] Close NettyServer bind /0.0.0.0:20880, export /192.168.5.1:20880, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:11.872 [Dubbo-framework-registry-notification-0-thread-1] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:12.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. +25-01-17.19:23:12.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. +25-01-17.19:23:12.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#3-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. +25-01-17.19:23:12.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. +25-01-17.19:23:13.209 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:23:13.210 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:23:13.210 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:23:13.210 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:23:13.261 [Curator-Framework-0] INFO CuratorFrameworkImpl - backgroundOperationsLoop exiting +25-01-17.19:23:13.380 [DubboShutdownHook] INFO DubboProtocol - [DUBBO] Unexport service: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112976087&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.380 [DubboShutdownHook] INFO DubboProtocol - [DUBBO] Unexport service: dubbo://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.380 [DubboShutdownHook] INFO DubboProtocol - [DUBBO] Unexport service: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=24720&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737112975077&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.380 [DubboShutdownHook] INFO InjvmProtocol - [DUBBO] Unexport service: injvm://127.0.0.1/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=24720&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&side=provider&threadpool=cached&threads=100×tamp=1737112976391&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.381 [DubboShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.381 [SpringApplicationShutdownHook] INFO ZooKeeper - Session: 0x10000002cfa0000 closed +25-01-17.19:23:13.381 [main-EventThread] INFO ClientCnxn - EventThread shut down for session: 0x10000002cfa0000 +25-01-17.19:23:13.381 [DubboShutdownHook] INFO Server - [DUBBO] qos-server stopped., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] INFO Server - [DUBBO] qos-server stopped., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] is stopping., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:23:13.382 [DubboShutdownHook] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] has stopped., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:02.998 [main ] INFO WelcomeLogoApplicationListener - -The last packet successfully received from the server was 575,620 milliseconds ago. The last packet sent successfully to the server was 575,621 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.612 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@38332aa8 (Communications link failure + :: Dubbo Spring Boot (v3.0.9) : https://github.com/apache/dubbo-spring-boot-project + :: Dubbo (v3.0.9) : https://github.com/apache/dubbo + :: Discuss group : dev@dubbo.apache.org -The last packet successfully received from the server was 574,056 milliseconds ago. The last packet sent successfully to the server was 574,057 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.613 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@b163b9b (Communications link failure - -The last packet successfully received from the server was 574,799 milliseconds ago. The last packet sent successfully to the server was 574,800 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.613 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@510113c (Communications link failure - -The last packet successfully received from the server was 572,683 milliseconds ago. The last packet sent successfully to the server was 572,684 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.613 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2bfd16ee (Communications link failure - -The last packet successfully received from the server was 569,997 milliseconds ago. The last packet sent successfully to the server was 569,998 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.613 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@62c126d3 (Communications link failure - -The last packet successfully received from the server was 571,637 milliseconds ago. The last packet sent successfully to the server was 571,637 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.614 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@61046692 (Communications link failure - -The last packet successfully received from the server was 569,903 milliseconds ago. The last packet sent successfully to the server was 569,904 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.614 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@72e2654e (Communications link failure - -The last packet successfully received from the server was 568,124 milliseconds ago. The last packet sent successfully to the server was 568,125 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.614 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@40c37670 (Communications link failure - -The last packet successfully received from the server was 568,485 milliseconds ago. The last packet sent successfully to the server was 568,485 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.614 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@74ce7fec (Communications link failure - -The last packet successfully received from the server was 567,035 milliseconds ago. The last packet sent successfully to the server was 567,036 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.615 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4ebe580d (Communications link failure - -The last packet successfully received from the server was 564,149 milliseconds ago. The last packet sent successfully to the server was 564,149 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.615 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@455f16a5 (Communications link failure - -The last packet successfully received from the server was 564,830 milliseconds ago. The last packet sent successfully to the server was 564,831 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.616 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@440bd158 (Communications link failure - -The last packet successfully received from the server was 562,918 milliseconds ago. The last packet sent successfully to the server was 562,919 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.616 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4424e438 (Communications link failure - -The last packet successfully received from the server was 562,650 milliseconds ago. The last packet sent successfully to the server was 562,651 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.619 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@433df72a (Communications link failure - -The last packet successfully received from the server was 561,420 milliseconds ago. The last packet sent successfully to the server was 561,421 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.619 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1f0f6a3a (Communications link failure - -The last packet successfully received from the server was 559,969 milliseconds ago. The last packet sent successfully to the server was 559,969 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.621 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7f7fb170 (Communications link failure - -The last packet successfully received from the server was 555,445 milliseconds ago. The last packet sent successfully to the server was 555,445 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.621 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2258bd40 (Communications link failure - -The last packet successfully received from the server was 546,731 milliseconds ago. The last packet sent successfully to the server was 546,731 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.623 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4aade998 (Communications link failure - -The last packet successfully received from the server was 553,179 milliseconds ago. The last packet sent successfully to the server was 553,179 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.623 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@152de98f (Communications link failure - -The last packet successfully received from the server was 546,562 milliseconds ago. The last packet sent successfully to the server was 546,562 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.625 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@764bda36 (Communications link failure - -The last packet successfully received from the server was 545,128 milliseconds ago. The last packet sent successfully to the server was 545,129 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.625 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@50367084 (Communications link failure - -The last packet successfully received from the server was 547,984 milliseconds ago. The last packet sent successfully to the server was 547,985 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.626 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1271207f (Communications link failure - -The last packet successfully received from the server was 540,642 milliseconds ago. The last packet sent successfully to the server was 540,643 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.626 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7c1e590f (Communications link failure - -The last packet successfully received from the server was 544,469 milliseconds ago. The last packet sent successfully to the server was 544,470 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.628 [pool-3-thread-17] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@75a43dcc (Communications link failure - -The last packet successfully received from the server was 539,149 milliseconds ago. The last packet sent successfully to the server was 539,149 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:06.628 [pool-3-thread-18] WARN PoolBase - Retail_HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7e6883cd (Communications link failure - -The last packet successfully received from the server was 543,366 milliseconds ago. The last packet sent successfully to the server was 543,367 milliseconds ago.). Possibly consider using a shorter maxLifetime value. -24-12-26.21:58:08.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-4] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:08.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:10.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-4] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:10.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-4] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:12.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-4] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:12.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-4] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:14.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:16.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-4] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:19.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-4] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:19.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-4] INFO SimpleMessageListenerContainer - Restarting Consumer@6063d2fa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:19.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-5] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:21.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:21.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] INFO SimpleMessageListenerContainer - Restarting Consumer@6891225c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:21.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-5] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:21.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:23.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-4] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:23.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-4] INFO SimpleMessageListenerContainer - Restarting Consumer@3faab3fc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:23.448 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-5] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:23.448 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:25.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-5] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:25.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-5] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:27.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-5] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:29.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:32.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-5] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:32.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-5] INFO SimpleMessageListenerContainer - Restarting Consumer@4021996: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:32.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-6] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:34.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-5] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:34.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-5] INFO SimpleMessageListenerContainer - Restarting Consumer@662a6617: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:34.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-6] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:34.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-6] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:36.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:36.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] INFO SimpleMessageListenerContainer - Restarting Consumer@f1697bc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:36.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-6] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:36.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-6] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:38.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:40.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:40.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-6] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:42.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:43.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-6] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:43.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-6] INFO SimpleMessageListenerContainer - Restarting Consumer@4612d313: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:44.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-7] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:46.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-7] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:46.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-7] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:47.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-6] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:47.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-6] INFO SimpleMessageListenerContainer - Restarting Consumer@362568a3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:48.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-7] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:49.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:49.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] INFO SimpleMessageListenerContainer - Restarting Consumer@7e7db20e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:50.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:50.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-7] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:52.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-7] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:52.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:53.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-7] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:58:53.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-7] INFO SimpleMessageListenerContainer - Restarting Consumer@2a7f2401: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:58:54.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-8] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:56.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-8] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:58:56.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:58:58.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-8] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:00.001 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:59:00.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-7] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:00.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-7] INFO SimpleMessageListenerContainer - Restarting Consumer@4de5fc13: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:01.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-8] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:03.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-8] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:03.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-8] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.21:59:03.293 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.21:59:04.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:04.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] INFO SimpleMessageListenerContainer - Restarting Consumer@21feae44: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:05.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:06.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-8] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:06.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-8] INFO SimpleMessageListenerContainer - Restarting Consumer@731e8252: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.21:59:07.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:07.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-9] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:09.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-9] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:09.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:10.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-8] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:10.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-8] INFO SimpleMessageListenerContainer - Restarting Consumer@28237ab1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:11.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-9] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:13.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-9] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:13.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-9] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:15.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-9] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:16.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:16.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] INFO SimpleMessageListenerContainer - Restarting Consumer@159d5798: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:17.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:19.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:19.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:20.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-9] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:20.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-9] INFO SimpleMessageListenerContainer - Restarting Consumer@37f0771a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:21.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-10] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:22.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-9] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:22.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-9] INFO SimpleMessageListenerContainer - Restarting Consumer@42c4a6a9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:23.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-10] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:23.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-10] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:25.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-10] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:25.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-10] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:26.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:26.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] INFO SimpleMessageListenerContainer - Restarting Consumer@184f1413: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:27.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:29.445 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:29.445 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-10] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:31.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:32.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-10] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:32.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-10] INFO SimpleMessageListenerContainer - Restarting Consumer@124cf4a3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:33.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-11] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:35.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-11] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:35.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-11] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:36.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-10] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:36.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-10] INFO SimpleMessageListenerContainer - Restarting Consumer@5f3fba96: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:37.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-11] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:38.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:38.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] INFO SimpleMessageListenerContainer - Restarting Consumer@690a5a1c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:39.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-11] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:39.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:41.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:41.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-11] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:42.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-11] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:42.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-11] INFO SimpleMessageListenerContainer - Restarting Consumer@56119a9c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:43.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-12] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:45.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-12] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:45.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:47.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-12] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:48.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-11] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:48.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-11] INFO SimpleMessageListenerContainer - Restarting Consumer@4b00819d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:49.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-12] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:51.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-12] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:51.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-12] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:52.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:52.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] INFO SimpleMessageListenerContainer - Restarting Consumer@732cbe68: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:53.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:54.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-12] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:54.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-12] INFO SimpleMessageListenerContainer - Restarting Consumer@77befb0b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:55.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:55.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-13] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:57.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-13] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.21:59:57.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.21:59:58.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-12] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.21:59:58.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-12] INFO SimpleMessageListenerContainer - Restarting Consumer@5a13d0f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.21:59:59.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-13] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:00:01.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-13] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:01.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-13] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:00:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:00:04.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-13] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:05.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:05.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] INFO SimpleMessageListenerContainer - Restarting Consumer@c0bd765: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:06.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:00:08.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:08.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:09.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-13] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:09.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-13] INFO SimpleMessageListenerContainer - Restarting Consumer@34926b65: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:10.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-14] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:11.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-13] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:11.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-13] INFO SimpleMessageListenerContainer - Restarting Consumer@508d1880: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:12.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-14] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:12.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-14] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:14.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-14] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:14.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-14] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:15.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:15.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] INFO SimpleMessageListenerContainer - Restarting Consumer@6c46f324: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:16.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:18.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-14] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:18.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:20.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:21.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-14] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:21.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-14] INFO SimpleMessageListenerContainer - Restarting Consumer@67d9b2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:22.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-15] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:24.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-15] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:24.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-15] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:25.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-14] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:25.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-14] INFO SimpleMessageListenerContainer - Restarting Consumer@66807570: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:26.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-15] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:27.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:27.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] INFO SimpleMessageListenerContainer - Restarting Consumer@32b434fb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:28.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-15] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:28.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:30.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:30.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-15] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:31.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-15] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:31.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-15] INFO SimpleMessageListenerContainer - Restarting Consumer@1f197360: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:32.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-16] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:34.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:34.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-16] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:36.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-16] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:37.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-15] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:37.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-15] INFO SimpleMessageListenerContainer - Restarting Consumer@77cef3a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:38.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-16] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:40.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-16] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:40.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-16] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:41.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:41.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] INFO SimpleMessageListenerContainer - Restarting Consumer@10e1c196: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:42.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:43.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-16] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:43.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-16] INFO SimpleMessageListenerContainer - Restarting Consumer@16c10fac: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:44.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:44.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-17] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:46.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-17] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:46.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:47.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-16] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:47.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-16] INFO SimpleMessageListenerContainer - Restarting Consumer@5a1c233a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:48.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-17] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:50.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-17] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:50.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-17] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:52.796 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-17] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:53.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:53.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] INFO SimpleMessageListenerContainer - Restarting Consumer@38295f27: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:54.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:56.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:00:56.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:57.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-17] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:57.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-17] INFO SimpleMessageListenerContainer - Restarting Consumer@69b8036e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:00:58.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-18] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:00:59.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-17] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:00:59.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-17] INFO SimpleMessageListenerContainer - Restarting Consumer@102faf43: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:00.012 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:01:00.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-18] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:00.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-18] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:02.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-18] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:02.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-18] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:03.298 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:01:03.298 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:01:04.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:04.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] INFO SimpleMessageListenerContainer - Restarting Consumer@6ce29505: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:05.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:01:07.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-18] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:07.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:09.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:10.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-18] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:10.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-18] INFO SimpleMessageListenerContainer - Restarting Consumer@1da6ea9e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:11.118 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-19] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:13.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-19] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:13.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-19] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:14.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-18] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:14.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-18] INFO SimpleMessageListenerContainer - Restarting Consumer@371eb3a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:15.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-19] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:16.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:16.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] INFO SimpleMessageListenerContainer - Restarting Consumer@88c02b2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:17.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-19] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:17.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:19.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:19.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-19] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:20.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-19] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:20.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-19] INFO SimpleMessageListenerContainer - Restarting Consumer@25d624b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:21.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-20] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:23.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-20] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:23.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:25.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-20] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:26.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-19] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:26.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-19] INFO SimpleMessageListenerContainer - Restarting Consumer@3201cc05: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:27.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-20] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:29.403 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-20] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:29.403 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-20] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:30.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:30.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] INFO SimpleMessageListenerContainer - Restarting Consumer@76bcd7c1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:31.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:32.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-20] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:32.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-20] INFO SimpleMessageListenerContainer - Restarting Consumer@574df484: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:33.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:33.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-21] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:35.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-21] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:35.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:36.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-20] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:36.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-20] INFO SimpleMessageListenerContainer - Restarting Consumer@725c1fc5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:37.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-21] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:39.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-21] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:39.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-21] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:41.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-21] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:42.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:42.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] INFO SimpleMessageListenerContainer - Restarting Consumer@5a75226e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:43.667 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:45.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:45.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:46.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-21] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:46.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-21] INFO SimpleMessageListenerContainer - Restarting Consumer@4ee7dcf6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:47.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-22] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:48.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-21] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:48.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-21] INFO SimpleMessageListenerContainer - Restarting Consumer@59958f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:49.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-22] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:49.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-22] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:51.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-22] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:51.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-22] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:52.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:52.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] INFO SimpleMessageListenerContainer - Restarting Consumer@4abce27c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:53.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:55.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-22] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:55.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:01:57.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:01:58.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-22] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:01:58.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-22] INFO SimpleMessageListenerContainer - Restarting Consumer@6d8895e1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:01:59.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-23] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:00.014 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:02:01.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-23] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:01.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-23] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:02.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-22] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:02.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-22] INFO SimpleMessageListenerContainer - Restarting Consumer@4976a7c7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:03.299 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:02:03.299 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:02:03.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-23] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:04.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:04.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] INFO SimpleMessageListenerContainer - Restarting Consumer@52ae462a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:05.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-23] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:05.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:02:08.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:08.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-23] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:09.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-23] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:09.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-23] INFO SimpleMessageListenerContainer - Restarting Consumer@16b6a5e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:10.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-24] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:12.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-24] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:12.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:14.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-24] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:15.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-23] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:15.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-23] INFO SimpleMessageListenerContainer - Restarting Consumer@d23bd80: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:16.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-24] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:18.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-24] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:18.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-24] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:19.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:19.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] INFO SimpleMessageListenerContainer - Restarting Consumer@59b9f334: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:20.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:21.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-24] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:21.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-24] INFO SimpleMessageListenerContainer - Restarting Consumer@60a10853: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:22.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:22.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-25] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:24.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-25] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:24.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:25.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-24] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:25.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-24] INFO SimpleMessageListenerContainer - Restarting Consumer@1ae5b1b0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:26.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-25] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:28.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-25] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:28.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-25] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:30.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-25] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:31.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:31.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] INFO SimpleMessageListenerContainer - Restarting Consumer@7d0bb0b3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:32.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:34.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:34.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:35.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-25] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:35.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-25] INFO SimpleMessageListenerContainer - Restarting Consumer@68b73485: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:36.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-26] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:37.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-25] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:37.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-25] INFO SimpleMessageListenerContainer - Restarting Consumer@44e97e62: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:38.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-26] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:38.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-26] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:40.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-26] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:40.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-26] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:41.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:41.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] INFO SimpleMessageListenerContainer - Restarting Consumer@32ce509b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:42.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:44.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-26] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:44.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:46.649 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:47.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-26] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:47.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-26] INFO SimpleMessageListenerContainer - Restarting Consumer@7656da37: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:48.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-27] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:50.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-27] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:50.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-27] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:51.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-26] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:51.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-26] INFO SimpleMessageListenerContainer - Restarting Consumer@5275881f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:52.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-27] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:53.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:53.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] INFO SimpleMessageListenerContainer - Restarting Consumer@397de8c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:54.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-27] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:54.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:56.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-27] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:02:56.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:02:57.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-27] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:02:57.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-27] INFO SimpleMessageListenerContainer - Restarting Consumer@11b7bb17: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:02:58.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-28] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:00.004 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:03:00.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-28] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:00.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:02.896 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-28] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:03.292 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:03:03.293 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:03:03.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-27] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:03.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-27] INFO SimpleMessageListenerContainer - Restarting Consumer@22508c61: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:04.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-28] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:03:06.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-28] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:06.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-28] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:08.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:08.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] INFO SimpleMessageListenerContainer - Restarting Consumer@244082fd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:09.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:10.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-28] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:10.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-28] INFO SimpleMessageListenerContainer - Restarting Consumer@335aa5bd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:11.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:11.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-29] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:13.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-29] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:13.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:14.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-28] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:14.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-28] INFO SimpleMessageListenerContainer - Restarting Consumer@44f732bd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:15.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-29] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:17.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-29] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:17.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-29] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:19.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-29] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:20.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:20.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] INFO SimpleMessageListenerContainer - Restarting Consumer@4e46c0d5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:21.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:23.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:23.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:24.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-29] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:24.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-29] INFO SimpleMessageListenerContainer - Restarting Consumer@2e11b81d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:25.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-30] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:26.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-29] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:26.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-29] INFO SimpleMessageListenerContainer - Restarting Consumer@4941016a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:27.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-30] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:27.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-30] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:29.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-30] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:29.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-30] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:30.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:30.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] INFO SimpleMessageListenerContainer - Restarting Consumer@3e1872eb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:31.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:33.443 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:33.443 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-30] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:35.497 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:36.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-30] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:36.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-30] INFO SimpleMessageListenerContainer - Restarting Consumer@17209414: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:37.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-31] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:39.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-31] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:39.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-31] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:40.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-30] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:40.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-30] INFO SimpleMessageListenerContainer - Restarting Consumer@79563e4f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:41.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-31] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:42.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:42.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] INFO SimpleMessageListenerContainer - Restarting Consumer@545e834c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:43.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-31] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:43.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:45.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:45.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-31] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:46.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-31] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:46.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-31] INFO SimpleMessageListenerContainer - Restarting Consumer@2f29cca2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:47.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-32] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:49.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-32] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:49.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:51.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-32] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:52.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-31] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:52.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-31] INFO SimpleMessageListenerContainer - Restarting Consumer@3f93691: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:53.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-32] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:55.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-32] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:55.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-32] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:56.932 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:56.932 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] INFO SimpleMessageListenerContainer - Restarting Consumer@4f2b5a7d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:57.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:03:58.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-32] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:03:58.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-32] INFO SimpleMessageListenerContainer - Restarting Consumer@5806e8e7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:03:59.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:03:59.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-33] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:04:01.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:01.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-33] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:02.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-32] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:02.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-32] INFO SimpleMessageListenerContainer - Restarting Consumer@6dc60d92: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:04:03.300 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:04:03.963 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-33] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:05.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-33] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:05.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-33] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:04:08.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-33] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:09.089 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:09.089 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] INFO SimpleMessageListenerContainer - Restarting Consumer@44ca94c7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:10.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:12.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:12.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:13.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-33] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:13.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-33] INFO SimpleMessageListenerContainer - Restarting Consumer@7dc1011f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:14.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-34] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:15.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-33] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:15.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-33] INFO SimpleMessageListenerContainer - Restarting Consumer@2c0fa290: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:16.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-34] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:16.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-34] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:18.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-34] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:18.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-34] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:19.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:19.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] INFO SimpleMessageListenerContainer - Restarting Consumer@5ea818ef: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:20.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:22.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-34] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:22.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:24.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:25.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-34] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:25.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-34] INFO SimpleMessageListenerContainer - Restarting Consumer@588bc343: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:26.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-35] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:28.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-35] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:28.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-35] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:29.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-34] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:29.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-34] INFO SimpleMessageListenerContainer - Restarting Consumer@c59d637: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:30.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-35] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:31.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:31.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] INFO SimpleMessageListenerContainer - Restarting Consumer@7d1a6755: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:32.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-35] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:32.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:34.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-35] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:34.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:35.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-35] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:35.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-35] INFO SimpleMessageListenerContainer - Restarting Consumer@7b79e872: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:36.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-36] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:38.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-36] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:38.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:40.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-36] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:41.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-35] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:41.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-35] INFO SimpleMessageListenerContainer - Restarting Consumer@eb91604: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:42.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-36] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:44.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-36] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:44.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-36] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:45.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:45.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] INFO SimpleMessageListenerContainer - Restarting Consumer@213267c8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:46.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:47.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-36] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:47.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-36] INFO SimpleMessageListenerContainer - Restarting Consumer@7c69b980: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:48.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:48.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-37] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:50.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-37] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:50.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:51.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-36] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:51.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-36] INFO SimpleMessageListenerContainer - Restarting Consumer@4157221f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:52.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-37] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:54.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-37] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:04:54.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-37] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:56.747 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-37] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:04:57.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:04:57.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] INFO SimpleMessageListenerContainer - Restarting Consumer@12ca5133: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:04:58.788 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:00.006 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:05:00.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:00.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:01.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-37] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:01.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-37] INFO SimpleMessageListenerContainer - Restarting Consumer@12d1bbc3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:02.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-38] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:03.295 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:05:03.296 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:05:03.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-37] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:03.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-37] INFO SimpleMessageListenerContainer - Restarting Consumer@6375fcb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:04.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-38] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:04.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-38] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:05:06.934 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-38] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:06.934 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-38] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:07.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:07.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] INFO SimpleMessageListenerContainer - Restarting Consumer@56e1afd7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:08.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:10.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-38] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:10.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:13.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:14.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-38] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:14.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-38] INFO SimpleMessageListenerContainer - Restarting Consumer@6e067ec1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:15.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-39] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:17.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-39] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:17.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-39] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:18.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-38] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:18.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-38] INFO SimpleMessageListenerContainer - Restarting Consumer@2a7e9ae0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:19.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-39] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:20.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:20.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] INFO SimpleMessageListenerContainer - Restarting Consumer@45de0198: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:21.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-39] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:21.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:23.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-39] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:23.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:24.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-39] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:24.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-39] INFO SimpleMessageListenerContainer - Restarting Consumer@71a455b2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:25.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-40] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:27.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-40] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:27.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:29.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-40] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:30.306 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-39] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:30.306 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-39] INFO SimpleMessageListenerContainer - Restarting Consumer@2f3a4bde: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:31.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-40] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:33.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-40] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:33.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-40] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:34.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:34.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] INFO SimpleMessageListenerContainer - Restarting Consumer@3058202: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:35.307 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:36.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-40] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:36.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-40] INFO SimpleMessageListenerContainer - Restarting Consumer@54d25ff2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:37.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:37.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-41] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:39.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-41] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:39.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:40.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-40] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:40.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-40] INFO SimpleMessageListenerContainer - Restarting Consumer@245e2218: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:41.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-41] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:43.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-41] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:43.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-41] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:45.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-41] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:46.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:46.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] INFO SimpleMessageListenerContainer - Restarting Consumer@7244dbe1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:47.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:49.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:49.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:50.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-41] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:50.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-41] INFO SimpleMessageListenerContainer - Restarting Consumer@122580f1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:51.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-42] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:52.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-41] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:52.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-41] INFO SimpleMessageListenerContainer - Restarting Consumer@d31501b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:53.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-42] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:53.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-42] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:55.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-42] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:55.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-42] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:56.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:05:56.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] INFO SimpleMessageListenerContainer - Restarting Consumer@2cbbde6e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:05:57.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:05:59.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:05:59.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-42] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:00.006 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:06:01.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:02.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-42] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:02.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-42] INFO SimpleMessageListenerContainer - Restarting Consumer@5dbddd52: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:03.292 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:06:03.293 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:06:03.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-43] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:05.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-43] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:05.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-43] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:06:06.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-42] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:06.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-42] INFO SimpleMessageListenerContainer - Restarting Consumer@31d56027: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:07.796 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-43] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:08.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:08.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] INFO SimpleMessageListenerContainer - Restarting Consumer@555fec77: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:09.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-43] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:09.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:11.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:11.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-43] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:12.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-43] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:12.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-43] INFO SimpleMessageListenerContainer - Restarting Consumer@7e8b6c3d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:13.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-44] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:15.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:15.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-44] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:17.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-44] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:19.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-43] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:19.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-43] INFO SimpleMessageListenerContainer - Restarting Consumer@128134c0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:19.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-44] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:22.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-44] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:22.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-44] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:23.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:23.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] INFO SimpleMessageListenerContainer - Restarting Consumer@3d44dc6e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:24.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:25.118 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-44] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:25.118 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-44] INFO SimpleMessageListenerContainer - Restarting Consumer@545aa54: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:26.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:26.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-45] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:28.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-45] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:28.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:29.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-44] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:29.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-44] INFO SimpleMessageListenerContainer - Restarting Consumer@257c6182: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:30.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-45] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:32.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-45] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:32.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-45] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:34.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-45] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:35.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:35.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] INFO SimpleMessageListenerContainer - Restarting Consumer@4b66a8de: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:36.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:38.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:38.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:39.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-45] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:39.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-45] INFO SimpleMessageListenerContainer - Restarting Consumer@a3e7d2c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:40.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-46] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:41.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-45] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:41.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-45] INFO SimpleMessageListenerContainer - Restarting Consumer@6bb35dec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:42.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-46] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:42.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-46] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:44.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-46] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:44.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-46] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:45.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:45.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] INFO SimpleMessageListenerContainer - Restarting Consumer@15c51585: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:46.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:48.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:48.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-46] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:50.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:51.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-46] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:51.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-46] INFO SimpleMessageListenerContainer - Restarting Consumer@4cf53566: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:52.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-47] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:54.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-47] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:54.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-47] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:55.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-46] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:55.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-46] INFO SimpleMessageListenerContainer - Restarting Consumer@36e82471: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:56.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-47] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:06:57.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:06:57.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] INFO SimpleMessageListenerContainer - Restarting Consumer@2e582bdc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:06:58.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-47] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:06:58.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:00.002 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:07:00.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-47] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:00.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:01.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-47] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:01.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-47] INFO SimpleMessageListenerContainer - Restarting Consumer@616c22d0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:02.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-48] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:07:03.293 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:07:04.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-48] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:04.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:06.601 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:07:06.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-48] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:07.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-47] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:07.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-47] INFO SimpleMessageListenerContainer - Restarting Consumer@4aeace69: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:08.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-48] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:10.719 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-48] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:10.719 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-48] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:11.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:11.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] INFO SimpleMessageListenerContainer - Restarting Consumer@430cfdd4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:12.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:13.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-48] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:13.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-48] INFO SimpleMessageListenerContainer - Restarting Consumer@5aabac2a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:14.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:14.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-49] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:16.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-49] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:16.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:17.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-48] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:17.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-48] INFO SimpleMessageListenerContainer - Restarting Consumer@7b6340ba: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:18.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-49] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:20.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-49] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:20.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-49] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:22.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-49] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:23.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:23.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] INFO SimpleMessageListenerContainer - Restarting Consumer@7aec4e43: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:24.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:26.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:26.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:28.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-49] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:28.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-49] INFO SimpleMessageListenerContainer - Restarting Consumer@1b0a0860: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:28.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-50] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:30.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-49] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:30.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-49] INFO SimpleMessageListenerContainer - Restarting Consumer@5f8183df: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:31.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-50] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:31.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-50] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:33.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-50] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:33.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-50] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:34.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:34.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] INFO SimpleMessageListenerContainer - Restarting Consumer@28110b03: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:35.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:37.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-50] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:37.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:39.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:40.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-50] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:40.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-50] INFO SimpleMessageListenerContainer - Restarting Consumer@7b3b971f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:41.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-51] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:43.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-51] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:43.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-51] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:44.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-50] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:44.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-50] INFO SimpleMessageListenerContainer - Restarting Consumer@3abb6d0d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:45.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-51] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:46.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:46.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] INFO SimpleMessageListenerContainer - Restarting Consumer@327ef1f8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:47.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-51] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:47.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:49.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:49.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-51] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:50.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-51] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:50.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-51] INFO SimpleMessageListenerContainer - Restarting Consumer@2246d1ca: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:51.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-52] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:53.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:53.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-52] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:55.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-52] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:56.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-51] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:07:56.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-51] INFO SimpleMessageListenerContainer - Restarting Consumer@41c3c48b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:07:57.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-52] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:07:59.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-52] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:07:59.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-52] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:08:00.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:00.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] INFO SimpleMessageListenerContainer - Restarting Consumer@23740b31: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:01.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:02.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-52] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:02.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-52] INFO SimpleMessageListenerContainer - Restarting Consumer@3be14075: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:08:03.293 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:08:03.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:03.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-53] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:05.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:05.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-53] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:06.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-52] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:06.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-52] INFO SimpleMessageListenerContainer - Restarting Consumer@3d088d87: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:06.604 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:08:07.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-53] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:09.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-53] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:09.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-53] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:11.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-53] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:12.655 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:12.655 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] INFO SimpleMessageListenerContainer - Restarting Consumer@55cf2f9f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:13.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:15.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:15.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:16.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-53] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:16.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-53] INFO SimpleMessageListenerContainer - Restarting Consumer@4b420187: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:17.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-54] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:18.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-53] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:18.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-53] INFO SimpleMessageListenerContainer - Restarting Consumer@63e3f6ac: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:19.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-54] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:19.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-54] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:21.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-54] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:21.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-54] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:22.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:22.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] INFO SimpleMessageListenerContainer - Restarting Consumer@404791e6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:23.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:25.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:25.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-54] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:27.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:28.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-54] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:28.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-54] INFO SimpleMessageListenerContainer - Restarting Consumer@4ad89cec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:29.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-55] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:31.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-55] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:31.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-55] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:32.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-54] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:32.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-54] INFO SimpleMessageListenerContainer - Restarting Consumer@d7ab19e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:33.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-55] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:34.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:34.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] INFO SimpleMessageListenerContainer - Restarting Consumer@54348f8f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:35.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-55] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:35.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:38.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-55] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:38.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:39.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-55] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:39.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-55] INFO SimpleMessageListenerContainer - Restarting Consumer@1c0b675a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:40.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-56] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:42.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:42.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-56] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:44.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-56] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:45.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-55] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:45.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-55] INFO SimpleMessageListenerContainer - Restarting Consumer@6ddce907: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:46.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-56] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:48.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-56] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:48.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-56] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:49.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:49.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] INFO SimpleMessageListenerContainer - Restarting Consumer@7108ed4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:50.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:51.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-56] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:51.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-56] INFO SimpleMessageListenerContainer - Restarting Consumer@5f199245: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:52.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:52.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-57] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:54.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:54.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-57] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:08:55.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-56] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:08:55.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-56] INFO SimpleMessageListenerContainer - Restarting Consumer@29ea5de1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:08:56.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-57] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:58.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-57] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:08:58.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-57] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:09:00.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-57] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:01.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:01.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] INFO SimpleMessageListenerContainer - Restarting Consumer@53e661f3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:02.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:03.296 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:09:03.296 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:09:04.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:04.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:05.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-57] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:05.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-57] INFO SimpleMessageListenerContainer - Restarting Consumer@6938997a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:06.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-58] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:09:07.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-57] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:07.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-57] INFO SimpleMessageListenerContainer - Restarting Consumer@23a4ee9b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:08.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-58] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:08.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-58] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:10.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-58] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:10.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-58] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:11.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:11.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] INFO SimpleMessageListenerContainer - Restarting Consumer@1eb53969: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:12.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:14.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:14.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-58] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:16.639 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:17.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-58] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:17.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-58] INFO SimpleMessageListenerContainer - Restarting Consumer@5e5510f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:18.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-59] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:20.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-59] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:20.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-59] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:21.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-58] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:21.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-58] INFO SimpleMessageListenerContainer - Restarting Consumer@40b457e5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:22.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-59] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:23.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:23.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] INFO SimpleMessageListenerContainer - Restarting Consumer@1ed5b4b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:24.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-59] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:24.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:26.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:26.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-59] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:27.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-59] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:27.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-59] INFO SimpleMessageListenerContainer - Restarting Consumer@787dabe9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:28.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-60] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:30.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-60] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:30.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:32.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-60] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:33.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-59] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:33.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-59] INFO SimpleMessageListenerContainer - Restarting Consumer@1e4238df: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:34.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-60] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:36.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-60] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:36.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-60] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:37.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:37.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] INFO SimpleMessageListenerContainer - Restarting Consumer@50baf5c3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:38.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:39.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-60] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:39.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-60] INFO SimpleMessageListenerContainer - Restarting Consumer@310ce387: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:40.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:40.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-61] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:42.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-61] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:42.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:44.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-60] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:44.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-60] INFO SimpleMessageListenerContainer - Restarting Consumer@427d3085: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:45.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-61] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:47.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-61] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:47.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-61] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:49.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-61] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:50.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:50.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] INFO SimpleMessageListenerContainer - Restarting Consumer@57dadb8b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:51.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:53.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:53.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:54.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-61] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:54.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-61] INFO SimpleMessageListenerContainer - Restarting Consumer@861c8ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:55.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-62] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:56.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-61] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:09:56.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-61] INFO SimpleMessageListenerContainer - Restarting Consumer@132d2372: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:09:57.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-62] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:09:57.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-62] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:59.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-62] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:09:59.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-62] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:00.009 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:10:00.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:00.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] INFO SimpleMessageListenerContainer - Restarting Consumer@661772b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:01.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:10:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:10:03.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:03.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-62] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:05.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:06.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-62] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:06.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-62] INFO SimpleMessageListenerContainer - Restarting Consumer@705f3ab: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:10:07.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-63] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:09.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-63] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:09.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-63] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:10.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-62] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:10.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-62] INFO SimpleMessageListenerContainer - Restarting Consumer@76e12ee: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:11.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-63] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:12.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:12.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] INFO SimpleMessageListenerContainer - Restarting Consumer@14178984: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:13.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-63] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:13.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:15.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-63] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:15.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:16.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-63] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:16.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-63] INFO SimpleMessageListenerContainer - Restarting Consumer@24535d7c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:17.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-64] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:19.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-64] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:19.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:21.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-64] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:22.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-63] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:22.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-63] INFO SimpleMessageListenerContainer - Restarting Consumer@359d673e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:23.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-64] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:25.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-64] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:25.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-64] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:26.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:26.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] INFO SimpleMessageListenerContainer - Restarting Consumer@458c0c75: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:27.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:28.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-64] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:28.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-64] INFO SimpleMessageListenerContainer - Restarting Consumer@6cccd168: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:29.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-65] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:29.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:31.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-65] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:31.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:32.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-64] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:32.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-64] INFO SimpleMessageListenerContainer - Restarting Consumer@57997f5f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:33.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-65] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:35.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-65] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:35.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-65] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:37.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-65] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:38.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:38.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] INFO SimpleMessageListenerContainer - Restarting Consumer@562b3069: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:39.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:41.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:41.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:42.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-65] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:42.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-65] INFO SimpleMessageListenerContainer - Restarting Consumer@20f6a12: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:43.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-66] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:44.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-65] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:44.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-65] INFO SimpleMessageListenerContainer - Restarting Consumer@6aa418c2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:45.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-66] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:45.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-66] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:48.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-66] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:48.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-66] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:49.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:49.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] INFO SimpleMessageListenerContainer - Restarting Consumer@1698d1ae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:50.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:52.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-66] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:52.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:54.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:55.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-66] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:55.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-66] INFO SimpleMessageListenerContainer - Restarting Consumer@43fd97b6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:10:56.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-67] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:58.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-67] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:10:58.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-67] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:10:59.206 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-66] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:10:59.206 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-66] INFO SimpleMessageListenerContainer - Restarting Consumer@606a590c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:00.012 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:11:00.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-67] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:01.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:01.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] INFO SimpleMessageListenerContainer - Restarting Consumer@68f53427: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:02.244 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-67] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:02.244 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:03.306 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:11:03.306 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:11:04.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-67] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:04.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:05.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-67] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:05.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-67] INFO SimpleMessageListenerContainer - Restarting Consumer@6aadc2bf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:06.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-68] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:11:08.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:08.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-68] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:10.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-68] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:11.424 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-67] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:11.424 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-67] INFO SimpleMessageListenerContainer - Restarting Consumer@bff23c9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:12.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-68] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:14.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-68] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:14.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-68] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:15.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:15.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] INFO SimpleMessageListenerContainer - Restarting Consumer@201dbb85: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:16.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:17.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-68] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:17.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-68] INFO SimpleMessageListenerContainer - Restarting Consumer@70a05cb9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:18.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-69] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:18.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:20.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-69] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:20.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:21.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-68] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:21.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-68] INFO SimpleMessageListenerContainer - Restarting Consumer@37429e86: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:22.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-69] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:24.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-69] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:24.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-69] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:26.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-69] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:27.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:27.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] INFO SimpleMessageListenerContainer - Restarting Consumer@2f02b7fc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:28.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:30.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:30.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:31.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-69] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:31.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-69] INFO SimpleMessageListenerContainer - Restarting Consumer@86e45cc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:32.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-70] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:33.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-69] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:33.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-69] INFO SimpleMessageListenerContainer - Restarting Consumer@6e345ff0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:34.776 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-70] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:34.776 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-70] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:36.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-70] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:36.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-70] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:37.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:37.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] INFO SimpleMessageListenerContainer - Restarting Consumer@39fdc1ae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:38.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:40.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:40.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-70] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:42.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:43.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-70] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:43.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-70] INFO SimpleMessageListenerContainer - Restarting Consumer@6d4350c1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:44.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-71] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:46.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-71] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:46.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-71] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:48.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-70] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:48.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-70] INFO SimpleMessageListenerContainer - Restarting Consumer@17864722: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:49.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-71] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:50.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:50.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] INFO SimpleMessageListenerContainer - Restarting Consumer@1455ac1b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:51.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-71] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:51.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:53.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:53.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-71] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:54.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-71] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:11:54.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-71] INFO SimpleMessageListenerContainer - Restarting Consumer@62f8e1a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:11:55.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-72] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:57.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-72] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:11:57.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:11:59.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-72] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:00.003 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:12:00.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-71] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:00.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-71] INFO SimpleMessageListenerContainer - Restarting Consumer@ba98236: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:01.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-72] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:03.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-72] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:03.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-72] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:12:03.295 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:12:04.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:04.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] INFO SimpleMessageListenerContainer - Restarting Consumer@2ec2c3d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:05.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:06.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-72] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:06.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-72] INFO SimpleMessageListenerContainer - Restarting Consumer@7185dd1d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:12:07.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:07.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-73] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:09.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-73] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:09.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:10.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-72] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:10.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-72] INFO SimpleMessageListenerContainer - Restarting Consumer@117f1ee2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:11.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-73] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:13.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-73] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:13.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-73] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:15.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-73] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:16.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:16.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] INFO SimpleMessageListenerContainer - Restarting Consumer@2ffed73d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:17.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:19.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:19.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:20.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-73] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:20.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-73] INFO SimpleMessageListenerContainer - Restarting Consumer@63b1973d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:21.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-74] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:22.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-73] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:22.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-73] INFO SimpleMessageListenerContainer - Restarting Consumer@6e2846e5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:23.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-74] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:23.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-74] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:25.547 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-74] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:25.547 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-74] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:26.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:26.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] INFO SimpleMessageListenerContainer - Restarting Consumer@1611445e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:27.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:29.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:29.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-74] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:31.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:32.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-74] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:32.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-74] INFO SimpleMessageListenerContainer - Restarting Consumer@38f6654f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:33.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-75] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:35.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-75] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:35.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-75] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:36.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-74] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:36.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-74] INFO SimpleMessageListenerContainer - Restarting Consumer@4f802df1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:37.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-75] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:38.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:38.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] INFO SimpleMessageListenerContainer - Restarting Consumer@54dd599f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:39.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-75] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:39.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:41.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:41.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-75] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:42.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-75] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:42.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-75] INFO SimpleMessageListenerContainer - Restarting Consumer@6132e55d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:43.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-76] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:45.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:45.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-76] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:47.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-76] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:48.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-75] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:48.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-75] INFO SimpleMessageListenerContainer - Restarting Consumer@39191ae9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:49.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-76] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:51.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-76] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:51.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-76] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:53.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:53.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] INFO SimpleMessageListenerContainer - Restarting Consumer@15c0d6fc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:53.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:55.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-76] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:55.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-76] INFO SimpleMessageListenerContainer - Restarting Consumer@d934abb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:12:55.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:55.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-77] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:58.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-77] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:12:58.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:12:59.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-76] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:12:59.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-76] INFO SimpleMessageListenerContainer - Restarting Consumer@18f81d6e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:00.000 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:13:00.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-77] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:02.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-77] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:02.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-77] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:13:03.300 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:13:04.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-77] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:05.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:05.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] INFO SimpleMessageListenerContainer - Restarting Consumer@a561d4b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:06.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:06.600 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:13:08.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:08.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:09.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-77] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:09.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-77] INFO SimpleMessageListenerContainer - Restarting Consumer@5b7d8f26: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:10.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-78] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:11.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-77] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:11.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-77] INFO SimpleMessageListenerContainer - Restarting Consumer@404bab79: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:12.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-78] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:12.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-78] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:14.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-78] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:14.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-78] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:15.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:15.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] INFO SimpleMessageListenerContainer - Restarting Consumer@59351d87: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:16.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:18.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:18.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-78] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:20.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:21.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-78] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:21.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-78] INFO SimpleMessageListenerContainer - Restarting Consumer@7d42f01a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:22.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-79] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:24.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-79] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:24.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-79] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:25.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-78] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:25.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-78] INFO SimpleMessageListenerContainer - Restarting Consumer@114b717a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:26.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-79] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:27.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:27.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] INFO SimpleMessageListenerContainer - Restarting Consumer@1ed3bc9c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:28.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-79] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:28.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:30.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-79] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:30.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:31.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-79] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:31.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-79] INFO SimpleMessageListenerContainer - Restarting Consumer@47d0d760: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:32.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-80] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:34.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:34.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-80] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:36.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-80] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:37.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-79] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:37.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-79] INFO SimpleMessageListenerContainer - Restarting Consumer@1b206980: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:38.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-80] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:40.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-80] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:40.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-80] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:41.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:41.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] INFO SimpleMessageListenerContainer - Restarting Consumer@5d019b21: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:42.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:43.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-80] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:43.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-80] INFO SimpleMessageListenerContainer - Restarting Consumer@154376e1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:44.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:44.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-81] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:46.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-81] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:46.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:47.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-80] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:47.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-80] INFO SimpleMessageListenerContainer - Restarting Consumer@56d7233d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:48.786 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-81] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:50.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-81] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:50.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-81] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:52.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-81] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:53.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:53.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] INFO SimpleMessageListenerContainer - Restarting Consumer@bb623ae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:54.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:56.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:13:56.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:57.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-81] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:57.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-81] INFO SimpleMessageListenerContainer - Restarting Consumer@8de6d93: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:13:58.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-82] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:13:59.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-81] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:13:59.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-81] INFO SimpleMessageListenerContainer - Restarting Consumer@11949332: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:00.011 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:14:00.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-82] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:00.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-82] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:03.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-82] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:03.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-82] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:03.297 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:14:03.297 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:14:04.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:04.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] INFO SimpleMessageListenerContainer - Restarting Consumer@2e61d788: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:05.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:06.599 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:14:07.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-82] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:07.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:09.118 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:10.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-82] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:10.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-82] INFO SimpleMessageListenerContainer - Restarting Consumer@3f347aff: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:11.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-83] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:13.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-83] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:13.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-83] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:14.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-82] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:14.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-82] INFO SimpleMessageListenerContainer - Restarting Consumer@cfa220c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:15.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-83] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:16.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:16.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] INFO SimpleMessageListenerContainer - Restarting Consumer@7f7b1607: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:17.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-83] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:17.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:19.244 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:19.244 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-83] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:20.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-83] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:20.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-83] INFO SimpleMessageListenerContainer - Restarting Consumer@652f1516: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:21.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-84] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:23.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:23.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-84] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:25.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-84] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:26.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-83] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:26.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-83] INFO SimpleMessageListenerContainer - Restarting Consumer@4afe7c9a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:27.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-84] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:29.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-84] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:29.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-84] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:30.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:30.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] INFO SimpleMessageListenerContainer - Restarting Consumer@c72e94b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:31.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:32.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-84] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:32.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-84] INFO SimpleMessageListenerContainer - Restarting Consumer@3d017788: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:33.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:33.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-85] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:35.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-85] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:35.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:36.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-84] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:36.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-84] INFO SimpleMessageListenerContainer - Restarting Consumer@6c11cfb9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:37.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-85] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:39.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-85] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:39.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-85] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:41.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-85] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:42.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:42.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] INFO SimpleMessageListenerContainer - Restarting Consumer@5bd95b93: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:43.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:45.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:45.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:46.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-85] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:46.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-85] INFO SimpleMessageListenerContainer - Restarting Consumer@2162de07: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:47.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-86] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:48.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-85] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:48.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-85] INFO SimpleMessageListenerContainer - Restarting Consumer@1e1d4b2b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:49.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-86] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:49.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-86] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:51.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-86] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:51.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-86] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:52.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:52.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] INFO SimpleMessageListenerContainer - Restarting Consumer@7cb0dbdc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:53.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:55.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:14:55.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-86] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:57.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:14:58.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-86] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:14:58.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-86] INFO SimpleMessageListenerContainer - Restarting Consumer@30ab3344: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:14:59.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-87] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:15:01.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-87] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:01.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-87] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:02.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-86] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:02.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-86] INFO SimpleMessageListenerContainer - Restarting Consumer@148ee273: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:03.302 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:15:03.302 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:15:03.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-87] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:04.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:04.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] INFO SimpleMessageListenerContainer - Restarting Consumer@173eea37: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:05.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:05.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-87] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:15:07.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:07.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-87] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:08.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-87] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:08.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-87] INFO SimpleMessageListenerContainer - Restarting Consumer@1fa1593b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:09.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-88] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:11.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:11.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-88] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:13.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-88] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:15.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-87] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:15.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-87] INFO SimpleMessageListenerContainer - Restarting Consumer@4ddae1e1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:16.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-88] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:18.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-88] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:18.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-88] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:19.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:19.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] INFO SimpleMessageListenerContainer - Restarting Consumer@2b9171ff: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:20.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:21.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-88] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:21.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-88] INFO SimpleMessageListenerContainer - Restarting Consumer@b6c5e9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:22.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-89] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:22.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:24.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:24.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-89] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:25.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-88] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:25.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-88] INFO SimpleMessageListenerContainer - Restarting Consumer@41bab7b5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:26.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-89] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:28.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-89] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:28.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-89] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:30.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-89] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:31.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:31.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] INFO SimpleMessageListenerContainer - Restarting Consumer@2498c657: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:32.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:34.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:34.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:35.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-89] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:35.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-89] INFO SimpleMessageListenerContainer - Restarting Consumer@7b4c87d9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:36.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-90] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:37.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-89] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:37.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-89] INFO SimpleMessageListenerContainer - Restarting Consumer@5d69121b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:38.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-90] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:38.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-90] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:40.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-90] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:40.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-90] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:41.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:41.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] INFO SimpleMessageListenerContainer - Restarting Consumer@54daa40c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:42.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:44.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:44.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-90] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:46.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:47.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-90] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:47.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-90] INFO SimpleMessageListenerContainer - Restarting Consumer@154f945f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:48.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-91] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:50.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-91] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:50.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-91] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:51.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-90] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:51.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-90] INFO SimpleMessageListenerContainer - Restarting Consumer@4b572c29: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:52.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-91] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:53.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:53.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] INFO SimpleMessageListenerContainer - Restarting Consumer@cd5a7c6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:54.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-91] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:54.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:56.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-91] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:15:56.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:15:57.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-91] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:15:57.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-91] INFO SimpleMessageListenerContainer - Restarting Consumer@749bbb72: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:15:58.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-92] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:00.000 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:16:00.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:00.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-92] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:02.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-92] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:16:03.299 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:16:03.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-91] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:03.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-91] INFO SimpleMessageListenerContainer - Restarting Consumer@4ec52427: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:04.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-92] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:16:06.796 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-92] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:06.796 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-92] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:07.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:07.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] INFO SimpleMessageListenerContainer - Restarting Consumer@4999d152: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:08.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:09.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-92] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:09.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-92] INFO SimpleMessageListenerContainer - Restarting Consumer@5eff24e0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:10.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:10.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-93] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:12.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-93] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:12.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:13.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-92] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:13.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-92] INFO SimpleMessageListenerContainer - Restarting Consumer@2f47cb56: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:14.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-93] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:16.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-93] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:16.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-93] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:18.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-93] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:20.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:20.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] INFO SimpleMessageListenerContainer - Restarting Consumer@24c6d668: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:21.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:23.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:23.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:24.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-93] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:24.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-93] INFO SimpleMessageListenerContainer - Restarting Consumer@3bec41e5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:25.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-94] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:26.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-93] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:26.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-93] INFO SimpleMessageListenerContainer - Restarting Consumer@55fb5e9a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:27.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-94] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:27.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-94] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:29.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-94] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:29.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-94] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:30.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:30.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] INFO SimpleMessageListenerContainer - Restarting Consumer@255bf871: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:31.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:33.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:33.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-94] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:35.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:36.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-94] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:36.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-94] INFO SimpleMessageListenerContainer - Restarting Consumer@5ad525c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:37.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-95] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:39.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-95] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:39.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-95] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:40.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-94] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:40.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-94] INFO SimpleMessageListenerContainer - Restarting Consumer@28abd020: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:41.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-95] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:42.423 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:42.423 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] INFO SimpleMessageListenerContainer - Restarting Consumer@582bbb6d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:43.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-95] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:43.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:45.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:45.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-95] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:46.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-95] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:46.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-95] INFO SimpleMessageListenerContainer - Restarting Consumer@764ee799: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:47.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-96] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:49.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-96] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:49.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:51.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-96] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:52.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-95] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:52.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-95] INFO SimpleMessageListenerContainer - Restarting Consumer@2f5eceea: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:53.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-96] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:55.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-96] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:16:55.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-96] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:56.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:56.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] INFO SimpleMessageListenerContainer - Restarting Consumer@6ab2dbdf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:57.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:58.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-96] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:16:58.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-96] INFO SimpleMessageListenerContainer - Restarting Consumer@3f6a00ac: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:16:59.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-97] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:16:59.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:17:01.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-97] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:01.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:02.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-96] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:02.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-96] INFO SimpleMessageListenerContainer - Restarting Consumer@7d90a342: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:17:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:17:03.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-97] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:05.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-97] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:05.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-97] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:17:07.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-97] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:08.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:08.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] INFO SimpleMessageListenerContainer - Restarting Consumer@252ac658: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:09.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:11.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:11.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:12.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-97] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:12.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-97] INFO SimpleMessageListenerContainer - Restarting Consumer@71e5d88f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:13.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-98] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:14.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-97] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:14.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-97] INFO SimpleMessageListenerContainer - Restarting Consumer@2f1b76f8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:15.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-98] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:15.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-98] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:17.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-98] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:17.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-98] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:18.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:18.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] INFO SimpleMessageListenerContainer - Restarting Consumer@39d53e82: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:19.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:21.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-98] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:21.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:23.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:25.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-98] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:25.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-98] INFO SimpleMessageListenerContainer - Restarting Consumer@628b27a8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:26.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-99] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:28.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-99] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:28.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-99] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:29.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-98] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:29.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-98] INFO SimpleMessageListenerContainer - Restarting Consumer@3eaa889e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:30.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-99] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:31.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:31.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] INFO SimpleMessageListenerContainer - Restarting Consumer@698af90b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:32.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-99] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:32.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:34.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-99] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:34.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:35.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-99] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:35.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-99] INFO SimpleMessageListenerContainer - Restarting Consumer@7bcc81c9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:36.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-100] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:38.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-100] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:38.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:40.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-100] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:41.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-99] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:41.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-99] INFO SimpleMessageListenerContainer - Restarting Consumer@250d1d3f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:42.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-100] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:44.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-100] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:44.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-100] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:45.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:45.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] INFO SimpleMessageListenerContainer - Restarting Consumer@163405d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:46.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:47.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-100] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:47.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-100] INFO SimpleMessageListenerContainer - Restarting Consumer@408c589a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:48.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:48.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-101] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:50.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:50.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-101] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:51.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-100] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:51.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-100] INFO SimpleMessageListenerContainer - Restarting Consumer@2e67bbbf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:52.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-101] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:54.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-101] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:17:54.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-101] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:56.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-101] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:17:57.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:17:57.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] INFO SimpleMessageListenerContainer - Restarting Consumer@946c1d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:17:58.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:18:00.574 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:00.574 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:01.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-101] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:01.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-101] INFO SimpleMessageListenerContainer - Restarting Consumer@2ca6c8d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:02.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-102] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:18:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:18:03.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-101] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:03.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-101] INFO SimpleMessageListenerContainer - Restarting Consumer@57a1dc72: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:04.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-102] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:04.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-102] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:18:06.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-102] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:06.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-102] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:07.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:07.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] INFO SimpleMessageListenerContainer - Restarting Consumer@128cac9d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:08.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:10.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:10.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-102] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:12.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:13.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-102] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:13.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-102] INFO SimpleMessageListenerContainer - Restarting Consumer@14785f08: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:14.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-103] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:16.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-103] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:16.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-103] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:17.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-102] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:17.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-102] INFO SimpleMessageListenerContainer - Restarting Consumer@2bb4fe6c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:18.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-103] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:19.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:19.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] INFO SimpleMessageListenerContainer - Restarting Consumer@77644510: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:20.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-103] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:20.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:22.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:22.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-103] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:24.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-103] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:24.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-103] INFO SimpleMessageListenerContainer - Restarting Consumer@1a1e0c09: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:24.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-104] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:26.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-104] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:26.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:29.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-104] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:30.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-103] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:30.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-103] INFO SimpleMessageListenerContainer - Restarting Consumer@58d35df1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:31.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-104] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:33.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-104] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:33.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-104] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:34.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:34.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] INFO SimpleMessageListenerContainer - Restarting Consumer@4d9ec94d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:35.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:36.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-104] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:36.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-104] INFO SimpleMessageListenerContainer - Restarting Consumer@2c8abe9c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:37.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:37.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-105] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:39.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:39.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-105] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:40.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-104] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:40.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-104] INFO SimpleMessageListenerContainer - Restarting Consumer@5ed70f4e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:41.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-105] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:43.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-105] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:43.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-105] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:45.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-105] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:46.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:46.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] INFO SimpleMessageListenerContainer - Restarting Consumer@1b4368ec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:47.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:49.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:49.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:50.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-105] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:50.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-105] INFO SimpleMessageListenerContainer - Restarting Consumer@2df2c1e9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:51.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-106] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:52.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-105] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:52.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-105] INFO SimpleMessageListenerContainer - Restarting Consumer@5b097d3d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:53.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-106] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:53.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-106] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:55.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-106] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:55.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-106] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:56.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:18:56.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] INFO SimpleMessageListenerContainer - Restarting Consumer@614d5a1b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:18:57.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:18:59.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:18:59.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-106] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:00.001 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:19:01.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:02.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-106] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:02.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-106] INFO SimpleMessageListenerContainer - Restarting Consumer@4a44b884: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:19:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:19:03.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-107] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:05.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-107] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:05.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-107] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:06.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-106] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:06.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-106] INFO SimpleMessageListenerContainer - Restarting Consumer@475334dd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:19:07.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-107] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:08.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:08.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] INFO SimpleMessageListenerContainer - Restarting Consumer@180c6158: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:09.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:09.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-107] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:11.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:11.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-107] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:12.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-107] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:12.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-107] INFO SimpleMessageListenerContainer - Restarting Consumer@6042455e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:13.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-108] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:15.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:15.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-108] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:17.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-108] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:18.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-107] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:18.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-107] INFO SimpleMessageListenerContainer - Restarting Consumer@4f28c6c4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:19.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-108] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:21.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-108] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:21.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-108] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:22.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:22.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] INFO SimpleMessageListenerContainer - Restarting Consumer@762c3021: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:23.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:24.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-108] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:24.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-108] INFO SimpleMessageListenerContainer - Restarting Consumer@30b9c277: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:25.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:25.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-109] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:27.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-109] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:27.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:28.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-108] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:28.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-108] INFO SimpleMessageListenerContainer - Restarting Consumer@3a5f1ecf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:29.932 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-109] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:31.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-109] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:31.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-109] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:33.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-109] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:35.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:35.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] INFO SimpleMessageListenerContainer - Restarting Consumer@65508444: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:36.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:38.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:38.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:39.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-109] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:39.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-109] INFO SimpleMessageListenerContainer - Restarting Consumer@39b54eda: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:40.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-110] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:41.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-109] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:41.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-109] INFO SimpleMessageListenerContainer - Restarting Consumer@4df0c16f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:42.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-110] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:42.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-110] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:44.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-110] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:44.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-110] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:45.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:45.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] INFO SimpleMessageListenerContainer - Restarting Consumer@57c43f6b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:46.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:48.246 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:48.246 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-110] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:50.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:51.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-110] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:51.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-110] INFO SimpleMessageListenerContainer - Restarting Consumer@47d92ffb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:52.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-111] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:54.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-111] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:54.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-111] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:55.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-110] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:55.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-110] INFO SimpleMessageListenerContainer - Restarting Consumer@5f48de0a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:56.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-111] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:19:57.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:19:57.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] INFO SimpleMessageListenerContainer - Restarting Consumer@5bd31de0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:19:58.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-111] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:19:58.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:00.006 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:20:00.448 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:00.448 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-111] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:01.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-111] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:01.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-111] INFO SimpleMessageListenerContainer - Restarting Consumer@3828db4e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:02.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-112] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:20:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:20:04.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-112] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:04.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:06.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-112] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:06.596 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:20:07.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-111] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:07.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-111] INFO SimpleMessageListenerContainer - Restarting Consumer@791ad618: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:08.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-112] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:10.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-112] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:10.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-112] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:11.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:11.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] INFO SimpleMessageListenerContainer - Restarting Consumer@5fbd9f61: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:12.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:13.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-112] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:13.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-112] INFO SimpleMessageListenerContainer - Restarting Consumer@64facc3b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:14.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:14.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-113] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:16.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-113] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:16.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:17.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-112] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:17.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-112] INFO SimpleMessageListenerContainer - Restarting Consumer@7c452ac8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:18.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-113] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:20.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-113] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:20.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-113] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:22.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-113] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:23.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:23.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] INFO SimpleMessageListenerContainer - Restarting Consumer@63ad14a8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:24.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:26.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:26.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:27.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-113] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:27.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-113] INFO SimpleMessageListenerContainer - Restarting Consumer@59973685: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:28.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-114] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:29.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-113] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:29.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-113] INFO SimpleMessageListenerContainer - Restarting Consumer@5a5f408b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:30.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-114] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:30.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-114] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:32.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-114] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:32.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-114] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:34.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:34.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] INFO SimpleMessageListenerContainer - Restarting Consumer@397ae3e8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:34.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:37.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:37.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-114] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:39.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:40.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-114] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:40.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-114] INFO SimpleMessageListenerContainer - Restarting Consumer@7acd2c01: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:41.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-115] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:43.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-115] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:43.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-115] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:44.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-114] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:44.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-114] INFO SimpleMessageListenerContainer - Restarting Consumer@48545f57: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:45.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-115] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:46.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:46.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] INFO SimpleMessageListenerContainer - Restarting Consumer@631f0936: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:47.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:47.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-115] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:49.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:49.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-115] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:50.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-115] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:50.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-115] INFO SimpleMessageListenerContainer - Restarting Consumer@1b24fa9d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:51.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-116] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:53.271 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-116] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:53.271 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:55.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-116] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:56.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-115] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:20:56.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-115] INFO SimpleMessageListenerContainer - Restarting Consumer@64af8c81: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:20:57.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-116] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:20:59.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-116] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:20:59.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-116] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:00.009 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:21:00.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:00.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] INFO SimpleMessageListenerContainer - Restarting Consumer@6898aaac: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:01.413 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:02.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-116] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:02.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-116] INFO SimpleMessageListenerContainer - Restarting Consumer@7076e2df: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:21:03.300 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:21:03.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-117] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:03.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:05.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-117] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:05.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:06.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-116] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:06.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-116] INFO SimpleMessageListenerContainer - Restarting Consumer@7c847de: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:21:07.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-117] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:09.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-117] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:09.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-117] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:11.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-117] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:12.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:12.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] INFO SimpleMessageListenerContainer - Restarting Consumer@1b842032: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:13.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:15.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:15.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:16.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-117] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:16.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-117] INFO SimpleMessageListenerContainer - Restarting Consumer@3c5d4cba: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:17.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-118] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:18.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-117] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:18.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-117] INFO SimpleMessageListenerContainer - Restarting Consumer@15f451b3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:19.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-118] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:19.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-118] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:21.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-118] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:21.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-118] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:22.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:22.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] INFO SimpleMessageListenerContainer - Restarting Consumer@1aea72b5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:23.739 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:25.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-118] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:25.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:27.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:28.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-118] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:28.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-118] INFO SimpleMessageListenerContainer - Restarting Consumer@d0c13e1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:29.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-119] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:31.878 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-119] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:31.878 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-119] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:32.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-118] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:32.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-118] INFO SimpleMessageListenerContainer - Restarting Consumer@346a2b9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:33.928 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-119] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:34.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:34.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] INFO SimpleMessageListenerContainer - Restarting Consumer@41138a60: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:35.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-119] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:35.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:37.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:37.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-119] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:39.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-119] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:39.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-119] INFO SimpleMessageListenerContainer - Restarting Consumer@33ec8cd6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:40.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-120] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:42.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-120] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:42.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:44.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-120] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:45.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-119] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:45.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-119] INFO SimpleMessageListenerContainer - Restarting Consumer@3c92cd12: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:46.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-120] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:48.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-120] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:48.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-120] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:49.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:49.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] INFO SimpleMessageListenerContainer - Restarting Consumer@61669169: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:50.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:51.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-120] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:51.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-120] INFO SimpleMessageListenerContainer - Restarting Consumer@5f328dd3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:52.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-121] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:52.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:54.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-121] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:21:54.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:55.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-120] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:21:55.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-120] INFO SimpleMessageListenerContainer - Restarting Consumer@67ff07d6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:21:56.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-121] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:58.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-121] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:21:58.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-121] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:00.014 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:22:00.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-121] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:01.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:01.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] INFO SimpleMessageListenerContainer - Restarting Consumer@45654b34: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:02.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:22:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:22:04.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:04.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:05.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-121] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:05.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-121] INFO SimpleMessageListenerContainer - Restarting Consumer@37003b3b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:06.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-122] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:06.606 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:22:07.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-121] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:07.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-121] INFO SimpleMessageListenerContainer - Restarting Consumer@776db48d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:08.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-122] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:08.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-122] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:10.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-122] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:10.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-122] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:11.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:11.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] INFO SimpleMessageListenerContainer - Restarting Consumer@6c6aa6b6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:12.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:14.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:14.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-122] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:16.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:17.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-122] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:17.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-122] INFO SimpleMessageListenerContainer - Restarting Consumer@72536690: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:18.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-123] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:20.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-123] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:20.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-123] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:21.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-122] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:21.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-122] INFO SimpleMessageListenerContainer - Restarting Consumer@58154111: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:22.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-123] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:23.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:23.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] INFO SimpleMessageListenerContainer - Restarting Consumer@617324b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:24.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-123] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:24.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:26.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:26.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-123] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:27.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-123] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:27.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-123] INFO SimpleMessageListenerContainer - Restarting Consumer@541c934d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:28.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-124] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:31.029 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-124] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:31.029 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:33.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-124] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:34.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-123] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:34.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-123] INFO SimpleMessageListenerContainer - Restarting Consumer@7e7eee40: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:35.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-124] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:37.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-124] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:37.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-124] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:38.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:38.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] INFO SimpleMessageListenerContainer - Restarting Consumer@326e4446: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:39.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:40.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-124] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:40.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-124] INFO SimpleMessageListenerContainer - Restarting Consumer@1522afd5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:41.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:41.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-125] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:43.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-125] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:43.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:44.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-124] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:44.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-124] INFO SimpleMessageListenerContainer - Restarting Consumer@66f6bbfa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:45.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-125] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:47.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-125] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:47.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-125] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:49.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-125] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:50.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:50.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] INFO SimpleMessageListenerContainer - Restarting Consumer@311b8541: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:51.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:53.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:53.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:54.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-125] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:54.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-125] INFO SimpleMessageListenerContainer - Restarting Consumer@3d4ba23f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:55.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-126] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:56.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-125] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:22:56.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-125] INFO SimpleMessageListenerContainer - Restarting Consumer@3b753634: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:22:57.423 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-126] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:57.423 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-126] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:22:59.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-126] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:22:59.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-126] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:00.010 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:23:00.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:00.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] INFO SimpleMessageListenerContainer - Restarting Consumer@5282a3bf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:01.466 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:03.301 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:23:03.301 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:23:03.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:03.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-126] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:05.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:23:06.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-126] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:06.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-126] INFO SimpleMessageListenerContainer - Restarting Consumer@595f75ec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:07.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-127] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:09.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-127] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:09.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-127] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:10.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-126] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:10.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-126] INFO SimpleMessageListenerContainer - Restarting Consumer@7b7162fa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:11.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-127] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:12.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:12.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] INFO SimpleMessageListenerContainer - Restarting Consumer@7932bc60: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:13.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:13.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-127] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:15.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:15.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-127] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:16.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-127] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:16.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-127] INFO SimpleMessageListenerContainer - Restarting Consumer@3a84de45: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:17.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-128] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:19.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:19.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-128] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:21.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-128] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:22.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-127] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:22.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-127] INFO SimpleMessageListenerContainer - Restarting Consumer@3f183ff8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:23.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-128] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:25.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-128] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:25.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-128] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:26.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:26.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] INFO SimpleMessageListenerContainer - Restarting Consumer@3d06f81a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:27.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:28.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-128] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:28.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-128] INFO SimpleMessageListenerContainer - Restarting Consumer@dcc631f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:29.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:29.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-129] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:31.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-129] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:31.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:33.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-128] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:33.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-128] INFO SimpleMessageListenerContainer - Restarting Consumer@3ea9b08a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:34.025 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-129] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:36.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-129] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:36.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-129] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:38.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-129] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:39.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:39.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] INFO SimpleMessageListenerContainer - Restarting Consumer@5e3c0800: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:40.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:42.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:42.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:43.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-129] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:43.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-129] INFO SimpleMessageListenerContainer - Restarting Consumer@51a6cfe5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:44.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-130] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:45.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-129] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:45.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-129] INFO SimpleMessageListenerContainer - Restarting Consumer@5f7898a3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:46.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-130] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:46.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-130] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:48.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-130] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:48.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-130] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:49.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:49.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] INFO SimpleMessageListenerContainer - Restarting Consumer@5c15dcb6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:50.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:52.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:52.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-130] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:54.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:55.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-130] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:55.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-130] INFO SimpleMessageListenerContainer - Restarting Consumer@44108bcd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:23:56.374 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-131] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:58.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-131] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:23:58.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-131] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:23:59.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-130] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:23:59.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-130] INFO SimpleMessageListenerContainer - Restarting Consumer@24c1acfb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:24:00.431 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-131] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:01.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:01.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] INFO SimpleMessageListenerContainer - Restarting Consumer@7ac3da61: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:02.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-131] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:02.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:24:03.300 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:24:04.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-131] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:04.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:05.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-131] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:05.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-131] INFO SimpleMessageListenerContainer - Restarting Consumer@112007ef: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:06.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-132] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:06.602 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:24:08.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-132] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:08.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:10.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-132] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:11.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-131] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:11.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-131] INFO SimpleMessageListenerContainer - Restarting Consumer@262f5359: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:12.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-132] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:14.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-132] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:14.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-132] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:15.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:15.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] INFO SimpleMessageListenerContainer - Restarting Consumer@610ce720: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:16.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:17.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-132] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:17.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-132] INFO SimpleMessageListenerContainer - Restarting Consumer@132b72a3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:18.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-133] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:18.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:20.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-133] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:20.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:21.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-132] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:21.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-132] INFO SimpleMessageListenerContainer - Restarting Consumer@522a4202: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:22.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-133] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:24.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-133] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:24.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-133] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:26.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-133] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:27.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:27.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] INFO SimpleMessageListenerContainer - Restarting Consumer@3706358b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:28.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:30.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:30.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:31.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-133] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:31.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-133] INFO SimpleMessageListenerContainer - Restarting Consumer@53962fbf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:32.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-134] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:34.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-133] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:34.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-133] INFO SimpleMessageListenerContainer - Restarting Consumer@75ee71a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:34.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-134] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:34.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-134] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:37.012 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-134] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:37.012 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-134] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:38.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:38.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] INFO SimpleMessageListenerContainer - Restarting Consumer@1f453b28: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:39.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:41.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:41.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-134] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:43.076 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:44.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-134] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:44.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-134] INFO SimpleMessageListenerContainer - Restarting Consumer@12d54faa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:45.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-135] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:47.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-135] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:47.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-135] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:48.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-134] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:48.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-134] INFO SimpleMessageListenerContainer - Restarting Consumer@7f264256: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:49.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-135] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:50.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:50.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] INFO SimpleMessageListenerContainer - Restarting Consumer@71260ee9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:51.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:51.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-135] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:53.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:53.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-135] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:54.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-135] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:24:54.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-135] INFO SimpleMessageListenerContainer - Restarting Consumer@309daa59: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:24:55.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-136] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:57.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-136] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:24:57.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:24:59.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-136] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:00.008 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:25:00.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-135] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:00.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-135] INFO SimpleMessageListenerContainer - Restarting Consumer@5d801ff1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:01.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-136] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:25:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:25:03.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-136] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:03.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-136] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:04.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:04.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] INFO SimpleMessageListenerContainer - Restarting Consumer@584e41b0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:05.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:06.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-136] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:06.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-136] INFO SimpleMessageListenerContainer - Restarting Consumer@2577b9d1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:25:07.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:07.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-137] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:09.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-137] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:09.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:10.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-136] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:10.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-136] INFO SimpleMessageListenerContainer - Restarting Consumer@4c5cef76: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:11.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-137] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:13.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-137] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:13.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-137] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:15.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-137] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:16.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:16.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] INFO SimpleMessageListenerContainer - Restarting Consumer@ff5913d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:17.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:19.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:19.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:20.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-137] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:20.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-137] INFO SimpleMessageListenerContainer - Restarting Consumer@41bb76b5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:21.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-138] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:22.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-137] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:22.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-137] INFO SimpleMessageListenerContainer - Restarting Consumer@75ae1b44: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:23.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-138] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:23.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-138] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:25.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-138] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:25.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-138] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:26.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:26.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] INFO SimpleMessageListenerContainer - Restarting Consumer@4abb3dbc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:27.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:29.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:29.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-138] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:31.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:32.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-138] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:32.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-138] INFO SimpleMessageListenerContainer - Restarting Consumer@7533fa5d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:33.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-139] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:35.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-139] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:35.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-139] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:36.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-138] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:36.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-138] INFO SimpleMessageListenerContainer - Restarting Consumer@1cae906e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:37.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-139] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:38.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:38.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] INFO SimpleMessageListenerContainer - Restarting Consumer@12075ae7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:39.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:39.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-139] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:41.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:41.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-139] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:42.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-139] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:42.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-139] INFO SimpleMessageListenerContainer - Restarting Consumer@1c0d369a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:43.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-140] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:45.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:45.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-140] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:47.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-140] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:49.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-139] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:49.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-139] INFO SimpleMessageListenerContainer - Restarting Consumer@2277d234: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:50.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-140] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:52.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-140] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:52.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-140] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:53.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:53.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] INFO SimpleMessageListenerContainer - Restarting Consumer@7a85206f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:54.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:55.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-140] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:55.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-140] INFO SimpleMessageListenerContainer - Restarting Consumer@10eae751: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:25:56.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-141] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:56.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:58.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-141] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:25:58.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:25:59.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-140] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:25:59.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-140] INFO SimpleMessageListenerContainer - Restarting Consumer@2e5a53d5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:00.003 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:26:00.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-141] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:02.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-141] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:02.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-141] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:03.292 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:26:03.293 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:26:04.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-141] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:05.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:05.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] INFO SimpleMessageListenerContainer - Restarting Consumer@2e141715: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:06.278 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:26:08.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:08.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:09.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-141] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:09.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-141] INFO SimpleMessageListenerContainer - Restarting Consumer@a9fa873: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:10.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-142] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:11.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-141] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:11.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-141] INFO SimpleMessageListenerContainer - Restarting Consumer@531865fa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:12.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-142] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:12.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-142] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:14.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-142] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:14.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-142] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:15.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:15.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] INFO SimpleMessageListenerContainer - Restarting Consumer@16ca10d3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:16.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:18.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:18.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-142] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:20.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:21.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-142] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:21.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-142] INFO SimpleMessageListenerContainer - Restarting Consumer@526cae1a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:22.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-143] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:24.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-143] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:24.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-143] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:25.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-142] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:25.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-142] INFO SimpleMessageListenerContainer - Restarting Consumer@75551433: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:26.542 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-143] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:27.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:27.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] INFO SimpleMessageListenerContainer - Restarting Consumer@1721f79: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:28.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:28.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-143] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:30.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:30.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-143] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:31.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-143] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:31.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-143] INFO SimpleMessageListenerContainer - Restarting Consumer@2f351546: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:32.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-144] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:34.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:34.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-144] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:36.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-144] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:37.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-143] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:37.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-143] INFO SimpleMessageListenerContainer - Restarting Consumer@6768f99d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:38.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-144] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:40.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-144] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:40.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-144] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:41.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:41.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] INFO SimpleMessageListenerContainer - Restarting Consumer@2816afc4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:42.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:43.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-144] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:43.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-144] INFO SimpleMessageListenerContainer - Restarting Consumer@16121d4b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:44.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-145] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:44.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:46.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-145] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:46.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:47.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-144] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:47.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-144] INFO SimpleMessageListenerContainer - Restarting Consumer@5dbd8640: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:48.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-145] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:50.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-145] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:50.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-145] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:52.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-145] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:54.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:54.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] INFO SimpleMessageListenerContainer - Restarting Consumer@7a49ecc9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:54.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:56.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:26:56.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:26:58.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-145] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:26:58.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-145] INFO SimpleMessageListenerContainer - Restarting Consumer@526b16de: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:26:59.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-146] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:00.008 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:27:00.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-145] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:00.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-145] INFO SimpleMessageListenerContainer - Restarting Consumer@77a34c1c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:01.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-146] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:01.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-146] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:03.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-146] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:03.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-146] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:27:03.300 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:27:04.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:04.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] INFO SimpleMessageListenerContainer - Restarting Consumer@55d15919: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:05.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:06.600 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:27:07.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:07.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-146] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:09.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:10.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-146] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:10.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-146] INFO SimpleMessageListenerContainer - Restarting Consumer@695ad6db: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:11.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-147] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:13.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-147] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:13.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-147] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:14.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-146] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:14.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-146] INFO SimpleMessageListenerContainer - Restarting Consumer@49d42450: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:15.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-147] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:16.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:16.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] INFO SimpleMessageListenerContainer - Restarting Consumer@6e7ae2b5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:17.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-147] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:17.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:19.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:19.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-147] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:20.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-147] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:20.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-147] INFO SimpleMessageListenerContainer - Restarting Consumer@3f1239e9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:21.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-148] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:23.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-148] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:23.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:25.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-148] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:26.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-147] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:26.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-147] INFO SimpleMessageListenerContainer - Restarting Consumer@2cd88160: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:27.466 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-148] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:29.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-148] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:29.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-148] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:30.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:30.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] INFO SimpleMessageListenerContainer - Restarting Consumer@27b323f0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:31.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:32.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-148] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:32.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-148] INFO SimpleMessageListenerContainer - Restarting Consumer@c1a0942: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:33.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:33.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-149] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:35.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-149] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:35.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:36.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-148] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:36.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-148] INFO SimpleMessageListenerContainer - Restarting Consumer@427f0e22: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:37.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-149] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:39.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-149] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:39.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-149] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:41.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-149] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:42.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:42.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] INFO SimpleMessageListenerContainer - Restarting Consumer@7d8e19ac: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:43.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:45.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:45.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:46.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-149] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:46.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-149] INFO SimpleMessageListenerContainer - Restarting Consumer@43a152ae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:47.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-150] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:48.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-149] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:48.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-149] INFO SimpleMessageListenerContainer - Restarting Consumer@79cdc049: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:49.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-150] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:49.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-150] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:51.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-150] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:51.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-150] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:52.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:52.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] INFO SimpleMessageListenerContainer - Restarting Consumer@6392b39c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:53.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:55.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:27:55.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-150] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:57.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:27:59.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-150] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:27:59.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-150] INFO SimpleMessageListenerContainer - Restarting Consumer@64861533: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:27:59.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-151] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:00.012 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:28:02.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-151] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:02.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-151] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:03.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-150] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:03.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-150] INFO SimpleMessageListenerContainer - Restarting Consumer@899d275: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:28:03.298 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:28:04.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-151] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:05.116 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:05.116 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] INFO SimpleMessageListenerContainer - Restarting Consumer@4d4a98a8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:06.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-151] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:06.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-151] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:28:08.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:09.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-151] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:09.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-151] INFO SimpleMessageListenerContainer - Restarting Consumer@265a6249: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:10.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:10.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-152] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:12.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-152] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:12.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:13.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-151] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:13.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-151] INFO SimpleMessageListenerContainer - Restarting Consumer@7a7d07b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:14.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-152] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:16.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-152] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:16.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-152] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:18.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-152] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:19.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:19.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] INFO SimpleMessageListenerContainer - Restarting Consumer@20643a12: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:20.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:22.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:22.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:23.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-152] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:23.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-152] INFO SimpleMessageListenerContainer - Restarting Consumer@1804939e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:24.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-153] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:25.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-152] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:25.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-152] INFO SimpleMessageListenerContainer - Restarting Consumer@1f948a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:26.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-153] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:26.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-153] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:28.431 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-153] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:28.431 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-153] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:29.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:29.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] INFO SimpleMessageListenerContainer - Restarting Consumer@654836a0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:30.448 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:32.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:32.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:34.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-153] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:35.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-153] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:35.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-153] INFO SimpleMessageListenerContainer - Restarting Consumer@841618b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:36.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-154] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:38.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-154] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:38.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-154] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:39.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:39.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] INFO SimpleMessageListenerContainer - Restarting Consumer@39c10ecf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:40.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:41.646 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-153] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:41.646 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-153] INFO SimpleMessageListenerContainer - Restarting Consumer@5e9edf57: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:42.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:42.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-154] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:44.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-154] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:44.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:45.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-154] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:45.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-154] INFO SimpleMessageListenerContainer - Restarting Consumer@65604bae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:46.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-155] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:48.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-155] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:48.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-154] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:50.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-155] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:51.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:51.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] INFO SimpleMessageListenerContainer - Restarting Consumer@7e89b0ca: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:52.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:54.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:54.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:55.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-154] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:55.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-154] INFO SimpleMessageListenerContainer - Restarting Consumer@4aac05ab: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:56.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-155] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:28:57.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-155] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:28:57.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-155] INFO SimpleMessageListenerContainer - Restarting Consumer@707029a1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:28:58.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-155] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:28:58.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-156] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:29:00.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-155] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:00.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-156] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:01.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:01.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] INFO SimpleMessageListenerContainer - Restarting Consumer@5a128b27: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:02.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:03.295 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:29:03.295 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:29:04.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-156] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:04.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:29:06.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:08.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-155] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:08.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-155] INFO SimpleMessageListenerContainer - Restarting Consumer@40600411: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:09.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-156] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:11.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-156] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:11.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-156] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:12.107 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-156] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:12.107 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-156] INFO SimpleMessageListenerContainer - Restarting Consumer@6efac8bf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:13.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-157] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:14.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:14.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] INFO SimpleMessageListenerContainer - Restarting Consumer@b03867e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:15.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-157] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:15.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:17.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:17.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-157] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:18.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-156] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:18.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-156] INFO SimpleMessageListenerContainer - Restarting Consumer@69033d88: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:19.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-157] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:21.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:21.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-157] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:23.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-157] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:24.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-157] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:24.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-157] INFO SimpleMessageListenerContainer - Restarting Consumer@4064ba1b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:25.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-158] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:27.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-158] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:27.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-158] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:28.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:28.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] INFO SimpleMessageListenerContainer - Restarting Consumer@b421302: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:29.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:30.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-157] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:30.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-157] INFO SimpleMessageListenerContainer - Restarting Consumer@353634ec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:31.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-158] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:31.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:33.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-158] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:33.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:34.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-158] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:34.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-158] INFO SimpleMessageListenerContainer - Restarting Consumer@455817f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:35.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-159] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:37.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-159] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:37.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-158] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:39.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-159] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:40.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:40.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] INFO SimpleMessageListenerContainer - Restarting Consumer@5a4f5363: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:41.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:43.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:43.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:44.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-158] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:44.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-158] INFO SimpleMessageListenerContainer - Restarting Consumer@6be8f343: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:45.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-159] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:46.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-159] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:46.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-159] INFO SimpleMessageListenerContainer - Restarting Consumer@774f909c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:47.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-159] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:47.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-160] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:49.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-160] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:49.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-159] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:50.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:50.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] INFO SimpleMessageListenerContainer - Restarting Consumer@7db756ee: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:51.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:53.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-160] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:53.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:55.713 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:56.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-159] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:29:56.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-159] INFO SimpleMessageListenerContainer - Restarting Consumer@21b592f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:29:57.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-160] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:29:59.776 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-160] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:29:59.776 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-160] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:30:00.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-160] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:00.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-160] INFO SimpleMessageListenerContainer - Restarting Consumer@4946c563: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:01.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-161] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:02.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:02.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] INFO SimpleMessageListenerContainer - Restarting Consumer@377a7441: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:03.292 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:30:03.293 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:30:03.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:03.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-161] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:05.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:05.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-161] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:06.592 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:30:06.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-160] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:06.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-160] INFO SimpleMessageListenerContainer - Restarting Consumer@72565fa5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:07.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-161] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:09.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-161] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:09.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:11.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-161] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:13.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-161] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:13.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-161] INFO SimpleMessageListenerContainer - Restarting Consumer@11acf910: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:14.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-162] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:16.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-162] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:16.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-162] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:17.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:17.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] INFO SimpleMessageListenerContainer - Restarting Consumer@45c34c0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:18.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:19.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-161] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:19.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-161] INFO SimpleMessageListenerContainer - Restarting Consumer@46489238: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:20.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:20.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-162] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:22.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-162] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:22.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:23.255 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-162] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:23.255 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-162] INFO SimpleMessageListenerContainer - Restarting Consumer@c9018a1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:24.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-163] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:26.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-162] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:26.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-163] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:28.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-163] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:29.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:29.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] INFO SimpleMessageListenerContainer - Restarting Consumer@2d4da520: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:30.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:32.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:32.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:33.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-162] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:33.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-162] INFO SimpleMessageListenerContainer - Restarting Consumer@578f0fa5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:34.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-163] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:35.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-163] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:35.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-163] INFO SimpleMessageListenerContainer - Restarting Consumer@9063fab: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:36.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-163] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:36.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-164] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:38.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-163] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:38.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-164] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:39.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:39.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] INFO SimpleMessageListenerContainer - Restarting Consumer@67c495b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:40.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:42.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:42.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-164] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:44.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:45.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-163] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:45.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-163] INFO SimpleMessageListenerContainer - Restarting Consumer@b5b33fa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:46.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-164] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:48.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-164] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:48.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-164] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:49.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-164] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:49.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-164] INFO SimpleMessageListenerContainer - Restarting Consumer@4d437ff3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:50.655 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-165] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:51.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:51.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] INFO SimpleMessageListenerContainer - Restarting Consumer@e5eeeaf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:52.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-165] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:52.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:54.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:54.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-165] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-164] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:30:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-164] INFO SimpleMessageListenerContainer - Restarting Consumer@2a606802: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:30:56.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-165] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:30:58.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-165] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:30:58.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:00.016 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:31:00.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-165] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:01.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-165] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:01.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-165] INFO SimpleMessageListenerContainer - Restarting Consumer@692516aa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:02.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-166] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:03.305 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:31:03.306 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:31:04.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-166] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:04.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-166] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:05.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:05.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] INFO SimpleMessageListenerContainer - Restarting Consumer@55c03c27: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:31:06.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:07.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-165] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:07.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-165] INFO SimpleMessageListenerContainer - Restarting Consumer@1b1cafc1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:08.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-166] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:08.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:11.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-166] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:11.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:12.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-166] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:12.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-166] INFO SimpleMessageListenerContainer - Restarting Consumer@ea94297: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:13.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-167] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:15.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-167] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:15.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-166] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:17.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-167] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:18.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:18.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] INFO SimpleMessageListenerContainer - Restarting Consumer@2525d372: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:19.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:21.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:21.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:22.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-166] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:22.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-166] INFO SimpleMessageListenerContainer - Restarting Consumer@1f30374b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:23.208 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-167] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:24.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-167] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:24.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-167] INFO SimpleMessageListenerContainer - Restarting Consumer@2edbe872: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:25.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-168] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:25.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-167] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:27.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-168] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:27.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-167] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:28.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:28.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] INFO SimpleMessageListenerContainer - Restarting Consumer@42f202e2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:29.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:31.374 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-168] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:31.374 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:33.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:34.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-167] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:34.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-167] INFO SimpleMessageListenerContainer - Restarting Consumer@6a0c7077: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:35.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-168] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:37.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-168] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:37.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-168] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:38.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-168] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:38.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-168] INFO SimpleMessageListenerContainer - Restarting Consumer@5bb5d85: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:39.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-169] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:40.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:40.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] INFO SimpleMessageListenerContainer - Restarting Consumer@36fa611c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:41.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:41.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-169] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:43.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-169] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:43.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:44.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-168] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:44.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-168] INFO SimpleMessageListenerContainer - Restarting Consumer@59c9f05a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:45.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-169] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:47.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-169] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:47.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:49.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-169] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:50.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-169] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:50.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-169] INFO SimpleMessageListenerContainer - Restarting Consumer@5c26fb1f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:51.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-170] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:53.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-170] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:53.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-170] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:54.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:54.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] INFO SimpleMessageListenerContainer - Restarting Consumer@5fce9836: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:55.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:56.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-169] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:31:56.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-169] INFO SimpleMessageListenerContainer - Restarting Consumer@2fe490dd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:31:57.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:57.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-170] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:31:59.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-170] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:31:59.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:00.007 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:32:00.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-170] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:00.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-170] INFO SimpleMessageListenerContainer - Restarting Consumer@4655a5bb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:01.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-171] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:32:03.293 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:32:03.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-171] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:03.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-170] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:05.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-171] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:32:07.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:07.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] INFO SimpleMessageListenerContainer - Restarting Consumer@1713c44e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:07.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:10.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:10.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:11.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-170] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:11.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-170] INFO SimpleMessageListenerContainer - Restarting Consumer@3dc44fd2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:12.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-171] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:13.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-171] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:13.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-171] INFO SimpleMessageListenerContainer - Restarting Consumer@41b879eb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:14.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-171] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:14.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-172] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:16.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-172] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:16.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-171] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:17.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:17.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] INFO SimpleMessageListenerContainer - Restarting Consumer@14f50bb7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:18.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:20.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:20.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-172] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:22.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:23.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-171] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:23.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-171] INFO SimpleMessageListenerContainer - Restarting Consumer@77ccdec0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:24.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-172] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:26.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-172] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:26.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-172] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:27.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-172] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:27.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-172] INFO SimpleMessageListenerContainer - Restarting Consumer@48e99e83: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:28.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-173] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:29.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:29.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] INFO SimpleMessageListenerContainer - Restarting Consumer@2441bb0c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:30.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:30.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-173] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:32.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:32.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-173] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:33.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-172] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:33.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-172] INFO SimpleMessageListenerContainer - Restarting Consumer@115259fa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:34.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-173] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:36.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-173] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:36.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:38.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-173] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:39.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-173] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:39.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-173] INFO SimpleMessageListenerContainer - Restarting Consumer@40e71b18: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:40.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-174] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:42.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-174] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:42.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-174] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:43.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:43.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] INFO SimpleMessageListenerContainer - Restarting Consumer@767a0d62: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:44.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:45.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-173] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:45.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-173] INFO SimpleMessageListenerContainer - Restarting Consumer@12e2566b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:46.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:46.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-174] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:48.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-174] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:48.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:49.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-174] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:49.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-174] INFO SimpleMessageListenerContainer - Restarting Consumer@23cbad6a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:50.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-175] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:52.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-175] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:52.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-174] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:54.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-175] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:55.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:55.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] INFO SimpleMessageListenerContainer - Restarting Consumer@707ccef2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:32:56.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:58.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:32:58.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:32:59.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-174] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:32:59.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-174] INFO SimpleMessageListenerContainer - Restarting Consumer@3eb14037: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:00.007 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:33:00.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-175] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:01.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-175] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:01.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-175] INFO SimpleMessageListenerContainer - Restarting Consumer@16f5dd96: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:02.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-175] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:02.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-176] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:33:03.298 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:33:04.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-176] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:04.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-175] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:06.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:06.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] INFO SimpleMessageListenerContainer - Restarting Consumer@7e98f968: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:33:07.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:09.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-176] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:09.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:11.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:12.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-175] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:12.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-175] INFO SimpleMessageListenerContainer - Restarting Consumer@74bb7acb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:13.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-176] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:15.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-176] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:15.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-176] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:16.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-176] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:16.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-176] INFO SimpleMessageListenerContainer - Restarting Consumer@3145818: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:17.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-177] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:18.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:18.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] INFO SimpleMessageListenerContainer - Restarting Consumer@10cb18b5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:19.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:19.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-177] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:21.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:21.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-177] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:22.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-176] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:22.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-176] INFO SimpleMessageListenerContainer - Restarting Consumer@2ec96985: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:23.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-177] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:25.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-177] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:25.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:27.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-177] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:28.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-177] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:28.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-177] INFO SimpleMessageListenerContainer - Restarting Consumer@446d5084: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:29.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-178] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:31.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-178] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:31.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-178] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:32.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:32.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] INFO SimpleMessageListenerContainer - Restarting Consumer@93b6446: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:33.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:34.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-177] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:34.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-177] INFO SimpleMessageListenerContainer - Restarting Consumer@6ee2dbea: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:35.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:35.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-178] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:37.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-178] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:37.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:38.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-178] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:38.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-178] INFO SimpleMessageListenerContainer - Restarting Consumer@7b995da9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:39.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-179] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:41.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-179] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:41.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-178] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:43.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-179] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:44.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:44.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] INFO SimpleMessageListenerContainer - Restarting Consumer@71bb1f00: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:45.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:47.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:47.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:48.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-178] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:48.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-178] INFO SimpleMessageListenerContainer - Restarting Consumer@7df19937: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:49.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-179] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:50.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-179] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:50.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-179] INFO SimpleMessageListenerContainer - Restarting Consumer@113de1f1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:51.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-179] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:51.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-180] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:53.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-180] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:53.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-179] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:54.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:33:54.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] INFO SimpleMessageListenerContainer - Restarting Consumer@16c3002b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:33:55.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:57.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:33:57.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-180] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:33:59.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:00.003 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:34:00.919 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-179] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:00.919 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-179] INFO SimpleMessageListenerContainer - Restarting Consumer@753133d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:01.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-180] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:03.296 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:34:03.296 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:34:03.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-180] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:03.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-180] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:05.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-180] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:05.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-180] INFO SimpleMessageListenerContainer - Restarting Consumer@18d33ed7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:05.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-181] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:06.603 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:34:07.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:07.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] INFO SimpleMessageListenerContainer - Restarting Consumer@174ec1fc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:08.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:08.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-181] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:10.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-181] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:10.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:11.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-180] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:11.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-180] INFO SimpleMessageListenerContainer - Restarting Consumer@5397fd23: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:12.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-181] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:14.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-181] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:14.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:16.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-181] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:17.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-181] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:17.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-181] INFO SimpleMessageListenerContainer - Restarting Consumer@471581b3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:18.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-182] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:20.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-182] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:20.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-182] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:21.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:21.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] INFO SimpleMessageListenerContainer - Restarting Consumer@4f3a993e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:22.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:23.298 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-181] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:23.298 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-181] INFO SimpleMessageListenerContainer - Restarting Consumer@47a32705: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:24.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:24.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-182] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:26.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-182] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:26.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:27.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-182] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:27.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-182] INFO SimpleMessageListenerContainer - Restarting Consumer@559513f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:28.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-183] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:30.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-183] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:30.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-182] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:32.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-183] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:33.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:33.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] INFO SimpleMessageListenerContainer - Restarting Consumer@611080d6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:34.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:36.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:36.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:37.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-182] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:37.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-182] INFO SimpleMessageListenerContainer - Restarting Consumer@1093400c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:38.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-183] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:39.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-183] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:39.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-183] INFO SimpleMessageListenerContainer - Restarting Consumer@332b9e35: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:40.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-183] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:40.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-184] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:42.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-184] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:42.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-183] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:43.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:43.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] INFO SimpleMessageListenerContainer - Restarting Consumer@687366d9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:44.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:46.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-184] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:46.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:48.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:49.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-183] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:49.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-183] INFO SimpleMessageListenerContainer - Restarting Consumer@3442a2fe: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:50.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-184] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:52.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-184] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:52.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-184] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:53.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-184] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:53.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-184] INFO SimpleMessageListenerContainer - Restarting Consumer@1b219d8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:54.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-185] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:55.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:55.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] INFO SimpleMessageListenerContainer - Restarting Consumer@5873ac7b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:34:56.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-185] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:56.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:58.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:34:58.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-185] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:34:59.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-184] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:34:59.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-184] INFO SimpleMessageListenerContainer - Restarting Consumer@17f95b13: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:35:00.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-185] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:02.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:02.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-185] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:03.303 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:35:03.303 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:35:04.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-185] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:05.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-185] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:05.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-185] INFO SimpleMessageListenerContainer - Restarting Consumer@22ed4be: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:35:06.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-186] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:08.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-186] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:08.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-186] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:10.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:10.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] INFO SimpleMessageListenerContainer - Restarting Consumer@5d5e4120: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:11.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:12.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-185] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:12.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-185] INFO SimpleMessageListenerContainer - Restarting Consumer@3f2ea29: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:13.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-186] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:13.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:15.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-186] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:15.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:16.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-186] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:16.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-186] INFO SimpleMessageListenerContainer - Restarting Consumer@18a3f1d5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:17.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-187] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:19.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-186] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:19.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-187] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:21.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-187] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:22.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:22.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] INFO SimpleMessageListenerContainer - Restarting Consumer@4998b0d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:23.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:25.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:25.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:26.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-186] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:26.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-186] INFO SimpleMessageListenerContainer - Restarting Consumer@2f1fac17: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:27.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-187] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:28.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-187] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:28.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-187] INFO SimpleMessageListenerContainer - Restarting Consumer@3a9645fe: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:29.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-187] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:29.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-188] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:31.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-188] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:31.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-187] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:32.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:32.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] INFO SimpleMessageListenerContainer - Restarting Consumer@561d4326: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:33.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:35.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:35.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-188] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:37.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:38.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-187] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:38.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-187] INFO SimpleMessageListenerContainer - Restarting Consumer@4e9db29b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:39.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-188] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:41.481 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-188] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:41.481 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-188] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:42.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-188] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:42.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-188] INFO SimpleMessageListenerContainer - Restarting Consumer@7d11e481: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:43.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-189] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:44.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:44.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] INFO SimpleMessageListenerContainer - Restarting Consumer@1291f1b4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:45.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-189] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:45.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:47.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-189] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:47.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:48.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-188] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:48.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-188] INFO SimpleMessageListenerContainer - Restarting Consumer@30e6c41e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:49.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-189] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:51.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-189] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:51.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:53.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-189] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:54.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-189] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:54.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-189] INFO SimpleMessageListenerContainer - Restarting Consumer@6a331bb3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:55.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-190] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:57.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-190] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:35:57.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-190] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:35:58.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:35:58.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] INFO SimpleMessageListenerContainer - Restarting Consumer@66a244a8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:35:59.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:00.011 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:36:00.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-189] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:00.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-189] INFO SimpleMessageListenerContainer - Restarting Consumer@4a44af3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:01.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-190] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:01.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:36:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:36:03.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-190] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:03.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:04.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-190] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:04.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-190] INFO SimpleMessageListenerContainer - Restarting Consumer@6d0c69b6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:05.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-191] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:06.600 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:36:07.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-190] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:07.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-191] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:09.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-191] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:10.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:10.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] INFO SimpleMessageListenerContainer - Restarting Consumer@dc185a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:11.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:13.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:13.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:15.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-190] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:15.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-190] INFO SimpleMessageListenerContainer - Restarting Consumer@180b20ea: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:15.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-191] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:17.063 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-191] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:17.063 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-191] INFO SimpleMessageListenerContainer - Restarting Consumer@51d48799: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:18.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-192] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:18.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-191] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:20.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-192] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:20.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-191] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:21.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:21.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] INFO SimpleMessageListenerContainer - Restarting Consumer@8dcf981: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:22.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:24.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-192] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:24.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:26.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:27.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-191] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:27.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-191] INFO SimpleMessageListenerContainer - Restarting Consumer@345908c4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:28.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-192] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:30.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-192] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:30.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-192] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:31.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-192] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:31.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-192] INFO SimpleMessageListenerContainer - Restarting Consumer@757174d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:32.255 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-193] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:33.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:33.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] INFO SimpleMessageListenerContainer - Restarting Consumer@557db0f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:34.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:34.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-193] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:36.313 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-193] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:36.313 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:37.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-192] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:37.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-192] INFO SimpleMessageListenerContainer - Restarting Consumer@118f8196: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:38.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-193] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:40.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-193] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:40.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:42.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-193] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:43.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-193] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:43.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-193] INFO SimpleMessageListenerContainer - Restarting Consumer@3a6c26d1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:44.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-194] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:46.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-194] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:46.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-194] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:47.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:47.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] INFO SimpleMessageListenerContainer - Restarting Consumer@70c176fa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:48.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:49.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-193] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:49.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-193] INFO SimpleMessageListenerContainer - Restarting Consumer@141989e8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:50.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-194] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:50.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:52.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-194] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:52.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:53.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-194] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:53.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-194] INFO SimpleMessageListenerContainer - Restarting Consumer@52885e85: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:36:54.622 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-195] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:56.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-194] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:56.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-195] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:36:58.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-195] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:36:59.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:36:59.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] INFO SimpleMessageListenerContainer - Restarting Consumer@679b333c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:00.008 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:37:00.731 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:02.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:02.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:03.295 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:37:03.296 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:37:03.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-194] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:03.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-194] INFO SimpleMessageListenerContainer - Restarting Consumer@2fcbf3b5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:04.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-195] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:05.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-195] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:05.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-195] INFO SimpleMessageListenerContainer - Restarting Consumer@1fada1ec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:37:06.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-195] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:06.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-196] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:08.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-196] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:08.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-195] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:09.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:09.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] INFO SimpleMessageListenerContainer - Restarting Consumer@679fd5c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:10.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:12.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:12.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-196] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:14.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:16.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-195] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:16.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-195] INFO SimpleMessageListenerContainer - Restarting Consumer@263292f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:16.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-196] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:18.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-196] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:18.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-196] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:20.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-196] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:20.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-196] INFO SimpleMessageListenerContainer - Restarting Consumer@474028b2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:21.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-197] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:22.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:22.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] INFO SimpleMessageListenerContainer - Restarting Consumer@daebab0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:23.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-197] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:23.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:25.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-197] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:25.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:26.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-196] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:26.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-196] INFO SimpleMessageListenerContainer - Restarting Consumer@1326fbf4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:27.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-197] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:29.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-197] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:29.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:31.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-197] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:32.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-197] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:32.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-197] INFO SimpleMessageListenerContainer - Restarting Consumer@5f82ad8d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:33.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-198] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:35.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-198] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:35.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-198] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:36.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:36.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] INFO SimpleMessageListenerContainer - Restarting Consumer@16d87856: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:37.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:38.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-197] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:38.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-197] INFO SimpleMessageListenerContainer - Restarting Consumer@3e47b273: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:39.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:39.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-198] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:41.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-198] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:41.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:42.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-198] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:42.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-198] INFO SimpleMessageListenerContainer - Restarting Consumer@36a2cbac: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:43.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-199] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:45.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-199] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:45.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-198] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:47.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-199] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:48.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:48.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] INFO SimpleMessageListenerContainer - Restarting Consumer@7cde9623: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:49.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:51.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:51.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:52.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-198] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:52.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-198] INFO SimpleMessageListenerContainer - Restarting Consumer@21704ddf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:53.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-199] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:54.622 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-199] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:54.622 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-199] INFO SimpleMessageListenerContainer - Restarting Consumer@25744077: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:55.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-199] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:55.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-200] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:57.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-200] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:37:57.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-199] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:37:58.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:37:58.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] INFO SimpleMessageListenerContainer - Restarting Consumer@1c908f4b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:37:59.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:00.003 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:38:01.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:01.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-200] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:03.296 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:38:03.296 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:38:03.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:04.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-199] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:04.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-199] INFO SimpleMessageListenerContainer - Restarting Consumer@523a091f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:05.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-200] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:38:07.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-200] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:07.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-200] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:08.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-200] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:08.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-200] INFO SimpleMessageListenerContainer - Restarting Consumer@4cff76de: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:09.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-201] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:10.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:10.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] INFO SimpleMessageListenerContainer - Restarting Consumer@27f031f4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:11.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:11.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-201] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:13.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:13.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-201] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:14.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-200] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:14.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-200] INFO SimpleMessageListenerContainer - Restarting Consumer@6836d979: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:15.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-201] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:17.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-201] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:17.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:20.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-201] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:21.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-201] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:21.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-201] INFO SimpleMessageListenerContainer - Restarting Consumer@1d9bd935: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:22.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-202] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:24.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-202] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:24.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-202] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:25.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:25.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] INFO SimpleMessageListenerContainer - Restarting Consumer@2c6ca477: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:26.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:27.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-201] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:27.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-201] INFO SimpleMessageListenerContainer - Restarting Consumer@74319e33: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:28.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:28.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-202] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:30.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-202] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:30.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:31.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-202] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:31.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-202] INFO SimpleMessageListenerContainer - Restarting Consumer@202ac17f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:32.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-203] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:34.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-202] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:34.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-203] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:36.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-203] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:37.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:37.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] INFO SimpleMessageListenerContainer - Restarting Consumer@210250a8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:38.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:40.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:40.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:41.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-202] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:41.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-202] INFO SimpleMessageListenerContainer - Restarting Consumer@7a679443: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:42.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-203] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:43.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-203] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:43.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-203] INFO SimpleMessageListenerContainer - Restarting Consumer@ed06130: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:44.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-204] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:44.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-203] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:46.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-204] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:46.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-203] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:47.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:47.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] INFO SimpleMessageListenerContainer - Restarting Consumer@3e7c94e0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:48.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:50.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-204] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:50.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:52.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:53.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-203] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:53.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-203] INFO SimpleMessageListenerContainer - Restarting Consumer@faa2fd8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:54.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-204] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:56.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-204] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:38:56.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-204] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:57.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-204] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:57.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-204] INFO SimpleMessageListenerContainer - Restarting Consumer@50fe11eb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:38:58.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-205] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:38:59.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:38:59.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] INFO SimpleMessageListenerContainer - Restarting Consumer@6d6be3a2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:39:00.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-205] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:00.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:02.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:02.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-205] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:39:03.300 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:39:03.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-204] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:03.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-204] INFO SimpleMessageListenerContainer - Restarting Consumer@3b994b30: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:04.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-205] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:39:06.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-205] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:06.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:08.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-205] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:09.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-205] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:09.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-205] INFO SimpleMessageListenerContainer - Restarting Consumer@2afa654c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:10.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-206] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:12.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-206] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:12.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-206] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:13.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:13.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] INFO SimpleMessageListenerContainer - Restarting Consumer@5fd27c4a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:14.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:15.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-205] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:15.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-205] INFO SimpleMessageListenerContainer - Restarting Consumer@6ab209b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:16.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:16.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-206] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:18.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-206] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:18.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:19.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-206] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:19.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-206] INFO SimpleMessageListenerContainer - Restarting Consumer@70e2a615: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:20.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-207] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:22.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-207] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:22.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-206] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:24.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-207] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:26.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:26.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] INFO SimpleMessageListenerContainer - Restarting Consumer@5f37058e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:27.038 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:29.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:29.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:30.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-206] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:30.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-206] INFO SimpleMessageListenerContainer - Restarting Consumer@2d058f9b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:31.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-207] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:32.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-207] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:32.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-207] INFO SimpleMessageListenerContainer - Restarting Consumer@1c365f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:33.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-208] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:33.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-207] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:35.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-208] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:35.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-207] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:36.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:36.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] INFO SimpleMessageListenerContainer - Restarting Consumer@d79e99b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:37.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:39.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:39.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-208] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:41.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:42.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-207] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:42.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-207] INFO SimpleMessageListenerContainer - Restarting Consumer@220ee838: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:43.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-208] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:45.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-208] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:45.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-208] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:46.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-208] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:46.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-208] INFO SimpleMessageListenerContainer - Restarting Consumer@22e79c22: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:47.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-209] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:48.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:48.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] INFO SimpleMessageListenerContainer - Restarting Consumer@39fe6aac: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:49.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-209] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:49.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:51.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-209] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:51.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:52.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-208] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:52.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-208] INFO SimpleMessageListenerContainer - Restarting Consumer@66f19f40: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:53.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-209] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:55.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-209] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:39:55.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:57.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-209] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:39:58.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-209] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:39:58.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-209] INFO SimpleMessageListenerContainer - Restarting Consumer@2ee837c9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:39:59.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-210] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:00.006 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:40:01.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-210] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:01.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-210] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:02.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:02.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] INFO SimpleMessageListenerContainer - Restarting Consumer@16cda7a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:03.295 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:40:03.295 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:40:03.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:04.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-209] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:04.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-209] INFO SimpleMessageListenerContainer - Restarting Consumer@6d283c17: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:05.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-210] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:05.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:40:07.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-210] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:07.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:08.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-210] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:08.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-210] INFO SimpleMessageListenerContainer - Restarting Consumer@799797bf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:09.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-211] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:11.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-211] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:11.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-210] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:13.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-211] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:14.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:14.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] INFO SimpleMessageListenerContainer - Restarting Consumer@4e36e2f3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:15.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:17.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:17.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:18.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-210] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:18.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-210] INFO SimpleMessageListenerContainer - Restarting Consumer@4d49480a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:19.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-211] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:20.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-211] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:20.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-211] INFO SimpleMessageListenerContainer - Restarting Consumer@78df60df: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:21.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-212] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:21.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-211] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:23.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-212] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:23.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-211] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:25.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:25.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] INFO SimpleMessageListenerContainer - Restarting Consumer@3380c5d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:26.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:28.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:28.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-212] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:30.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:31.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-211] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:31.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-211] INFO SimpleMessageListenerContainer - Restarting Consumer@39b1454c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:32.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-212] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:34.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-212] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:34.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-212] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:35.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-212] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:35.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-212] INFO SimpleMessageListenerContainer - Restarting Consumer@41917a8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:36.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-213] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:37.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:37.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] INFO SimpleMessageListenerContainer - Restarting Consumer@2416f08c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:38.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:38.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-213] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:40.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:40.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-213] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:41.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-212] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:41.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-212] INFO SimpleMessageListenerContainer - Restarting Consumer@2aaa9756: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:42.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-213] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:44.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-213] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:44.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:46.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-213] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:47.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-213] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:47.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-213] INFO SimpleMessageListenerContainer - Restarting Consumer@56a3b5eb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:48.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-214] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:50.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-214] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:50.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-214] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:51.413 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:51.413 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] INFO SimpleMessageListenerContainer - Restarting Consumer@25b69751: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:52.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:53.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-213] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:53.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-213] INFO SimpleMessageListenerContainer - Restarting Consumer@645f75f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:54.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:54.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-214] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:56.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-214] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:40:56.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:40:57.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-214] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:40:57.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-214] INFO SimpleMessageListenerContainer - Restarting Consumer@6339dab2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:40:58.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-215] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:00.012 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:41:00.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-215] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:00.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-214] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:02.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-215] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:03.301 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:41:03.301 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:41:03.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:03.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] INFO SimpleMessageListenerContainer - Restarting Consumer@2b1c0f80: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:04.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:41:06.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:06.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:07.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-214] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:07.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-214] INFO SimpleMessageListenerContainer - Restarting Consumer@6b69ffed: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:08.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-215] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:09.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-215] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:09.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-215] INFO SimpleMessageListenerContainer - Restarting Consumer@62db99d4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:10.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-215] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:10.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-216] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:12.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-216] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:12.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-215] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:13.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:13.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] INFO SimpleMessageListenerContainer - Restarting Consumer@8b4870d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:14.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:16.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-216] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:16.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:18.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:19.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-215] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:19.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-215] INFO SimpleMessageListenerContainer - Restarting Consumer@24ca3765: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:20.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-216] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:22.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-216] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:22.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-216] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:23.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-216] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:23.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-216] INFO SimpleMessageListenerContainer - Restarting Consumer@4a66af18: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:24.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-217] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:25.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:25.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] INFO SimpleMessageListenerContainer - Restarting Consumer@414d3cb5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:26.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-217] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:26.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:28.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:28.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-217] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:30.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-216] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:30.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-216] INFO SimpleMessageListenerContainer - Restarting Consumer@6b567cd7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:30.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-217] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:32.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-217] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:32.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:35.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-217] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:36.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-217] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:36.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-217] INFO SimpleMessageListenerContainer - Restarting Consumer@3ed18d21: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:37.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-218] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:39.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-218] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:39.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-218] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:40.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:40.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] INFO SimpleMessageListenerContainer - Restarting Consumer@f2f98e0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:41.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:42.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-217] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:42.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-217] INFO SimpleMessageListenerContainer - Restarting Consumer@487faf36: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:43.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:43.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-218] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:45.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-218] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:45.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:46.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-218] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:46.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-218] INFO SimpleMessageListenerContainer - Restarting Consumer@11d11e7f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:47.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-219] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:49.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-218] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:49.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-219] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:51.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-219] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:52.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:52.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] INFO SimpleMessageListenerContainer - Restarting Consumer@2b9f2996: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:53.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:55.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:41:55.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:56.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-218] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:56.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-218] INFO SimpleMessageListenerContainer - Restarting Consumer@70245f3c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:57.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-219] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:58.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-219] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:41:58.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-219] INFO SimpleMessageListenerContainer - Restarting Consumer@377d5527: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:41:59.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-220] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:41:59.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-219] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:00.012 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:42:01.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-220] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:01.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-219] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:02.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:02.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] INFO SimpleMessageListenerContainer - Restarting Consumer@6df765e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:42:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:42:03.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:05.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:05.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-220] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:42:07.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:08.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-219] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:08.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-219] INFO SimpleMessageListenerContainer - Restarting Consumer@eae73c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:09.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-220] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:11.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-220] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:11.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-220] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:12.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-220] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:12.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-220] INFO SimpleMessageListenerContainer - Restarting Consumer@14b8a1c1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:13.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-221] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:14.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:14.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] INFO SimpleMessageListenerContainer - Restarting Consumer@48075360: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:15.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:15.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-221] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:17.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:17.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-221] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:18.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-220] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:18.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-220] INFO SimpleMessageListenerContainer - Restarting Consumer@9495dbd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:19.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-221] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:21.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-221] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:21.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:23.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-221] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:24.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-221] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:24.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-221] INFO SimpleMessageListenerContainer - Restarting Consumer@20a48754: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:25.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-222] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:27.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-222] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:27.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-222] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:28.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:28.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] INFO SimpleMessageListenerContainer - Restarting Consumer@2513add3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:29.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:30.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-221] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:30.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-221] INFO SimpleMessageListenerContainer - Restarting Consumer@3175a6e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:31.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-222] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:31.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:33.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-222] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:33.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:34.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-222] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:34.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-222] INFO SimpleMessageListenerContainer - Restarting Consumer@149e65cd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:35.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-223] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:37.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-222] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:37.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-223] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:39.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-223] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:41.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:41.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] INFO SimpleMessageListenerContainer - Restarting Consumer@2331bfdb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:41.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:44.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:44.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:45.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-222] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:45.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-222] INFO SimpleMessageListenerContainer - Restarting Consumer@611a4f3e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:46.038 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-223] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:47.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-223] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:47.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-223] INFO SimpleMessageListenerContainer - Restarting Consumer@61ff79c0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:48.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-223] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:48.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-224] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:50.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-224] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:50.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-223] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:51.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:51.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] INFO SimpleMessageListenerContainer - Restarting Consumer@109f54d8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:52.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:54.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:42:54.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-224] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:56.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:42:57.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-223] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:42:57.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-223] INFO SimpleMessageListenerContainer - Restarting Consumer@665b11fa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:42:58.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-224] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:00.016 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:43:00.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-224] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:00.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-224] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:01.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-224] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:01.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-224] INFO SimpleMessageListenerContainer - Restarting Consumer@73a9079b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:02.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-225] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:03.305 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:43:03.305 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:43:03.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:03.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] INFO SimpleMessageListenerContainer - Restarting Consumer@6819fb1b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:04.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:04.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-225] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:06.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:06.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-225] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:43:07.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-224] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:07.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-224] INFO SimpleMessageListenerContainer - Restarting Consumer@79ad73d8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:08.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-225] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:10.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-225] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:10.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:12.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-225] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:13.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-225] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:13.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-225] INFO SimpleMessageListenerContainer - Restarting Consumer@69d9db95: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:14.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-226] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:16.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-226] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:16.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-226] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:17.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:17.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] INFO SimpleMessageListenerContainer - Restarting Consumer@f44a2d4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:18.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:19.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-225] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:19.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-225] INFO SimpleMessageListenerContainer - Restarting Consumer@26b862c4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:20.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:20.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-226] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:22.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-226] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:22.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:23.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-226] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:23.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-226] INFO SimpleMessageListenerContainer - Restarting Consumer@4e85cb8e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:24.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-227] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:26.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-226] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:26.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-227] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:28.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-227] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:29.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:29.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] INFO SimpleMessageListenerContainer - Restarting Consumer@2bdc796c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:30.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:32.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:32.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:33.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-226] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:33.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-226] INFO SimpleMessageListenerContainer - Restarting Consumer@24e42971: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:34.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-227] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:35.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-227] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:35.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-227] INFO SimpleMessageListenerContainer - Restarting Consumer@5a896656: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:36.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-227] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:36.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-228] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:38.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-227] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:38.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-228] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:39.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:39.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] INFO SimpleMessageListenerContainer - Restarting Consumer@682e24de: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:40.919 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:42.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:42.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-228] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:44.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:46.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-227] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:46.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-227] INFO SimpleMessageListenerContainer - Restarting Consumer@544fb760: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:47.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-228] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:49.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-228] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:49.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-228] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:50.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-228] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:50.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-228] INFO SimpleMessageListenerContainer - Restarting Consumer@52f705f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:51.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-229] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:52.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:52.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] INFO SimpleMessageListenerContainer - Restarting Consumer@3aea4754: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:53.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:53.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-229] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:55.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:43:55.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-229] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:56.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-228] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:43:56.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-228] INFO SimpleMessageListenerContainer - Restarting Consumer@4c7a9b3d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:43:57.107 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-229] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:59.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:43:59.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-229] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:00.013 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:44:01.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-229] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:02.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-229] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:02.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-229] INFO SimpleMessageListenerContainer - Restarting Consumer@1f8b444: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:03.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-230] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:44:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:44:05.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-230] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:05.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-230] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:06.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:06.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] INFO SimpleMessageListenerContainer - Restarting Consumer@39f3d3a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:44:07.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:08.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-229] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:08.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-229] INFO SimpleMessageListenerContainer - Restarting Consumer@1c5db34: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:09.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:09.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-230] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:11.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-230] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:11.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:12.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-230] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:12.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-230] INFO SimpleMessageListenerContainer - Restarting Consumer@560a071: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:13.381 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-231] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:15.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-231] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:15.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-230] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:17.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-231] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:18.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:18.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] INFO SimpleMessageListenerContainer - Restarting Consumer@28fa8752: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:19.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:21.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:21.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:22.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-230] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:22.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-230] INFO SimpleMessageListenerContainer - Restarting Consumer@4244e077: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:23.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-231] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:24.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-231] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:24.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-231] INFO SimpleMessageListenerContainer - Restarting Consumer@6d28ec98: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:25.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-232] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:25.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-231] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:27.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-232] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:27.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-231] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:28.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:28.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] INFO SimpleMessageListenerContainer - Restarting Consumer@3a8d699: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:29.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:31.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:31.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-232] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:33.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:34.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-231] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:34.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-231] INFO SimpleMessageListenerContainer - Restarting Consumer@5eda7ab2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:35.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-232] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:37.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-232] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:37.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-232] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:38.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-232] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:38.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-232] INFO SimpleMessageListenerContainer - Restarting Consumer@ed42271: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:39.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-233] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:40.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:40.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] INFO SimpleMessageListenerContainer - Restarting Consumer@6f8ae24a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:41.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-233] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:41.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:43.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:43.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-233] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:44.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-232] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:44.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-232] INFO SimpleMessageListenerContainer - Restarting Consumer@5041bbc3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:45.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-233] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:47.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-233] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:47.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:49.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-233] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:51.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-233] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:51.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-233] INFO SimpleMessageListenerContainer - Restarting Consumer@4ecdf638: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:51.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-234] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:54.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-234] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:44:54.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-234] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:55.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:55.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] INFO SimpleMessageListenerContainer - Restarting Consumer@25b816d9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:56.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:57.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-233] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:44:57.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-233] INFO SimpleMessageListenerContainer - Restarting Consumer@3fb263e9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:44:58.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-234] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:44:58.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:00.011 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:45:00.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-234] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:00.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:01.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-234] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:01.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-234] INFO SimpleMessageListenerContainer - Restarting Consumer@2a9f37cf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:02.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-235] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:45:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:45:04.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-235] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:04.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-234] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:06.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-235] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:45:07.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:07.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] INFO SimpleMessageListenerContainer - Restarting Consumer@3779c369: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:08.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:10.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:10.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:11.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-234] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:11.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-234] INFO SimpleMessageListenerContainer - Restarting Consumer@7e053fc0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:12.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-235] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:13.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-235] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:13.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-235] INFO SimpleMessageListenerContainer - Restarting Consumer@6b298dda: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:14.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-235] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:14.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-236] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:16.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-235] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:16.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-236] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:17.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:17.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] INFO SimpleMessageListenerContainer - Restarting Consumer@24f366a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:18.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:20.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:20.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-236] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:22.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:23.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-235] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:23.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-235] INFO SimpleMessageListenerContainer - Restarting Consumer@31a8e2f7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:24.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-236] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:26.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-236] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:26.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-236] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:27.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-236] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:27.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-236] INFO SimpleMessageListenerContainer - Restarting Consumer@78eaf885: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:28.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-237] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:29.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:29.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] INFO SimpleMessageListenerContainer - Restarting Consumer@4b5b02a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:30.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-237] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:30.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:32.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:32.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-237] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:33.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-236] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:33.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-236] INFO SimpleMessageListenerContainer - Restarting Consumer@6da57cd3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:34.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-237] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:36.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-237] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:36.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:38.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-237] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:39.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-237] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:39.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-237] INFO SimpleMessageListenerContainer - Restarting Consumer@140b2378: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:40.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-238] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:42.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-238] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:42.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-238] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:43.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:43.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] INFO SimpleMessageListenerContainer - Restarting Consumer@1b09537: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:44.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:45.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-237] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:45.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-237] INFO SimpleMessageListenerContainer - Restarting Consumer@6521f33a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:46.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:46.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-238] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:48.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:48.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-238] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:49.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-238] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:49.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-238] INFO SimpleMessageListenerContainer - Restarting Consumer@5a9c4942: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:50.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-239] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:52.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-239] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:52.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-238] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:54.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-239] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:56.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:45:56.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] INFO SimpleMessageListenerContainer - Restarting Consumer@7a5fc5b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:45:57.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:45:59.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:45:59.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:46:00.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-238] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:00.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-238] INFO SimpleMessageListenerContainer - Restarting Consumer@11b96ce1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:01.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-239] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:02.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-239] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:02.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-239] INFO SimpleMessageListenerContainer - Restarting Consumer@2d4bd38f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:03.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-240] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:03.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-239] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:46:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:46:05.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-240] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:05.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-239] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:06.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:06.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] INFO SimpleMessageListenerContainer - Restarting Consumer@b31a63f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:06.592 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:46:07.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:09.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-240] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:09.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:11.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:12.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-239] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:12.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-239] INFO SimpleMessageListenerContainer - Restarting Consumer@19adecbf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:13.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-240] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:15.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-240] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:15.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-240] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:16.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-240] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:16.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-240] INFO SimpleMessageListenerContainer - Restarting Consumer@36259cfe: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:17.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-241] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:18.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:18.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] INFO SimpleMessageListenerContainer - Restarting Consumer@64ecfe: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:19.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-241] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:19.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:21.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:21.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-241] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:22.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-240] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:22.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-240] INFO SimpleMessageListenerContainer - Restarting Consumer@444913b9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:23.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-241] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:25.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-241] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:25.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:27.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-241] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:28.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-241] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:28.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-241] INFO SimpleMessageListenerContainer - Restarting Consumer@723cd866: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:29.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-242] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:31.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-242] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:31.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-242] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:32.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:32.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] INFO SimpleMessageListenerContainer - Restarting Consumer@6db62dc8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:33.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:34.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-241] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:34.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-241] INFO SimpleMessageListenerContainer - Restarting Consumer@3ab285f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:35.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:35.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-242] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:37.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:37.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-242] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:38.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-242] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:38.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-242] INFO SimpleMessageListenerContainer - Restarting Consumer@5a3ddb2d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:39.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-243] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:41.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-243] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:41.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-242] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:43.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-243] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:44.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:44.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] INFO SimpleMessageListenerContainer - Restarting Consumer@3e6eac4a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:45.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:47.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:47.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:48.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-242] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:48.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-242] INFO SimpleMessageListenerContainer - Restarting Consumer@2ffcfde8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:49.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-243] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:50.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-243] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:50.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-243] INFO SimpleMessageListenerContainer - Restarting Consumer@3ec0ee94: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:51.895 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-244] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:51.895 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-243] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:53.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-244] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:46:53.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-243] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:54.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:46:54.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] INFO SimpleMessageListenerContainer - Restarting Consumer@40859546: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:46:55.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:57.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-244] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:46:57.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:00.015 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:47:00.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:01.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-243] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:01.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-243] INFO SimpleMessageListenerContainer - Restarting Consumer@3ed6da28: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:02.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-244] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:03.297 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:47:03.297 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:47:04.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-244] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:04.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-244] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:05.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-244] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:05.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-244] INFO SimpleMessageListenerContainer - Restarting Consumer@60b983a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:06.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-245] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:47:07.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:07.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] INFO SimpleMessageListenerContainer - Restarting Consumer@38c05be5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:08.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-245] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:08.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:10.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-245] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:10.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:11.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-244] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:11.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-244] INFO SimpleMessageListenerContainer - Restarting Consumer@7e297943: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:12.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-245] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:14.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-245] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:14.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:16.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-245] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:17.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-245] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:17.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-245] INFO SimpleMessageListenerContainer - Restarting Consumer@4c281cab: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:18.278 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-246] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:20.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-246] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:20.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-246] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:21.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:21.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] INFO SimpleMessageListenerContainer - Restarting Consumer@7cc01ff4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:22.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:23.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-245] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:23.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-245] INFO SimpleMessageListenerContainer - Restarting Consumer@41741bf9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:24.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:24.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-246] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:26.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-246] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:26.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:27.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-246] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:27.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-246] INFO SimpleMessageListenerContainer - Restarting Consumer@36c3d60d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:28.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-247] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:30.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-247] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:30.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-246] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:32.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-247] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:33.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:33.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] INFO SimpleMessageListenerContainer - Restarting Consumer@46b4901b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:34.492 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:36.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:36.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:37.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-246] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:37.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-246] INFO SimpleMessageListenerContainer - Restarting Consumer@4b56db7b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:38.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-247] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:39.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-247] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:39.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-247] INFO SimpleMessageListenerContainer - Restarting Consumer@116c8fab: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:40.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-247] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:40.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-248] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:42.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-248] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:42.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-247] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:43.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:43.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] INFO SimpleMessageListenerContainer - Restarting Consumer@6d70397a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:44.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:46.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:46.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-248] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:48.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:49.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-247] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:49.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-247] INFO SimpleMessageListenerContainer - Restarting Consumer@798472b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:50.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-248] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:52.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-248] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:52.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-248] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:53.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-248] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:53.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-248] INFO SimpleMessageListenerContainer - Restarting Consumer@7fa0c667: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:54.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-249] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:55.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:55.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] INFO SimpleMessageListenerContainer - Restarting Consumer@3c3f7375: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:47:56.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-249] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:56.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:58.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:47:58.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-249] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:47:59.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-248] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:47:59.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-248] INFO SimpleMessageListenerContainer - Restarting Consumer@21861507: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:00.009 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:48:00.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-249] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:02.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-249] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:02.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:03.296 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:48:03.296 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:48:04.895 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-249] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:05.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-249] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:05.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-249] INFO SimpleMessageListenerContainer - Restarting Consumer@2ae68cd0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:06.599 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:48:06.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-250] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:08.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-250] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:08.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-250] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:10.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:10.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] INFO SimpleMessageListenerContainer - Restarting Consumer@3a178732: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:10.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:12.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-249] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:12.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-249] INFO SimpleMessageListenerContainer - Restarting Consumer@4cda2d27: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:13.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-250] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:13.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:15.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-250] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:15.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:16.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-250] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:16.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-250] INFO SimpleMessageListenerContainer - Restarting Consumer@51d09238: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:17.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-251] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:19.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-251] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:19.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-250] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:21.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-251] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:22.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:22.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] INFO SimpleMessageListenerContainer - Restarting Consumer@5ebaa796: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:23.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:25.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:25.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:26.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-250] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:26.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-250] INFO SimpleMessageListenerContainer - Restarting Consumer@1e3cd06e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:27.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-251] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:28.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-251] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:28.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-251] INFO SimpleMessageListenerContainer - Restarting Consumer@1e3dc65d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:29.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-251] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:29.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-252] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:31.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-251] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:31.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-252] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:32.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:32.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] INFO SimpleMessageListenerContainer - Restarting Consumer@69bc8148: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:33.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:35.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:35.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-252] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:37.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:38.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-251] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:38.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-251] INFO SimpleMessageListenerContainer - Restarting Consumer@2b4ea8d3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:39.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-252] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:41.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-252] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:41.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-252] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:42.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-252] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:42.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-252] INFO SimpleMessageListenerContainer - Restarting Consumer@313bc4d0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:43.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-253] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:44.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:44.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] INFO SimpleMessageListenerContainer - Restarting Consumer@2170060: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:45.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-253] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:45.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:47.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:47.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-253] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:48.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-252] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:48.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-252] INFO SimpleMessageListenerContainer - Restarting Consumer@8118332: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:49.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-253] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:51.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:51.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-253] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:53.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-253] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:54.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-253] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:54.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-253] INFO SimpleMessageListenerContainer - Restarting Consumer@2b664831: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:55.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-254] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:57.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-254] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:48:57.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-254] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:48:58.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:48:58.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] INFO SimpleMessageListenerContainer - Restarting Consumer@75f9a62d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:48:59.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:00.008 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:49:00.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-253] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:00.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-253] INFO SimpleMessageListenerContainer - Restarting Consumer@2a46e5a1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:01.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:01.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-254] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:49:03.300 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:49:03.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-254] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:03.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:04.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-254] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:04.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-254] INFO SimpleMessageListenerContainer - Restarting Consumer@2788b9d9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:05.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-255] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:49:07.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-255] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:07.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-254] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:09.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-255] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:10.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:10.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] INFO SimpleMessageListenerContainer - Restarting Consumer@76dc0c9b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:11.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:13.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:13.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:15.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-254] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:15.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-254] INFO SimpleMessageListenerContainer - Restarting Consumer@7f4c918a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:15.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-255] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:17.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-255] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:17.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-255] INFO SimpleMessageListenerContainer - Restarting Consumer@13bda907: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:18.012 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-256] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:18.012 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-255] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:20.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-256] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:20.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-255] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:21.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:21.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] INFO SimpleMessageListenerContainer - Restarting Consumer@7b301125: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:22.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:24.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:24.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-256] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:26.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:27.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-255] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:27.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-255] INFO SimpleMessageListenerContainer - Restarting Consumer@3140bf4c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:28.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-256] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:30.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-256] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:30.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-256] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:31.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-256] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:31.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-256] INFO SimpleMessageListenerContainer - Restarting Consumer@28f9d0af: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:32.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-257] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:33.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:33.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] INFO SimpleMessageListenerContainer - Restarting Consumer@369bb1c1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:34.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-257] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:34.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:36.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:36.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-257] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:37.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-256] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:37.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-256] INFO SimpleMessageListenerContainer - Restarting Consumer@3476d29c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:38.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-257] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:40.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-257] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:40.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:42.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-257] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:43.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-257] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:43.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-257] INFO SimpleMessageListenerContainer - Restarting Consumer@53303449: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:44.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-258] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:46.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-258] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:46.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-258] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:47.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:47.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] INFO SimpleMessageListenerContainer - Restarting Consumer@2ae4ee7d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:48.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:49.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-257] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:49.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-257] INFO SimpleMessageListenerContainer - Restarting Consumer@52eb2fca: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:50.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:50.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-258] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:52.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-258] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:52.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:53.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-258] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:53.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-258] INFO SimpleMessageListenerContainer - Restarting Consumer@2928ff58: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:49:54.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-259] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:56.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-259] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:49:56.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-258] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:58.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-259] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:49:59.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:49:59.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] INFO SimpleMessageListenerContainer - Restarting Consumer@e795d74: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:50:00.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:02.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:02.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:03.303 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:50:03.303 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:50:03.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-258] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:03.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-258] INFO SimpleMessageListenerContainer - Restarting Consumer@7dbe05c2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:04.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-259] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:05.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-259] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:05.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-259] INFO SimpleMessageListenerContainer - Restarting Consumer@264c6dc0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:50:06.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-260] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:06.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-259] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:08.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-260] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:08.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-259] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:09.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:09.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] INFO SimpleMessageListenerContainer - Restarting Consumer@1c4adaa9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:10.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:12.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-260] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:12.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:14.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:15.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-259] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:15.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-259] INFO SimpleMessageListenerContainer - Restarting Consumer@3e0b4611: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:16.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-260] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:18.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-260] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:18.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-260] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:19.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-260] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:19.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-260] INFO SimpleMessageListenerContainer - Restarting Consumer@20c54f52: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:20.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-261] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:21.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:21.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] INFO SimpleMessageListenerContainer - Restarting Consumer@4d0fa507: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:22.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:22.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-261] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:25.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:25.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-261] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:26.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-260] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:26.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-260] INFO SimpleMessageListenerContainer - Restarting Consumer@12feb41a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:27.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-261] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:29.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-261] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:29.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:31.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-261] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:32.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-261] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:32.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-261] INFO SimpleMessageListenerContainer - Restarting Consumer@484dc6f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:33.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-262] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:35.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-262] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:35.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-262] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:36.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:36.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] INFO SimpleMessageListenerContainer - Restarting Consumer@7c7f4439: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:37.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:38.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-261] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:38.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-261] INFO SimpleMessageListenerContainer - Restarting Consumer@3289855d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:39.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:39.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-262] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:41.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-262] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:41.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:42.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-262] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:42.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-262] INFO SimpleMessageListenerContainer - Restarting Consumer@776c1cae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:43.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-263] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:45.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-262] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:45.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-263] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:47.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-263] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:48.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:48.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] INFO SimpleMessageListenerContainer - Restarting Consumer@6739537e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:49.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:51.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:51.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:52.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-262] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:52.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-262] INFO SimpleMessageListenerContainer - Restarting Consumer@abe211: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:53.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-263] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:54.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-263] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:54.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-263] INFO SimpleMessageListenerContainer - Restarting Consumer@6c1b7b8b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:55.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-263] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:55.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-264] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:57.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-264] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:50:57.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-263] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:50:58.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:50:58.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] INFO SimpleMessageListenerContainer - Restarting Consumer@4bcbe382: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:50:59.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:00.003 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:51:01.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-264] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:01.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:03.304 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:51:03.305 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:51:03.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:04.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-263] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:04.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-263] INFO SimpleMessageListenerContainer - Restarting Consumer@52c02c66: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:05.649 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-264] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:06.603 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:51:07.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-264] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:07.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-264] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:08.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-264] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:08.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-264] INFO SimpleMessageListenerContainer - Restarting Consumer@7020b0fc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:09.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-265] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:10.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:10.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] INFO SimpleMessageListenerContainer - Restarting Consumer@7605fdee: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:11.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:11.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-265] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:13.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:13.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-265] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:14.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-264] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:14.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-264] INFO SimpleMessageListenerContainer - Restarting Consumer@3297d7c3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:15.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-265] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:17.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-265] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:17.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:19.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-265] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:20.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-265] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:20.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-265] INFO SimpleMessageListenerContainer - Restarting Consumer@2b155632: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:21.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-266] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:23.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-266] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:23.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-266] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:25.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:25.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] INFO SimpleMessageListenerContainer - Restarting Consumer@2a0421f9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:25.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:27.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-265] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:27.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-265] INFO SimpleMessageListenerContainer - Restarting Consumer@21859126: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:28.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:28.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-266] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:30.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:30.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-266] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:31.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-266] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:31.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-266] INFO SimpleMessageListenerContainer - Restarting Consumer@57f42b01: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:32.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-267] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:34.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-267] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:34.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-266] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:36.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-267] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:37.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:37.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] INFO SimpleMessageListenerContainer - Restarting Consumer@498199c1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:38.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:40.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:40.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:41.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-266] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:41.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-266] INFO SimpleMessageListenerContainer - Restarting Consumer@2697ab66: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:42.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-267] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:43.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-267] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:43.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-267] INFO SimpleMessageListenerContainer - Restarting Consumer@6914c034: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:44.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-267] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:44.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-268] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:46.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-268] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:46.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-267] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:47.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:47.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] INFO SimpleMessageListenerContainer - Restarting Consumer@546e85b0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:48.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:50.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:50.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-268] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:52.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:53.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-267] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:53.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-267] INFO SimpleMessageListenerContainer - Restarting Consumer@7f76c1a5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:54.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-268] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:56.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-268] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:51:56.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-268] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:57.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-268] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:57.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-268] INFO SimpleMessageListenerContainer - Restarting Consumer@17840678: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:51:58.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-269] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:51:59.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:51:59.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] INFO SimpleMessageListenerContainer - Restarting Consumer@4d7f6f1b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:52:00.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-269] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:00.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:02.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:02.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-269] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:03.300 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:52:03.300 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:52:03.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-268] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:03.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-268] INFO SimpleMessageListenerContainer - Restarting Consumer@245867c7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:04.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-269] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:52:06.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:06.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-269] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:08.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-269] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:09.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-269] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:09.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-269] INFO SimpleMessageListenerContainer - Restarting Consumer@1185e0fc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:10.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-270] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:12.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-270] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:12.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-270] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:13.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:13.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] INFO SimpleMessageListenerContainer - Restarting Consumer@1151d2a9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:14.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:15.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-269] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:15.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-269] INFO SimpleMessageListenerContainer - Restarting Consumer@6ceb7ef2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:16.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:16.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-270] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:18.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-270] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:18.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:19.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-270] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:19.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-270] INFO SimpleMessageListenerContainer - Restarting Consumer@55fccf4e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:20.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-271] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:22.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-270] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:22.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-271] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:24.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-271] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:25.963 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:25.963 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] INFO SimpleMessageListenerContainer - Restarting Consumer@1d7e885c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:26.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:28.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:28.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:30.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-270] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:30.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-270] INFO SimpleMessageListenerContainer - Restarting Consumer@bb36e7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:31.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-271] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:32.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-271] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:32.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-271] INFO SimpleMessageListenerContainer - Restarting Consumer@74b40c7d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:33.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-272] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:33.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-271] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:35.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-272] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:35.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-271] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:36.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:36.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] INFO SimpleMessageListenerContainer - Restarting Consumer@4bfabf18: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:37.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:39.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-272] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:39.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:41.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:42.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-271] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:42.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-271] INFO SimpleMessageListenerContainer - Restarting Consumer@390a987e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:43.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-272] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:45.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-272] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:45.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-272] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:46.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-272] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:46.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-272] INFO SimpleMessageListenerContainer - Restarting Consumer@28edf52e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:47.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-273] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:48.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:48.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] INFO SimpleMessageListenerContainer - Restarting Consumer@7984a178: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:49.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-273] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:49.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:51.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:51.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-273] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:52.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-272] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:52.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-272] INFO SimpleMessageListenerContainer - Restarting Consumer@fcd6225: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:53.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-273] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:55.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-273] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:52:55.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:57.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-273] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:52:58.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-273] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:52:58.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-273] INFO SimpleMessageListenerContainer - Restarting Consumer@377d6833: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:52:59.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-274] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:00.005 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:53:01.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-274] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:01.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-274] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:02.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:02.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] INFO SimpleMessageListenerContainer - Restarting Consumer@17a85777: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:03.302 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:53:03.303 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:53:03.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:04.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-273] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:04.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-273] INFO SimpleMessageListenerContainer - Restarting Consumer@1a1297a3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:05.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:05.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-274] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:06.596 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:53:07.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:07.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-274] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:08.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-274] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:08.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-274] INFO SimpleMessageListenerContainer - Restarting Consumer@5f9f7ce7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:09.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-275] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:11.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-275] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:11.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-274] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:13.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-275] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:14.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:14.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] INFO SimpleMessageListenerContainer - Restarting Consumer@46e444f4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:15.639 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:17.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:17.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:18.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-274] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:18.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-274] INFO SimpleMessageListenerContainer - Restarting Consumer@6a7a0146: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:19.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-275] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:20.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-275] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:20.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-275] INFO SimpleMessageListenerContainer - Restarting Consumer@ec38229: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:21.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-275] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:21.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-276] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:23.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-276] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:23.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-275] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:24.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:24.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] INFO SimpleMessageListenerContainer - Restarting Consumer@2bab1c31: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:25.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:27.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:27.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-276] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:29.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:30.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-275] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:30.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-275] INFO SimpleMessageListenerContainer - Restarting Consumer@7107ac8a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:31.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-276] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:33.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-276] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:33.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-276] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:34.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-276] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:34.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-276] INFO SimpleMessageListenerContainer - Restarting Consumer@24e4cc1f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:35.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-277] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:36.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:36.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] INFO SimpleMessageListenerContainer - Restarting Consumer@67322f8a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:37.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-277] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:37.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:39.964 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:39.964 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-277] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:41.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-276] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:41.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-276] INFO SimpleMessageListenerContainer - Restarting Consumer@3a7821ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:41.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-277] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:44.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:44.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-277] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:46.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-277] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:47.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-277] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:47.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-277] INFO SimpleMessageListenerContainer - Restarting Consumer@59a93ea3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:48.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-278] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:50.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-278] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:50.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-278] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:51.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:51.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] INFO SimpleMessageListenerContainer - Restarting Consumer@530e94d7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:52.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:53.208 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-277] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:53.208 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-277] INFO SimpleMessageListenerContainer - Restarting Consumer@3861e6c8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:54.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:54.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-278] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:56.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-278] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:53:56.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:53:57.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-278] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:53:57.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-278] INFO SimpleMessageListenerContainer - Restarting Consumer@72f424b0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:53:58.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-279] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:54:00.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-279] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:00.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-278] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:02.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-279] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:54:03.300 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:54:03.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:03.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] INFO SimpleMessageListenerContainer - Restarting Consumer@60c03cde: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:04.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:06.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:06.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:06.601 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:54:07.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-278] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:07.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-278] INFO SimpleMessageListenerContainer - Restarting Consumer@1d9feeab: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:08.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-279] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:09.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-279] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:09.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-279] INFO SimpleMessageListenerContainer - Restarting Consumer@49f2843c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:10.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-280] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:10.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-279] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:12.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-280] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:12.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-279] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:13.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:13.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] INFO SimpleMessageListenerContainer - Restarting Consumer@40443503: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:14.424 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:16.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:16.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-280] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:18.488 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:19.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-279] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:19.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-279] INFO SimpleMessageListenerContainer - Restarting Consumer@434a3c66: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:20.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-280] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:22.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-280] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:22.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-280] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:23.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-280] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:23.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-280] INFO SimpleMessageListenerContainer - Restarting Consumer@38d2d9ec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:24.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-281] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:25.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:25.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] INFO SimpleMessageListenerContainer - Restarting Consumer@765096f1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:26.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-281] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:26.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:28.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-281] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:28.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:29.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-280] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:29.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-280] INFO SimpleMessageListenerContainer - Restarting Consumer@3963313: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:30.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-281] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:32.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:32.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-281] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:34.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-281] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:35.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-281] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:35.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-281] INFO SimpleMessageListenerContainer - Restarting Consumer@6edc8b12: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:36.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-282] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:38.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-282] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:38.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-282] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:39.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:39.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] INFO SimpleMessageListenerContainer - Restarting Consumer@7bbeec3e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:40.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:41.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-281] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:41.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-281] INFO SimpleMessageListenerContainer - Restarting Consumer@19f3232e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:42.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-282] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:42.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:44.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:44.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-282] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:45.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-282] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:45.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-282] INFO SimpleMessageListenerContainer - Restarting Consumer@35f02e86: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:46.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-283] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:48.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-283] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:48.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-282] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:50.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-283] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:51.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:51.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] INFO SimpleMessageListenerContainer - Restarting Consumer@44759d23: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:52.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:55.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:54:55.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:56.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-282] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:56.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-282] INFO SimpleMessageListenerContainer - Restarting Consumer@7962cee8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:57.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-283] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:58.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-283] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:54:58.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-283] INFO SimpleMessageListenerContainer - Restarting Consumer@42b9e8f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:54:59.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-284] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:54:59.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-283] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:55:01.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-284] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:01.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-283] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:02.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:02.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] INFO SimpleMessageListenerContainer - Restarting Consumer@7e3cd2d0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:03.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:55:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:55:05.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:05.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-284] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:55:07.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:08.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-283] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:08.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-283] INFO SimpleMessageListenerContainer - Restarting Consumer@1dd53b0c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:09.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-284] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:11.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-284] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:11.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-284] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:12.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-284] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:12.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-284] INFO SimpleMessageListenerContainer - Restarting Consumer@162b260f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:13.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-285] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:14.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:14.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] INFO SimpleMessageListenerContainer - Restarting Consumer@57b3bf2d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:15.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-285] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:15.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:17.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-285] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:17.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:18.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-284] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:18.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-284] INFO SimpleMessageListenerContainer - Restarting Consumer@41192e2f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:19.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-285] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:21.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-285] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:21.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:23.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-285] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:24.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-285] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:24.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-285] INFO SimpleMessageListenerContainer - Restarting Consumer@13083678: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:25.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-286] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:27.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-286] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:27.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-286] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:28.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:28.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] INFO SimpleMessageListenerContainer - Restarting Consumer@385d8eca: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:29.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:30.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-285] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:30.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-285] INFO SimpleMessageListenerContainer - Restarting Consumer@22e6c094: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:31.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-286] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:31.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:33.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:33.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-286] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:34.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-286] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:34.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-286] INFO SimpleMessageListenerContainer - Restarting Consumer@63680584: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:35.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-287] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:37.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-287] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:37.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-286] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:39.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-287] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:40.934 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:40.934 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] INFO SimpleMessageListenerContainer - Restarting Consumer@1d12ee8a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:41.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:43.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:43.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:44.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-286] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:44.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-286] INFO SimpleMessageListenerContainer - Restarting Consumer@15fb7899: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:45.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-287] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:47.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-287] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:47.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-287] INFO SimpleMessageListenerContainer - Restarting Consumer@6efed9c6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:48.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-287] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:48.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-288] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:50.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-288] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:50.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-287] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:51.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:51.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] INFO SimpleMessageListenerContainer - Restarting Consumer@984e71f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:52.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:54.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:55:54.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-288] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:56.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:55:57.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-287] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:55:57.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-287] INFO SimpleMessageListenerContainer - Restarting Consumer@586d0af5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:55:58.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-288] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:00.002 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:56:00.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-288] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:00.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-288] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:01.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-288] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:01.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-288] INFO SimpleMessageListenerContainer - Restarting Consumer@5e4f0c09: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:02.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-289] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:03.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:03.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] INFO SimpleMessageListenerContainer - Restarting Consumer@61d38737: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:56:03.295 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:56:04.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-289] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:04.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:06.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:06.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-289] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:06.599 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:56:07.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-288] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:07.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-288] INFO SimpleMessageListenerContainer - Restarting Consumer@706f8228: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:08.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-289] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:10.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-289] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:10.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:12.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-289] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:13.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-289] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:13.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-289] INFO SimpleMessageListenerContainer - Restarting Consumer@1fbac33: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:14.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-290] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:16.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-290] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:16.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-290] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:17.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:17.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] INFO SimpleMessageListenerContainer - Restarting Consumer@4ff3bc31: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:18.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:19.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-289] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:19.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-289] INFO SimpleMessageListenerContainer - Restarting Consumer@404416c3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:20.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:20.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-290] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:22.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:22.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-290] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:23.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-290] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:23.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-290] INFO SimpleMessageListenerContainer - Restarting Consumer@70893bcf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:24.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-291] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:26.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-291] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:26.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-290] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:28.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-291] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:29.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:29.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] INFO SimpleMessageListenerContainer - Restarting Consumer@4e442531: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:30.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:32.639 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:32.639 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:33.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-290] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:33.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-290] INFO SimpleMessageListenerContainer - Restarting Consumer@16423dda: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:34.649 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-291] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:35.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-291] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:35.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-291] INFO SimpleMessageListenerContainer - Restarting Consumer@6e54ed5b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:36.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-292] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:36.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-291] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:38.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-291] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:38.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-292] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:39.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:39.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] INFO SimpleMessageListenerContainer - Restarting Consumer@42c99d68: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:40.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:42.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-292] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:42.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:44.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:45.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-291] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:45.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-291] INFO SimpleMessageListenerContainer - Restarting Consumer@25cf199e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:46.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-292] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:48.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-292] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:48.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-292] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:49.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-292] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:49.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-292] INFO SimpleMessageListenerContainer - Restarting Consumer@4a8e351c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:50.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-293] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:51.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:51.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] INFO SimpleMessageListenerContainer - Restarting Consumer@40745bcc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:52.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:52.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-293] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:54.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:54.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-293] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:56.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-292] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:56:56.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-292] INFO SimpleMessageListenerContainer - Restarting Consumer@2ae0e98a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:56:57.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-293] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:56:59.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-293] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:56:59.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:57:01.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-293] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:02.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-293] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:02.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-293] INFO SimpleMessageListenerContainer - Restarting Consumer@226f85c6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:03.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-294] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:57:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:57:05.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-294] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:05.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-294] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:06.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:06.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] INFO SimpleMessageListenerContainer - Restarting Consumer@6f9378c9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:06.596 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:57:07.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:08.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-293] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:08.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-293] INFO SimpleMessageListenerContainer - Restarting Consumer@19769533: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:09.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:09.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-294] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:11.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-294] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:11.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:12.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-294] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:12.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-294] INFO SimpleMessageListenerContainer - Restarting Consumer@607c837e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:13.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-295] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:15.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-294] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:15.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-295] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:17.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-295] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:18.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:18.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] INFO SimpleMessageListenerContainer - Restarting Consumer@ccf17d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:19.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:21.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:21.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:22.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-294] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:22.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-294] INFO SimpleMessageListenerContainer - Restarting Consumer@19b060fd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:23.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-295] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:24.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-295] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:24.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-295] INFO SimpleMessageListenerContainer - Restarting Consumer@5865be8b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:25.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-295] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:25.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-296] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:27.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-295] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:27.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-296] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:28.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:28.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] INFO SimpleMessageListenerContainer - Restarting Consumer@6881a719: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:29.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:31.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-296] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:31.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:33.719 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:34.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-295] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:34.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-295] INFO SimpleMessageListenerContainer - Restarting Consumer@6451740e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:35.729 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-296] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:37.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-296] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:37.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-296] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:38.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-296] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:38.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-296] INFO SimpleMessageListenerContainer - Restarting Consumer@47f30f4b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:39.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-297] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:40.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:40.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] INFO SimpleMessageListenerContainer - Restarting Consumer@975ac0a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:41.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-297] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:41.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:43.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-297] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:43.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:44.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-296] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:44.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-296] INFO SimpleMessageListenerContainer - Restarting Consumer@5a95e0ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:45.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-297] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:47.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-297] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:47.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:50.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-297] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:51.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-297] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:51.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-297] INFO SimpleMessageListenerContainer - Restarting Consumer@1f94a839: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:52.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-298] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:54.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-298] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:54.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-298] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:55.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:55.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] INFO SimpleMessageListenerContainer - Restarting Consumer@6d4bde4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:56.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:57:57.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-297] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:57:57.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-297] INFO SimpleMessageListenerContainer - Restarting Consumer@25d556d6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:57:58.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:57:58.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-298] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:00.003 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:58:00.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-298] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:00.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:01.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-298] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:01.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-298] INFO SimpleMessageListenerContainer - Restarting Consumer@485ab143: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:02.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-299] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:03.302 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:58:03.302 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:58:04.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-298] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:04.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-299] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:06.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-299] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:58:07.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:07.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] INFO SimpleMessageListenerContainer - Restarting Consumer@423a73ac: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:08.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:10.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:10.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:11.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-298] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:11.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-298] INFO SimpleMessageListenerContainer - Restarting Consumer@1cecd7cf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:12.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-299] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:13.413 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-299] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:13.413 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-299] INFO SimpleMessageListenerContainer - Restarting Consumer@283794d9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:14.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-299] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:14.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-300] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:16.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-299] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:16.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-300] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:17.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:17.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] INFO SimpleMessageListenerContainer - Restarting Consumer@302daf16: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:18.445 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:20.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:20.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-300] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:22.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:23.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-299] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:23.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-299] INFO SimpleMessageListenerContainer - Restarting Consumer@42e6384a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:24.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-300] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:26.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-300] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:26.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-300] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:27.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-300] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:27.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-300] INFO SimpleMessageListenerContainer - Restarting Consumer@7d58ff26: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:28.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-301] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:29.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:29.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] INFO SimpleMessageListenerContainer - Restarting Consumer@2ac5913a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:30.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-301] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:30.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:32.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:32.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-301] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:33.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-300] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:33.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-300] INFO SimpleMessageListenerContainer - Restarting Consumer@1d86c16: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:34.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-301] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:36.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-301] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:36.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:38.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-301] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:39.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-301] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:39.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-301] INFO SimpleMessageListenerContainer - Restarting Consumer@4e336e5f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:40.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-302] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:42.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-302] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:42.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-302] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:43.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:43.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] INFO SimpleMessageListenerContainer - Restarting Consumer@659a6901: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:44.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:45.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-301] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:45.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-301] INFO SimpleMessageListenerContainer - Restarting Consumer@62ed9795: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:46.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-302] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:46.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:48.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-302] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:48.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:49.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-302] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:49.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-302] INFO SimpleMessageListenerContainer - Restarting Consumer@36ca67a9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:50.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-303] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:53.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-302] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:53.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-303] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:55.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-303] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:56.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:58:56.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] INFO SimpleMessageListenerContainer - Restarting Consumer@5bdc7a32: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:58:57.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:58:59.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:58:59.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:00.010 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:59:00.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-302] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:00.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-302] INFO SimpleMessageListenerContainer - Restarting Consumer@329fe4b9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:01.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-303] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:02.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-303] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:02.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-303] INFO SimpleMessageListenerContainer - Restarting Consumer@269df3a6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:03.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-304] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:03.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-303] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:03.297 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:59:03.297 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.22:59:05.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-303] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:05.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-304] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:06.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:06.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] INFO SimpleMessageListenerContainer - Restarting Consumer@45480b22: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.22:59:07.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:09.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:09.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-304] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:11.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:12.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-303] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:12.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-303] INFO SimpleMessageListenerContainer - Restarting Consumer@308ee222: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:13.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-304] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:15.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-304] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:15.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-304] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:16.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-304] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:16.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-304] INFO SimpleMessageListenerContainer - Restarting Consumer@1262454: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:17.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-305] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:18.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:18.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] INFO SimpleMessageListenerContainer - Restarting Consumer@346521a2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:19.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-305] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:19.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:21.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:21.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-305] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:22.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-304] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:22.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-304] INFO SimpleMessageListenerContainer - Restarting Consumer@669f6f8d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:23.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-305] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:25.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-305] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:25.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:27.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-305] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:28.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-305] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:28.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-305] INFO SimpleMessageListenerContainer - Restarting Consumer@2610c219: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:29.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-306] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:31.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-306] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:31.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-306] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:32.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:32.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] INFO SimpleMessageListenerContainer - Restarting Consumer@2ff3d31b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:33.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:34.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-305] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:34.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-305] INFO SimpleMessageListenerContainer - Restarting Consumer@310b5570: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:35.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:35.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-306] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:37.786 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:37.786 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-306] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:38.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-306] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:38.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-306] INFO SimpleMessageListenerContainer - Restarting Consumer@47c9bceb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:39.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-307] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:41.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-306] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:41.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-307] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:43.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-307] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:44.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:44.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] INFO SimpleMessageListenerContainer - Restarting Consumer@1bce9d2e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:45.895 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:47.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:47.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:48.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-306] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:48.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-306] INFO SimpleMessageListenerContainer - Restarting Consumer@2a54d0a1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:49.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-307] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:51.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-307] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:51.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-307] INFO SimpleMessageListenerContainer - Restarting Consumer@386d9fd0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:51.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-307] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:51.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-308] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:54.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-308] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:54.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-307] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:55.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.22:59:55.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] INFO SimpleMessageListenerContainer - Restarting Consumer@538d0519: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.22:59:56.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.22:59:58.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.22:59:58.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-308] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:00.007 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:00:00.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:01.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-307] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:01.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-307] INFO SimpleMessageListenerContainer - Restarting Consumer@799b8f36: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:02.132 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-308] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:03.297 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:00:03.297 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:00:04.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-308] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:04.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-308] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:05.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-308] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:05.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-308] INFO SimpleMessageListenerContainer - Restarting Consumer@259ed829: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:06.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-309] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:00:07.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:07.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] INFO SimpleMessageListenerContainer - Restarting Consumer@50e5cacf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:08.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-309] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:08.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:10.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:10.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-309] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:11.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-308] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:11.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-308] INFO SimpleMessageListenerContainer - Restarting Consumer@150befb2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:12.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-309] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:14.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:14.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-309] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:16.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-309] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:17.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-309] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:17.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-309] INFO SimpleMessageListenerContainer - Restarting Consumer@6b18e7bc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:18.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-310] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:20.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-310] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:20.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-310] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:21.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:21.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] INFO SimpleMessageListenerContainer - Restarting Consumer@8f8b4a5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:22.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:23.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-309] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:23.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-309] INFO SimpleMessageListenerContainer - Restarting Consumer@3c2553af: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:24.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:24.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-310] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:26.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-310] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:26.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:27.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-310] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:27.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-310] INFO SimpleMessageListenerContainer - Restarting Consumer@2e26aebc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:28.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-311] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:30.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-311] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:30.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-310] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:32.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-311] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:33.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:33.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] INFO SimpleMessageListenerContainer - Restarting Consumer@6157466c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:34.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:36.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:36.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:37.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-310] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:37.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-310] INFO SimpleMessageListenerContainer - Restarting Consumer@5e464e25: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:38.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-311] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:39.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-311] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:39.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-311] INFO SimpleMessageListenerContainer - Restarting Consumer@12cef96c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:40.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-311] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:40.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-312] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:42.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-311] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:42.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-312] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:43.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:43.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] INFO SimpleMessageListenerContainer - Restarting Consumer@5e697275: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:44.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:46.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:46.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-312] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:48.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:49.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-311] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:49.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-311] INFO SimpleMessageListenerContainer - Restarting Consumer@3dd27dd1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:50.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-312] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:52.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-312] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:52.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-312] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:53.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-312] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:53.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-312] INFO SimpleMessageListenerContainer - Restarting Consumer@54de0432: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:54.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-313] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:55.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:00:55.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] INFO SimpleMessageListenerContainer - Restarting Consumer@d7f496d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:00:56.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-313] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:00:56.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:59.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-313] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:00:59.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:01:00.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-312] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:00.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-312] INFO SimpleMessageListenerContainer - Restarting Consumer@7a363e46: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:01.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-313] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:03.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-313] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:03.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:01:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:01:05.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-313] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:06.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-313] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:06.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-313] INFO SimpleMessageListenerContainer - Restarting Consumer@3d952f3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:01:07.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-314] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:09.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-314] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:09.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-314] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:10.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:10.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] INFO SimpleMessageListenerContainer - Restarting Consumer@4b0ebf39: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:11.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:12.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-313] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:12.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-313] INFO SimpleMessageListenerContainer - Restarting Consumer@1abf9ce1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:13.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:13.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-314] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:15.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-314] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:15.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:16.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-314] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:16.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-314] INFO SimpleMessageListenerContainer - Restarting Consumer@71d0b514: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:17.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-315] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:19.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-315] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:19.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-314] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:21.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-315] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:22.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:22.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] INFO SimpleMessageListenerContainer - Restarting Consumer@b43b30: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:23.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:25.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:25.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:26.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-314] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:26.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-314] INFO SimpleMessageListenerContainer - Restarting Consumer@43a86463: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:27.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-315] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:28.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-315] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:28.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-315] INFO SimpleMessageListenerContainer - Restarting Consumer@1d894dd0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:29.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-316] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:29.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-315] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:31.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-316] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:31.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-315] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:32.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:32.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] INFO SimpleMessageListenerContainer - Restarting Consumer@2fe7b488: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:33.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:35.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:35.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-316] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:37.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:38.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-315] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:38.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-315] INFO SimpleMessageListenerContainer - Restarting Consumer@7783cd7a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:39.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-316] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:41.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-316] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:41.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-316] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:42.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-316] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:42.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-316] INFO SimpleMessageListenerContainer - Restarting Consumer@1303c5fd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:43.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-317] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:44.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:44.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] INFO SimpleMessageListenerContainer - Restarting Consumer@6c436b37: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:45.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:45.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-317] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:47.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:47.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-317] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:48.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-316] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:48.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-316] INFO SimpleMessageListenerContainer - Restarting Consumer@9eefc07: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:49.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-317] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:51.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:51.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-317] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:53.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-317] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:54.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-317] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:54.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-317] INFO SimpleMessageListenerContainer - Restarting Consumer@56f50401: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:55.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-318] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:57.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-318] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:01:57.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-318] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:01:58.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:01:58.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] INFO SimpleMessageListenerContainer - Restarting Consumer@2dbb6e7c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:01:59.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:00.002 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:02:01.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-317] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:01.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-317] INFO SimpleMessageListenerContainer - Restarting Consumer@23e501b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:02.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:02.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-318] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:02:03.299 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:02:04.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-318] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:04.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:05.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-318] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:05.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-318] INFO SimpleMessageListenerContainer - Restarting Consumer@192755ae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:06.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-319] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:02:08.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-319] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:08.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-318] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:10.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-319] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:11.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:11.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] INFO SimpleMessageListenerContainer - Restarting Consumer@675f049e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:12.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:14.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:14.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:15.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-318] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:15.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-318] INFO SimpleMessageListenerContainer - Restarting Consumer@15a817db: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:16.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-319] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:17.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-319] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:17.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-319] INFO SimpleMessageListenerContainer - Restarting Consumer@2280200f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:18.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-320] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:18.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-319] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:20.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-320] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:20.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-319] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:21.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:21.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] INFO SimpleMessageListenerContainer - Restarting Consumer@2c0d244b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:22.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:24.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:24.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-320] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:26.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:27.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-319] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:27.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-319] INFO SimpleMessageListenerContainer - Restarting Consumer@3123a7e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:28.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-320] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:30.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-320] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:30.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-320] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:31.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-320] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:31.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-320] INFO SimpleMessageListenerContainer - Restarting Consumer@4fa11a73: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:32.553 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-321] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:33.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:33.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] INFO SimpleMessageListenerContainer - Restarting Consumer@3f8b15a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:34.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-321] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:34.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:36.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:36.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-321] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:37.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-320] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:37.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-320] INFO SimpleMessageListenerContainer - Restarting Consumer@44665539: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:38.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-321] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:40.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:40.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-321] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:42.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-321] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:43.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-321] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:43.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-321] INFO SimpleMessageListenerContainer - Restarting Consumer@4c695c18: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:44.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-322] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:46.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-322] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:46.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-322] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:47.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:47.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] INFO SimpleMessageListenerContainer - Restarting Consumer@16edb22: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:48.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:49.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-321] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:49.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-321] INFO SimpleMessageListenerContainer - Restarting Consumer@259e5562: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:50.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:50.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-322] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:52.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-322] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:52.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:53.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-322] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:53.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-322] INFO SimpleMessageListenerContainer - Restarting Consumer@701e59d4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:02:54.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-323] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:56.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-323] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:02:56.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-322] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:58.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-323] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:02:59.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:02:59.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] INFO SimpleMessageListenerContainer - Restarting Consumer@25bccc75: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:00.000 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:03:00.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:02.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:02.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:03:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:03:04.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-322] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:04.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-322] INFO SimpleMessageListenerContainer - Restarting Consumer@4b760a97: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:04.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-323] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:06.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-323] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:06.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-323] INFO SimpleMessageListenerContainer - Restarting Consumer@4e727c03: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:03:07.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-323] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:07.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-324] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:09.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-323] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:09.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-324] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:10.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:10.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] INFO SimpleMessageListenerContainer - Restarting Consumer@338ef804: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:11.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:13.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:13.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-324] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:15.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:16.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-323] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:16.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-323] INFO SimpleMessageListenerContainer - Restarting Consumer@45ddb33f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:17.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-324] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:19.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-324] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:19.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-324] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:20.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-324] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:20.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-324] INFO SimpleMessageListenerContainer - Restarting Consumer@3165bb61: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:21.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-325] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:22.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:22.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] INFO SimpleMessageListenerContainer - Restarting Consumer@17eb333d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:23.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:23.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-325] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:25.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-325] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:25.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:26.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-324] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:26.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-324] INFO SimpleMessageListenerContainer - Restarting Consumer@5277b088: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:27.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-325] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:29.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:29.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-325] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:31.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-325] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:32.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-325] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:32.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-325] INFO SimpleMessageListenerContainer - Restarting Consumer@2c2c80ae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:33.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-326] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:35.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-326] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:35.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-326] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:36.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:36.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] INFO SimpleMessageListenerContainer - Restarting Consumer@6ab7a964: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:37.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:38.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-325] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:38.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-325] INFO SimpleMessageListenerContainer - Restarting Consumer@5d4159c5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:39.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:39.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-326] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:41.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-326] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:41.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:42.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-326] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:42.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-326] INFO SimpleMessageListenerContainer - Restarting Consumer@57024819: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:43.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-327] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:45.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-327] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:45.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-326] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:47.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-327] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:48.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:48.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] INFO SimpleMessageListenerContainer - Restarting Consumer@4513491d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:49.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:51.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:51.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:52.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-326] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:52.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-326] INFO SimpleMessageListenerContainer - Restarting Consumer@2bbc7504: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:53.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-327] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:54.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-327] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:54.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-327] INFO SimpleMessageListenerContainer - Restarting Consumer@37964b88: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-328] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-327] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:57.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-328] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:03:57.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-327] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:03:58.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:03:58.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] INFO SimpleMessageListenerContainer - Restarting Consumer@3ba65b1c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:03:59.878 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:00.004 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:04:01.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:01.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:04:03.300 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:04:03.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-328] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:04.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-327] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:04.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-327] INFO SimpleMessageListenerContainer - Restarting Consumer@1fe8db89: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:05.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-328] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:04:07.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-328] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:07.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-328] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:09.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:09.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] INFO SimpleMessageListenerContainer - Restarting Consumer@6251b5e0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:10.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:11.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-328] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:11.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-328] INFO SimpleMessageListenerContainer - Restarting Consumer@114086f3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:12.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:12.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-329] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:14.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:14.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-329] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:15.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-328] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:15.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-328] INFO SimpleMessageListenerContainer - Restarting Consumer@1b49a6d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:16.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-329] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:18.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-329] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:18.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-329] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:20.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-329] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:21.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:21.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] INFO SimpleMessageListenerContainer - Restarting Consumer@37bef282: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:22.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:24.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:24.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:25.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-329] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:25.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-329] INFO SimpleMessageListenerContainer - Restarting Consumer@1145f4a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:26.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-330] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:27.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-329] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:27.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-329] INFO SimpleMessageListenerContainer - Restarting Consumer@1f0e8d6b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:28.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-330] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:28.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-330] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:30.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-330] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:30.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-330] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:31.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:31.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] INFO SimpleMessageListenerContainer - Restarting Consumer@1efd2fa6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:32.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:34.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-330] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:34.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:36.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:37.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-330] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:37.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-330] INFO SimpleMessageListenerContainer - Restarting Consumer@1745e3e4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:38.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-331] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:40.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-331] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:40.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-331] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:41.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-330] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:41.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-330] INFO SimpleMessageListenerContainer - Restarting Consumer@31349988: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:42.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-331] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:43.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:43.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] INFO SimpleMessageListenerContainer - Restarting Consumer@4ae3c43e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:44.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-331] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:44.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:46.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-331] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:46.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:47.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-331] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:47.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-331] INFO SimpleMessageListenerContainer - Restarting Consumer@6ba9857: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:48.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-332] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:50.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-332] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:50.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:52.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-332] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:53.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-331] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:53.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-331] INFO SimpleMessageListenerContainer - Restarting Consumer@51ee21f2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:54.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-332] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:56.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-332] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:04:56.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-332] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:57.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:57.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] INFO SimpleMessageListenerContainer - Restarting Consumer@7191625: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:04:58.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:04:59.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-332] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:04:59.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-332] INFO SimpleMessageListenerContainer - Restarting Consumer@7009e7db: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:00.002 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:05:00.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:00.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-333] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:02.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:02.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-333] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:05:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:05:03.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-332] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:03.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-332] INFO SimpleMessageListenerContainer - Restarting Consumer@1076b5d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:04.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-333] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:05:06.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-333] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:06.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-333] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:08.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-333] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:09.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:09.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] INFO SimpleMessageListenerContainer - Restarting Consumer@5ef6b58e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:10.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:12.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:12.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:14.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-333] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:14.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-333] INFO SimpleMessageListenerContainer - Restarting Consumer@5faa9814: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:15.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-334] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:16.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-333] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:16.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-333] INFO SimpleMessageListenerContainer - Restarting Consumer@af255df: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:17.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-334] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:17.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-334] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:19.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-334] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:19.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-334] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:20.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:20.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] INFO SimpleMessageListenerContainer - Restarting Consumer@daec5f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:21.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:23.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:23.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-334] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:25.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:26.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-334] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:26.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-334] INFO SimpleMessageListenerContainer - Restarting Consumer@58beb119: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:27.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-335] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:29.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-335] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:29.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-335] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:30.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-334] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:30.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-334] INFO SimpleMessageListenerContainer - Restarting Consumer@13609381: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:31.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-335] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:32.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:32.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] INFO SimpleMessageListenerContainer - Restarting Consumer@3d2437f0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:33.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-335] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:33.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:35.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-335] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:35.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:36.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-335] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:36.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-335] INFO SimpleMessageListenerContainer - Restarting Consumer@64c84298: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:37.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-336] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:39.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-336] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:39.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:41.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-336] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:42.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-335] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:42.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-335] INFO SimpleMessageListenerContainer - Restarting Consumer@46b63e97: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:43.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-336] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:45.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-336] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:45.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-336] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:46.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:46.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] INFO SimpleMessageListenerContainer - Restarting Consumer@31f9965c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:47.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:48.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-336] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:48.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-336] INFO SimpleMessageListenerContainer - Restarting Consumer@4af1acab: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:49.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:49.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-337] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:51.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-337] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:51.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:52.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-336] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:52.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-336] INFO SimpleMessageListenerContainer - Restarting Consumer@a526640: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:53.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-337] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:55.638 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-337] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:05:55.638 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-337] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:57.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-337] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:05:58.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:05:58.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] INFO SimpleMessageListenerContainer - Restarting Consumer@498a095d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:05:59.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:00.006 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:06:01.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:01.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:02.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-337] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:02.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-337] INFO SimpleMessageListenerContainer - Restarting Consumer@29ab7df9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:03.304 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:06:03.304 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:06:03.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-338] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:04.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-337] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:04.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-337] INFO SimpleMessageListenerContainer - Restarting Consumer@46d875f7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:05.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-338] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:05.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-338] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:06:07.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-338] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:07.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-338] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:08.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:08.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] INFO SimpleMessageListenerContainer - Restarting Consumer@51a8eb3c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:09.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:11.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:11.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-338] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:13.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:14.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-338] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:14.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-338] INFO SimpleMessageListenerContainer - Restarting Consumer@70045c8a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:15.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-339] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:17.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-339] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:17.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-339] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:19.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-338] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:19.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-338] INFO SimpleMessageListenerContainer - Restarting Consumer@5795d008: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:20.025 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-339] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:21.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:21.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] INFO SimpleMessageListenerContainer - Restarting Consumer@7ece0ba1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:22.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:22.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-339] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:24.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:24.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-339] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:25.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-339] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:25.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-339] INFO SimpleMessageListenerContainer - Restarting Consumer@477eaf54: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:26.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-340] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:28.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-340] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:28.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:30.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-340] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:31.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-339] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:31.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-339] INFO SimpleMessageListenerContainer - Restarting Consumer@74da63a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:32.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-340] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:34.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-340] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:34.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-340] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:35.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:35.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] INFO SimpleMessageListenerContainer - Restarting Consumer@466392b9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:36.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:37.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-340] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:37.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-340] INFO SimpleMessageListenerContainer - Restarting Consumer@618e7bcb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:38.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:38.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-341] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:40.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-341] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:40.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:41.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-340] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:41.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-340] INFO SimpleMessageListenerContainer - Restarting Consumer@d2363e7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:42.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-341] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:44.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-341] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:44.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-341] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:46.431 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-341] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:47.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:47.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] INFO SimpleMessageListenerContainer - Restarting Consumer@5f851ff4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:48.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:50.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:50.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:51.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-341] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:51.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-341] INFO SimpleMessageListenerContainer - Restarting Consumer@41a4d44d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:52.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-342] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:53.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-341] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:53.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-341] INFO SimpleMessageListenerContainer - Restarting Consumer@3393f109: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:54.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-342] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:54.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-342] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:56.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-342] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:06:56.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-342] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:06:57.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:06:57.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] INFO SimpleMessageListenerContainer - Restarting Consumer@6ee67ffc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:06:58.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:07:00.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-342] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:00.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:02.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:03.302 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:07:03.302 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:07:03.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-342] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:03.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-342] INFO SimpleMessageListenerContainer - Restarting Consumer@7e5352cb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:04.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-343] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:07:06.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-343] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:06.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-343] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:07.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-342] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:07.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-342] INFO SimpleMessageListenerContainer - Restarting Consumer@13f59ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:08.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-343] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:09.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:09.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] INFO SimpleMessageListenerContainer - Restarting Consumer@62bb4823: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:10.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-343] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:10.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:12.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-343] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:12.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:13.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-343] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:13.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-343] INFO SimpleMessageListenerContainer - Restarting Consumer@709436a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:14.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-344] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:16.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:16.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-344] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:18.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-344] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:19.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-343] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:19.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-343] INFO SimpleMessageListenerContainer - Restarting Consumer@3a30c6bc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:20.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-344] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:22.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-344] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:22.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-344] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:23.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:23.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] INFO SimpleMessageListenerContainer - Restarting Consumer@3b59970a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:24.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:26.005 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-344] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:26.005 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-344] INFO SimpleMessageListenerContainer - Restarting Consumer@50093e66: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:26.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-345] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:26.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:29.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-345] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:29.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:30.076 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-344] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:30.076 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-344] INFO SimpleMessageListenerContainer - Restarting Consumer@63de0a60: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:31.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-345] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:33.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-345] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:33.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-345] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:35.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-345] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:36.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:36.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] INFO SimpleMessageListenerContainer - Restarting Consumer@6f4112af: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:37.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:39.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:39.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:40.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-345] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:40.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-345] INFO SimpleMessageListenerContainer - Restarting Consumer@26a0c8f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:41.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-346] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:42.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-345] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:42.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-345] INFO SimpleMessageListenerContainer - Restarting Consumer@1b17a010: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:43.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-346] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:43.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-346] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:45.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-346] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:45.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-346] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:46.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:46.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] INFO SimpleMessageListenerContainer - Restarting Consumer@b1d3775: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:47.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:49.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:49.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-346] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:51.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:52.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-346] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:52.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-346] INFO SimpleMessageListenerContainer - Restarting Consumer@78635b49: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:53.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-347] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:55.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-347] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:07:55.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-347] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:56.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-346] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:56.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-346] INFO SimpleMessageListenerContainer - Restarting Consumer@10d9a814: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:57.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-347] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:58.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:07:58.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] INFO SimpleMessageListenerContainer - Restarting Consumer@657813d1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:07:59.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:07:59.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-347] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:00.005 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:08:01.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-347] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:01.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:02.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-347] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:02.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-347] INFO SimpleMessageListenerContainer - Restarting Consumer@1e6ed48a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:08:03.300 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:08:03.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-348] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:05.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:05.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-348] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:06.596 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:08:07.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-348] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:08.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-347] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:08.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-347] INFO SimpleMessageListenerContainer - Restarting Consumer@7ffb1726: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:09.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-348] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:11.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-348] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:11.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-348] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:12.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:12.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] INFO SimpleMessageListenerContainer - Restarting Consumer@71b69e53: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:13.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:14.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-348] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:14.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-348] INFO SimpleMessageListenerContainer - Restarting Consumer@349ee47f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:15.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:15.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-349] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:17.786 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-349] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:17.786 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:18.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-348] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:18.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-348] INFO SimpleMessageListenerContainer - Restarting Consumer@370a9acc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:19.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-349] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:21.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-349] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:21.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-349] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:23.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-349] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:24.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:24.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] INFO SimpleMessageListenerContainer - Restarting Consumer@6a047c44: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:25.919 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:27.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:27.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:28.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-349] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:28.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-349] INFO SimpleMessageListenerContainer - Restarting Consumer@4cbfc764: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:29.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-350] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:31.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-349] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:31.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-349] INFO SimpleMessageListenerContainer - Restarting Consumer@1fea3274: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:32.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-350] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:32.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-350] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:34.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-350] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:34.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-350] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:35.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:35.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] INFO SimpleMessageListenerContainer - Restarting Consumer@3d8cb3d6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:36.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:38.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-350] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:38.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:40.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:41.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-350] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:41.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-350] INFO SimpleMessageListenerContainer - Restarting Consumer@23afc7c3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:42.155 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-351] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:44.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-351] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:44.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-351] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:45.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-350] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:45.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-350] INFO SimpleMessageListenerContainer - Restarting Consumer@4f49fe56: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:46.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-351] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:47.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:47.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] INFO SimpleMessageListenerContainer - Restarting Consumer@7f15231c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:48.246 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-351] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:48.246 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:50.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:50.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-351] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:51.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-351] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:51.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-351] INFO SimpleMessageListenerContainer - Restarting Consumer@ff7333a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:52.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-352] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:54.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-352] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:08:54.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:56.357 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-352] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:08:57.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-351] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:08:57.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-351] INFO SimpleMessageListenerContainer - Restarting Consumer@ec3ebe8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:08:58.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-352] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:00.015 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:09:00.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-352] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:00.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-352] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:01.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:01.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] INFO SimpleMessageListenerContainer - Restarting Consumer@1993bc76: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:02.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:09:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:09:03.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-352] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:03.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-352] INFO SimpleMessageListenerContainer - Restarting Consumer@1447a41e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:04.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:04.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-353] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:06.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-353] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:06.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:06.598 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:09:07.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-352] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:07.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-352] INFO SimpleMessageListenerContainer - Restarting Consumer@2a883c23: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:08.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-353] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:10.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-353] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:10.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-353] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:12.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-353] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:13.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:13.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] INFO SimpleMessageListenerContainer - Restarting Consumer@54bb9fa2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:14.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:16.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:16.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:17.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-353] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:17.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-353] INFO SimpleMessageListenerContainer - Restarting Consumer@43db43a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:18.713 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-354] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:19.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-353] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:19.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-353] INFO SimpleMessageListenerContainer - Restarting Consumer@589a289f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:20.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-354] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:20.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-354] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:22.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-354] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:22.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-354] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:23.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:23.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] INFO SimpleMessageListenerContainer - Restarting Consumer@74679f0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:24.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:26.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:26.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-354] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:28.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:29.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-354] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:29.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-354] INFO SimpleMessageListenerContainer - Restarting Consumer@56c63afa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:30.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-355] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:32.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-355] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:32.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-355] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:33.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-354] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:33.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-354] INFO SimpleMessageListenerContainer - Restarting Consumer@8892c4f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:34.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-355] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:36.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:36.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] INFO SimpleMessageListenerContainer - Restarting Consumer@117f7873: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:36.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-355] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:36.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:39.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-355] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:39.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:40.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-355] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:40.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-355] INFO SimpleMessageListenerContainer - Restarting Consumer@16a40c7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:41.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-356] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:43.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-356] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:43.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:45.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-356] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:46.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-355] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:46.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-355] INFO SimpleMessageListenerContainer - Restarting Consumer@264c4fdc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:47.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-356] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:49.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-356] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:49.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-356] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:50.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:50.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] INFO SimpleMessageListenerContainer - Restarting Consumer@5bd02791: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:51.220 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:52.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-356] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:52.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-356] INFO SimpleMessageListenerContainer - Restarting Consumer@6757d48c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:53.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:53.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-357] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:55.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-357] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:09:55.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:56.344 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-356] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:09:56.344 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-356] INFO SimpleMessageListenerContainer - Restarting Consumer@6fbbea2e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:09:57.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-357] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:59.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-357] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:09:59.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-357] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:00.014 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:10:01.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-357] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:02.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:02.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] INFO SimpleMessageListenerContainer - Restarting Consumer@505692f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:10:03.300 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:10:03.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:05.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:05.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:06.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-357] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:06.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-357] INFO SimpleMessageListenerContainer - Restarting Consumer@7a939bd1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:10:07.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-358] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:08.518 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-357] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:08.518 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-357] INFO SimpleMessageListenerContainer - Restarting Consumer@28421b4d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:09.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-358] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:09.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-358] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:11.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-358] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:11.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-358] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:12.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:12.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] INFO SimpleMessageListenerContainer - Restarting Consumer@39ca5ac2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:13.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:15.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:15.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-358] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:17.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:18.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-358] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:18.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-358] INFO SimpleMessageListenerContainer - Restarting Consumer@44e4e565: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:19.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-359] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:21.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-359] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:21.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-359] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:22.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-358] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:22.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-358] INFO SimpleMessageListenerContainer - Restarting Consumer@18370238: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:23.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-359] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:24.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:24.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] INFO SimpleMessageListenerContainer - Restarting Consumer@c821ce0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:25.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-359] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:25.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:27.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:27.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-359] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:28.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-359] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:28.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-359] INFO SimpleMessageListenerContainer - Restarting Consumer@6397db80: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:29.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-360] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:31.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-360] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:31.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:33.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-360] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:34.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-359] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:34.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-359] INFO SimpleMessageListenerContainer - Restarting Consumer@688d7fb9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:35.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-360] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:37.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-360] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:37.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-360] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:38.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:38.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] INFO SimpleMessageListenerContainer - Restarting Consumer@8b07479: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:39.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:40.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-360] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:40.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-360] INFO SimpleMessageListenerContainer - Restarting Consumer@32fb650a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:41.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:41.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-361] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:43.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:43.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-361] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:44.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-360] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:44.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-360] INFO SimpleMessageListenerContainer - Restarting Consumer@32a10231: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:45.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-361] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:48.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-361] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:48.019 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-361] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:50.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-361] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:51.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:51.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] INFO SimpleMessageListenerContainer - Restarting Consumer@2bf3a733: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:52.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:54.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:10:54.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:55.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-361] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:55.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-361] INFO SimpleMessageListenerContainer - Restarting Consumer@4641a8f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:56.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-362] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:57.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-361] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:10:57.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-361] INFO SimpleMessageListenerContainer - Restarting Consumer@4b7a9ff7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:10:58.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-362] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:10:58.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-362] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:11:00.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-362] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:00.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-362] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:01.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:01.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] INFO SimpleMessageListenerContainer - Restarting Consumer@26260fb7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:02.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:11:03.299 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:11:04.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-362] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:04.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:06.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:11:07.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-362] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:07.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-362] INFO SimpleMessageListenerContainer - Restarting Consumer@29c20c42: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:08.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-363] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:10.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-363] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:10.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-363] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:11.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-362] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:11.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-362] INFO SimpleMessageListenerContainer - Restarting Consumer@23d4bad: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:12.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-363] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:13.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:13.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] INFO SimpleMessageListenerContainer - Restarting Consumer@361f66f4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:14.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-363] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:14.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:16.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:16.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-363] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:17.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-363] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:17.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-363] INFO SimpleMessageListenerContainer - Restarting Consumer@f411f0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:18.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-364] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:20.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-364] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:20.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:22.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-364] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:23.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-363] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:23.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-363] INFO SimpleMessageListenerContainer - Restarting Consumer@2a4874d6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:24.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-364] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:26.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-364] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:26.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-364] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:27.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:27.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] INFO SimpleMessageListenerContainer - Restarting Consumer@7e49c6d4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:28.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:29.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-364] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:29.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-364] INFO SimpleMessageListenerContainer - Restarting Consumer@6df5f5ec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:30.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:30.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-365] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:32.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:32.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-365] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:33.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-364] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:33.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-364] INFO SimpleMessageListenerContainer - Restarting Consumer@78d5a1f3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:34.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-365] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:36.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-365] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:36.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-365] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:38.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-365] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:39.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:39.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] INFO SimpleMessageListenerContainer - Restarting Consumer@2422f281: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:40.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:42.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:42.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:43.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-365] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:43.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-365] INFO SimpleMessageListenerContainer - Restarting Consumer@7505909a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:44.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-366] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:45.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-365] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:45.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-365] INFO SimpleMessageListenerContainer - Restarting Consumer@3023fb39: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:46.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-366] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:46.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-366] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:48.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-366] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:48.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-366] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:49.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:49.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] INFO SimpleMessageListenerContainer - Restarting Consumer@28194c8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:50.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:53.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:53.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-366] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:55.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:56.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-366] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:11:56.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-366] INFO SimpleMessageListenerContainer - Restarting Consumer@6fd961b6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:11:57.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-367] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:11:59.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-367] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:11:59.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-367] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:00.009 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:12:00.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-366] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:00.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-366] INFO SimpleMessageListenerContainer - Restarting Consumer@7fc5d229: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:01.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-367] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:02.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:02.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] INFO SimpleMessageListenerContainer - Restarting Consumer@3366c12a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:03.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-367] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:03.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:03.303 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:12:03.303 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:12:05.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:05.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-367] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:06.307 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-367] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:06.307 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-367] INFO SimpleMessageListenerContainer - Restarting Consumer@26eb7fe2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:12:07.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-368] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:09.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:09.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-368] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:11.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-368] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:12.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-367] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:12.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-367] INFO SimpleMessageListenerContainer - Restarting Consumer@44f7cfae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:13.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-368] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:15.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-368] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:15.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-368] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:16.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:16.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] INFO SimpleMessageListenerContainer - Restarting Consumer@442ff538: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:17.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:18.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-368] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:18.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-368] INFO SimpleMessageListenerContainer - Restarting Consumer@22e1ccc7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:19.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-369] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:19.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:21.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:21.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-369] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:22.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-368] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:22.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-368] INFO SimpleMessageListenerContainer - Restarting Consumer@12b8ef4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:23.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-369] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:25.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-369] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:25.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-369] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:27.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-369] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:28.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:28.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] INFO SimpleMessageListenerContainer - Restarting Consumer@798db232: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:29.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:31.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:31.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:32.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-369] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:32.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-369] INFO SimpleMessageListenerContainer - Restarting Consumer@3d83cc76: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:33.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-370] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:34.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-369] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:34.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-369] INFO SimpleMessageListenerContainer - Restarting Consumer@42d492f4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:35.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-370] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:35.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-370] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:37.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-370] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:37.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-370] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:38.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:38.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] INFO SimpleMessageListenerContainer - Restarting Consumer@1d130099: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:39.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:41.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-370] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:41.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:43.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:44.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-370] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:44.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-370] INFO SimpleMessageListenerContainer - Restarting Consumer@cf65ad7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:45.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-371] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:47.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-371] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:47.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-371] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:48.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-370] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:48.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-370] INFO SimpleMessageListenerContainer - Restarting Consumer@7c094e82: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:49.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-371] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:50.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:50.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] INFO SimpleMessageListenerContainer - Restarting Consumer@2537d4f3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:51.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:51.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-371] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:53.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:12:53.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-371] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:55.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-371] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:12:55.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-371] INFO SimpleMessageListenerContainer - Restarting Consumer@7fc29f46: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:12:55.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-372] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:58.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:12:58.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-372] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:00.014 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:13:00.029 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-372] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:01.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-371] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:01.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-371] INFO SimpleMessageListenerContainer - Restarting Consumer@5754b9eb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:02.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-372] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:03.301 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:13:03.302 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:13:04.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-372] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:04.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-372] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:05.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:05.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] INFO SimpleMessageListenerContainer - Restarting Consumer@2aa7c089: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:06.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:13:07.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-372] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:07.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-372] INFO SimpleMessageListenerContainer - Restarting Consumer@a529654: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:08.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-373] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:08.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:10.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-373] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:10.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:11.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-372] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:11.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-372] INFO SimpleMessageListenerContainer - Restarting Consumer@3077a963: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:12.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-373] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:14.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-373] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:14.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-373] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:16.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-373] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:17.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:17.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] INFO SimpleMessageListenerContainer - Restarting Consumer@1c201a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:18.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:20.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:20.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:21.327 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-373] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:21.327 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-373] INFO SimpleMessageListenerContainer - Restarting Consumer@1b659938: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:22.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-374] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:23.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-373] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:23.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-373] INFO SimpleMessageListenerContainer - Restarting Consumer@31cdcd6a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:24.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-374] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:24.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-374] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:26.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-374] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:26.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-374] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:27.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:27.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] INFO SimpleMessageListenerContainer - Restarting Consumer@19c2a33f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:28.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:30.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:30.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-374] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:32.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:33.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-374] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:33.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-374] INFO SimpleMessageListenerContainer - Restarting Consumer@38ffa68c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:34.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-375] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:36.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-375] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:36.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-375] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:37.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-374] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:37.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-374] INFO SimpleMessageListenerContainer - Restarting Consumer@1ac136d9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:38.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-375] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:39.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:39.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] INFO SimpleMessageListenerContainer - Restarting Consumer@60c7ef6f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:40.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:40.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-375] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:42.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-375] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:42.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:43.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-375] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:43.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-375] INFO SimpleMessageListenerContainer - Restarting Consumer@6941d961: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:44.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-376] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:46.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-376] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:46.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:48.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-376] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:49.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-375] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:49.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-375] INFO SimpleMessageListenerContainer - Restarting Consumer@4deff8b6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:50.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-376] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:52.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-376] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:52.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-376] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:53.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:53.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] INFO SimpleMessageListenerContainer - Restarting Consumer@2a7837cc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:54.729 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:55.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-376] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:55.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-376] INFO SimpleMessageListenerContainer - Restarting Consumer@e9f8cd4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:13:56.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:56.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-377] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:58.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-377] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:13:58.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:13:59.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-376] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:13:59.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-376] INFO SimpleMessageListenerContainer - Restarting Consumer@1aea6d91: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:14:00.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-377] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:02.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-377] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:02.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-377] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:14:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:14:04.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-377] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:05.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:05.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] INFO SimpleMessageListenerContainer - Restarting Consumer@4580bd19: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:14:06.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:08.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:08.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:09.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-377] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:09.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-377] INFO SimpleMessageListenerContainer - Restarting Consumer@6561da04: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:10.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-378] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:12.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-377] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:12.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-377] INFO SimpleMessageListenerContainer - Restarting Consumer@79e887e9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:12.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-378] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:12.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-378] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:15.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-378] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:15.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-378] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:16.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:16.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] INFO SimpleMessageListenerContainer - Restarting Consumer@411237eb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:17.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:19.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-378] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:19.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:21.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:22.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-378] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:22.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-378] INFO SimpleMessageListenerContainer - Restarting Consumer@29f7c605: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:23.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-379] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:25.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-379] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:25.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-379] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:26.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-378] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:26.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-378] INFO SimpleMessageListenerContainer - Restarting Consumer@6e8b45b3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:27.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-379] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:28.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:28.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] INFO SimpleMessageListenerContainer - Restarting Consumer@69b2a1a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:29.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:29.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-379] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:31.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:31.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-379] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:32.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-379] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:32.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-379] INFO SimpleMessageListenerContainer - Restarting Consumer@1322050b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:33.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-380] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:35.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:35.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-380] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:37.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-380] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:38.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-379] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:38.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-379] INFO SimpleMessageListenerContainer - Restarting Consumer@6ede6feb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:39.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-380] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:41.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-380] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:41.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-380] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:42.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:42.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] INFO SimpleMessageListenerContainer - Restarting Consumer@16204088: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:43.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:44.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-380] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:44.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-380] INFO SimpleMessageListenerContainer - Restarting Consumer@6db764c6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:45.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:45.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-381] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:47.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-381] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:47.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:48.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-380] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:48.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-380] INFO SimpleMessageListenerContainer - Restarting Consumer@32b48283: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:49.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-381] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:51.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-381] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:51.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-381] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:53.622 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-381] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:54.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:54.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] INFO SimpleMessageListenerContainer - Restarting Consumer@10683c66: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:55.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:57.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:14:57.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:14:58.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-381] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:14:58.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-381] INFO SimpleMessageListenerContainer - Restarting Consumer@4e96891d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:14:59.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-382] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:15:00.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-381] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:00.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-381] INFO SimpleMessageListenerContainer - Restarting Consumer@78580da2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:01.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-382] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:01.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-382] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:15:03.299 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:15:03.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-382] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:03.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-382] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:04.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:04.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] INFO SimpleMessageListenerContainer - Restarting Consumer@5d87e8cc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:05.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:15:07.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-382] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:07.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:09.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:10.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-382] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:10.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-382] INFO SimpleMessageListenerContainer - Restarting Consumer@7ce809ee: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:11.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-383] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:13.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-383] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:13.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-383] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:15.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-382] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:15.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-382] INFO SimpleMessageListenerContainer - Restarting Consumer@7c69fc46: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:16.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-383] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:17.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:17.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] INFO SimpleMessageListenerContainer - Restarting Consumer@669e8fae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:18.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:18.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-383] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:20.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:20.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-383] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:21.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-383] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:21.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-383] INFO SimpleMessageListenerContainer - Restarting Consumer@7c7cfd5d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:22.116 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-384] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:24.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:24.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-384] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:26.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-384] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:27.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-383] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:27.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-383] INFO SimpleMessageListenerContainer - Restarting Consumer@415b506d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:28.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-384] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:30.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-384] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:30.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-384] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:31.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:31.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] INFO SimpleMessageListenerContainer - Restarting Consumer@6e62dad5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:32.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:33.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-384] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:33.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-384] INFO SimpleMessageListenerContainer - Restarting Consumer@20301f2b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:34.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:34.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-385] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:36.298 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-385] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:36.298 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:37.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-384] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:37.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-384] INFO SimpleMessageListenerContainer - Restarting Consumer@6334ceb7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:38.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-385] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:40.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-385] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:40.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-385] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:42.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-385] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:43.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:43.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] INFO SimpleMessageListenerContainer - Restarting Consumer@75260f8e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:44.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:46.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:46.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:47.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-385] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:47.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-385] INFO SimpleMessageListenerContainer - Restarting Consumer@64ca788: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:48.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-386] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:49.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-385] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:49.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-385] INFO SimpleMessageListenerContainer - Restarting Consumer@29e96b1f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:50.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-386] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:50.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-386] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:52.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-386] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:52.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-386] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:53.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:53.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] INFO SimpleMessageListenerContainer - Restarting Consumer@196ad282: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:15:54.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:56.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:15:56.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-386] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:58.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:15:59.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-386] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:15:59.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-386] INFO SimpleMessageListenerContainer - Restarting Consumer@4227746: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:16:00.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-387] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:02.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-387] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:02.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-387] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:16:03.293 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:16:03.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-386] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:03.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-386] INFO SimpleMessageListenerContainer - Restarting Consumer@60678902: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:04.685 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-387] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:05.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:05.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] INFO SimpleMessageListenerContainer - Restarting Consumer@5e65ad1f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:16:06.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:06.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-387] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:08.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:08.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-387] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:09.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-387] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:09.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-387] INFO SimpleMessageListenerContainer - Restarting Consumer@5d72eb3d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:10.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-388] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:12.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:12.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-388] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:14.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-388] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:15.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-387] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:15.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-387] INFO SimpleMessageListenerContainer - Restarting Consumer@128872f8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:16.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-388] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:18.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-388] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:18.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-388] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:19.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:19.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] INFO SimpleMessageListenerContainer - Restarting Consumer@70564e35: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:20.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:22.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-388] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:22.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-388] INFO SimpleMessageListenerContainer - Restarting Consumer@7c1bd59a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:23.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:23.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-389] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:25.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-389] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:25.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:26.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-388] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:26.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-388] INFO SimpleMessageListenerContainer - Restarting Consumer@3007f671: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:27.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-389] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:29.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-389] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:29.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-389] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:31.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-389] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:32.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:32.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] INFO SimpleMessageListenerContainer - Restarting Consumer@61e3241f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:33.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:35.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:35.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:36.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-389] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:36.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-389] INFO SimpleMessageListenerContainer - Restarting Consumer@29e1d582: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:37.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-390] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:38.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-389] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:38.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-389] INFO SimpleMessageListenerContainer - Restarting Consumer@75685197: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:39.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-390] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:39.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-390] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:41.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-390] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:41.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-390] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:42.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:42.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] INFO SimpleMessageListenerContainer - Restarting Consumer@34b4b364: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:43.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:45.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:45.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-390] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:47.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:48.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-390] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:48.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-390] INFO SimpleMessageListenerContainer - Restarting Consumer@13cc59a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:49.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-391] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:51.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-391] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:51.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-391] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:52.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-390] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:52.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-390] INFO SimpleMessageListenerContainer - Restarting Consumer@456a3754: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:53.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-391] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:54.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:54.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] INFO SimpleMessageListenerContainer - Restarting Consumer@472a8763: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:55.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-391] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:55.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:57.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:16:57.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-391] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:16:58.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-391] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:16:58.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-391] INFO SimpleMessageListenerContainer - Restarting Consumer@42f7e3b1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:16:59.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-392] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:17:01.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:01.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-392] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:17:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:17:03.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-392] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:04.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-391] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:04.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-391] INFO SimpleMessageListenerContainer - Restarting Consumer@62ef7c97: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:05.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-392] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:06.603 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:17:07.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-392] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:07.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-392] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:08.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:08.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] INFO SimpleMessageListenerContainer - Restarting Consumer@200e5bff: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:09.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:10.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-392] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:10.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-392] INFO SimpleMessageListenerContainer - Restarting Consumer@717b11dd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:11.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:11.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-393] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:13.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-393] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:13.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:14.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-392] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:14.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-392] INFO SimpleMessageListenerContainer - Restarting Consumer@711bf745: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:15.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-393] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:17.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-393] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:17.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-393] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:19.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-393] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:20.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:20.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] INFO SimpleMessageListenerContainer - Restarting Consumer@6404d8a1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:21.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:23.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:23.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:25.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-393] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:25.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-393] INFO SimpleMessageListenerContainer - Restarting Consumer@1036f13b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:26.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-394] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:27.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-393] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:27.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-393] INFO SimpleMessageListenerContainer - Restarting Consumer@35458081: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:28.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-394] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:28.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-394] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:30.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-394] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:30.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-394] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:31.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:31.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] INFO SimpleMessageListenerContainer - Restarting Consumer@7186155f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:32.110 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:34.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-394] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:34.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:36.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:37.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-394] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:37.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-394] INFO SimpleMessageListenerContainer - Restarting Consumer@3683934c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:38.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-395] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:40.220 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-395] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:40.220 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-395] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:41.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-394] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:41.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-394] INFO SimpleMessageListenerContainer - Restarting Consumer@2d07aca1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:42.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-395] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:43.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:43.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] INFO SimpleMessageListenerContainer - Restarting Consumer@7d1bf443: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:44.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-395] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:44.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:46.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-395] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:46.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:47.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-395] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:47.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-395] INFO SimpleMessageListenerContainer - Restarting Consumer@13a8b4a8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:48.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-396] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:50.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-396] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:50.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:52.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-396] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:53.443 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-395] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:53.443 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-395] INFO SimpleMessageListenerContainer - Restarting Consumer@ad2574d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:54.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-396] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:56.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-396] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:17:56.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-396] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:57.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:57.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] INFO SimpleMessageListenerContainer - Restarting Consumer@1b6e8a53: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:17:58.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:17:59.547 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-396] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:17:59.547 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-396] INFO SimpleMessageListenerContainer - Restarting Consumer@1219c6f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:18:00.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-397] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:00.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:02.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-397] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:02.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:18:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:18:03.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-396] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:03.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-396] INFO SimpleMessageListenerContainer - Restarting Consumer@5eaa9847: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:04.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-397] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:18:06.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-397] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:06.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-397] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:08.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-397] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:09.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:09.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] INFO SimpleMessageListenerContainer - Restarting Consumer@7a8e3a19: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:10.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:12.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:12.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:13.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-397] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:13.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-397] INFO SimpleMessageListenerContainer - Restarting Consumer@4946bc67: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:14.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-398] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:15.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-397] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:15.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-397] INFO SimpleMessageListenerContainer - Restarting Consumer@578af6b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:16.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-398] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:16.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-398] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:18.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-398] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:18.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-398] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:19.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:19.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] INFO SimpleMessageListenerContainer - Restarting Consumer@6cd48cfe: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:20.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:22.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-398] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:22.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:24.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:25.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-398] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:25.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-398] INFO SimpleMessageListenerContainer - Restarting Consumer@fdb6b70: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:26.928 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-399] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:28.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-399] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:28.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-399] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:30.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-398] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:30.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-398] INFO SimpleMessageListenerContainer - Restarting Consumer@df9a203: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:31.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-399] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:32.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:32.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] INFO SimpleMessageListenerContainer - Restarting Consumer@171837b5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:33.038 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-399] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:33.038 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:35.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:35.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-399] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:36.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-399] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:36.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-399] INFO SimpleMessageListenerContainer - Restarting Consumer@4eb8019a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:37.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-400] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:39.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-400] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:39.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:41.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-400] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:42.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-399] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:42.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-399] INFO SimpleMessageListenerContainer - Restarting Consumer@2d3d9ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:43.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-400] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:45.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-400] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:45.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-400] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:46.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:46.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] INFO SimpleMessageListenerContainer - Restarting Consumer@38477597: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:47.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:48.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-400] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:48.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-400] INFO SimpleMessageListenerContainer - Restarting Consumer@2974b078: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:49.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:49.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-401] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:51.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-401] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:51.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:52.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-400] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:52.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-400] INFO SimpleMessageListenerContainer - Restarting Consumer@1b72ac79: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:53.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-401] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:55.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-401] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:18:55.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-401] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:57.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-401] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:18:58.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:18:58.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] INFO SimpleMessageListenerContainer - Restarting Consumer@4ac53caa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:18:59.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:00.012 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:19:01.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:01.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:02.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-401] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:02.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-401] INFO SimpleMessageListenerContainer - Restarting Consumer@3139fba2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:19:03.295 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:19:03.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-402] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:04.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-401] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:04.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-401] INFO SimpleMessageListenerContainer - Restarting Consumer@58865a47: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:05.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-402] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:05.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-402] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:19:07.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-402] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:07.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-402] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:08.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:08.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] INFO SimpleMessageListenerContainer - Restarting Consumer@551894fd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:09.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:11.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-402] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:11.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:13.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:14.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-402] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:14.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-402] INFO SimpleMessageListenerContainer - Restarting Consumer@52ad59ba: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:15.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-403] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:17.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-403] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:17.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-403] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:18.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-402] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:18.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-402] INFO SimpleMessageListenerContainer - Restarting Consumer@25faf061: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:19.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-403] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:20.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:20.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] INFO SimpleMessageListenerContainer - Restarting Consumer@742b5e72: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:21.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-403] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:21.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:23.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:23.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-403] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:24.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-403] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:24.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-403] INFO SimpleMessageListenerContainer - Restarting Consumer@607fdee3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:25.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-404] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:27.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-404] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:27.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:29.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-404] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:30.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-403] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:30.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-403] INFO SimpleMessageListenerContainer - Restarting Consumer@777c44db: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:31.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-404] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:33.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-404] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:33.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-404] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:35.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:35.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] INFO SimpleMessageListenerContainer - Restarting Consumer@181a1c54: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:36.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:37.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-404] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:37.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-404] INFO SimpleMessageListenerContainer - Restarting Consumer@71731cce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:38.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-405] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:38.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:40.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-405] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:40.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:41.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-404] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:41.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-404] INFO SimpleMessageListenerContainer - Restarting Consumer@540c3517: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:42.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-405] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:44.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-405] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:44.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-405] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:46.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-405] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:47.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:47.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] INFO SimpleMessageListenerContainer - Restarting Consumer@3f14e21d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:48.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:50.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:50.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:51.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-405] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:51.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-405] INFO SimpleMessageListenerContainer - Restarting Consumer@69136817: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:52.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-406] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:53.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-405] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:53.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-405] INFO SimpleMessageListenerContainer - Restarting Consumer@c279423: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:54.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-406] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:54.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-406] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:56.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-406] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:19:56.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-406] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:19:57.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:19:57.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] INFO SimpleMessageListenerContainer - Restarting Consumer@22aa8835: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:19:58.343 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:00.002 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:20:00.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:00.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-406] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:02.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:03.292 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:20:03.293 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:20:03.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-406] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:03.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-406] INFO SimpleMessageListenerContainer - Restarting Consumer@3a824692: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:04.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-407] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:06.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-407] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:06.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-407] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:06.597 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:20:07.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-406] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:07.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-406] INFO SimpleMessageListenerContainer - Restarting Consumer@66926041: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:08.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-407] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:09.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:09.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] INFO SimpleMessageListenerContainer - Restarting Consumer@4535b23b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:10.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-407] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:10.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:12.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:12.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-407] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:13.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-407] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:13.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-407] INFO SimpleMessageListenerContainer - Restarting Consumer@58df924c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:14.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-408] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:16.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-408] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:16.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:18.646 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-408] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:19.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-407] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:19.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-407] INFO SimpleMessageListenerContainer - Restarting Consumer@17313de0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:20.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-408] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:22.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-408] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:22.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-408] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:23.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:23.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] INFO SimpleMessageListenerContainer - Restarting Consumer@3172636d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:24.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:25.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-408] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:25.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-408] INFO SimpleMessageListenerContainer - Restarting Consumer@557921c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:26.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:26.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-409] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:28.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-409] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:28.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:29.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-408] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:29.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-408] INFO SimpleMessageListenerContainer - Restarting Consumer@58835b59: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:30.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-409] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:32.896 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-409] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:32.896 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-409] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:34.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-409] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:35.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:35.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] INFO SimpleMessageListenerContainer - Restarting Consumer@7c5b7a5f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:36.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:38.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:38.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:40.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-409] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:40.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-409] INFO SimpleMessageListenerContainer - Restarting Consumer@3346d9c2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:41.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-410] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:42.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-409] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:42.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-409] INFO SimpleMessageListenerContainer - Restarting Consumer@b869f67: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:43.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-410] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:43.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-410] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:45.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-410] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:45.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-410] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:46.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:46.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] INFO SimpleMessageListenerContainer - Restarting Consumer@11a12637: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:47.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:49.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:49.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-410] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:51.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:52.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-410] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:52.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-410] INFO SimpleMessageListenerContainer - Restarting Consumer@5ebc11f0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:53.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-411] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:55.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-411] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:55.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-411] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:56.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-410] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:56.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-410] INFO SimpleMessageListenerContainer - Restarting Consumer@2e53bd0a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:57.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-411] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:20:58.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:20:58.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] INFO SimpleMessageListenerContainer - Restarting Consumer@2ecd8bdb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:20:59.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-411] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:20:59.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:00.005 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:21:01.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-411] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:01.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:02.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-411] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:02.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-411] INFO SimpleMessageListenerContainer - Restarting Consumer@1d4aedae: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:03.296 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:21:03.297 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:21:03.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-412] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:05.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-412] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:05.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:06.598 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:21:07.431 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-412] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:08.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-411] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:08.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-411] INFO SimpleMessageListenerContainer - Restarting Consumer@358395bd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:09.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-412] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:11.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-412] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:11.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-412] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:12.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:12.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] INFO SimpleMessageListenerContainer - Restarting Consumer@161ad33e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:13.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:14.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-412] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:14.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-412] INFO SimpleMessageListenerContainer - Restarting Consumer@4a35c569: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:15.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-413] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:15.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:17.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-413] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:17.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:18.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-412] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:18.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-412] INFO SimpleMessageListenerContainer - Restarting Consumer@770adb5c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:19.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-413] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:21.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-413] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:21.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-413] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:23.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-413] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:24.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:24.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] INFO SimpleMessageListenerContainer - Restarting Consumer@4227eb3e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:25.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:27.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:27.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:28.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-413] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:28.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-413] INFO SimpleMessageListenerContainer - Restarting Consumer@39c06905: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:29.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-414] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:30.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-413] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:30.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-413] INFO SimpleMessageListenerContainer - Restarting Consumer@25c08b48: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:31.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-414] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:31.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-414] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:33.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-414] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:33.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-414] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:34.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:34.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] INFO SimpleMessageListenerContainer - Restarting Consumer@1b089797: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:35.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:37.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:37.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-414] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:39.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:40.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-414] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:40.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-414] INFO SimpleMessageListenerContainer - Restarting Consumer@3a8757b6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:41.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-415] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:43.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-415] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:43.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-415] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:45.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-414] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:45.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-414] INFO SimpleMessageListenerContainer - Restarting Consumer@1354dcf3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:45.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-415] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:47.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:47.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] INFO SimpleMessageListenerContainer - Restarting Consumer@5ed48168: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:47.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:47.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-415] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:50.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:50.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-415] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:51.106 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-415] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:51.106 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-415] INFO SimpleMessageListenerContainer - Restarting Consumer@322088ad: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:52.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-416] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:54.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-416] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:21:54.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:56.116 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-416] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:21:57.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-415] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:21:57.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-415] INFO SimpleMessageListenerContainer - Restarting Consumer@c2ea50c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:21:58.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-416] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:00.008 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:22:00.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-416] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:00.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-416] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:01.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:01.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] INFO SimpleMessageListenerContainer - Restarting Consumer@7265e398: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:02.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:03.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-416] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:03.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-416] INFO SimpleMessageListenerContainer - Restarting Consumer@90644af: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:22:03.295 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:22:04.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:04.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-417] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:06.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-417] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:06.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:06.603 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:22:07.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-416] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:07.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-416] INFO SimpleMessageListenerContainer - Restarting Consumer@777f8b31: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:08.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-417] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:10.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-417] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:10.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-417] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:12.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-417] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:13.407 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:13.407 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] INFO SimpleMessageListenerContainer - Restarting Consumer@69c3165f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:14.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:16.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:16.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:17.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-417] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:17.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-417] INFO SimpleMessageListenerContainer - Restarting Consumer@6a61a956: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:18.434 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-418] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:19.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-417] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:19.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-417] INFO SimpleMessageListenerContainer - Restarting Consumer@75bd0281: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:20.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-418] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:20.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-418] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:22.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-418] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:22.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-418] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:23.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:23.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] INFO SimpleMessageListenerContainer - Restarting Consumer@14bd2ea6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:24.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:26.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-418] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:26.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:28.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:29.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-418] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:29.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-418] INFO SimpleMessageListenerContainer - Restarting Consumer@3f17dcc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:30.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-419] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:32.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-419] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:32.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-419] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:33.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-418] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:33.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-418] INFO SimpleMessageListenerContainer - Restarting Consumer@44f956c4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:34.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-419] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:35.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:35.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] INFO SimpleMessageListenerContainer - Restarting Consumer@3329b198: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:36.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:36.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-419] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:38.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:38.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-419] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:39.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-419] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:39.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-419] INFO SimpleMessageListenerContainer - Restarting Consumer@16acde8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:40.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-420] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:42.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-420] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:42.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:44.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-420] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:45.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-419] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:45.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-419] INFO SimpleMessageListenerContainer - Restarting Consumer@db2bf7e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:46.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-420] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:48.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-420] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:48.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-420] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:49.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:49.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] INFO SimpleMessageListenerContainer - Restarting Consumer@4626e616: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:50.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:52.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-420] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:52.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-420] INFO SimpleMessageListenerContainer - Restarting Consumer@49e36375: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:52.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:52.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-421] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:55.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:55.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-421] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:56.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-420] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:22:56.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-420] INFO SimpleMessageListenerContainer - Restarting Consumer@17b8fe88: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:22:57.038 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-421] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:22:59.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-421] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:22:59.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-421] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:23:01.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-421] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:02.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:02.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] INFO SimpleMessageListenerContainer - Restarting Consumer@268e16c9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:03.132 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:23:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:23:05.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:05.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:06.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-421] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:06.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-421] INFO SimpleMessageListenerContainer - Restarting Consumer@23139c1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:23:07.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-422] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:08.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-421] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:08.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-421] INFO SimpleMessageListenerContainer - Restarting Consumer@319519ca: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:09.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-422] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:09.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-422] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:11.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-422] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:11.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-422] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:12.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:12.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] INFO SimpleMessageListenerContainer - Restarting Consumer@5e76de1b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:13.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:15.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:15.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-422] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:17.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:18.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-422] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:18.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-422] INFO SimpleMessageListenerContainer - Restarting Consumer@145ad074: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:19.403 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-423] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:21.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-423] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:21.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-423] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:22.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-422] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:22.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-422] INFO SimpleMessageListenerContainer - Restarting Consumer@7470c835: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:23.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-423] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:24.518 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:24.518 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] INFO SimpleMessageListenerContainer - Restarting Consumer@c5f2894: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:25.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-423] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:25.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:27.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-423] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:27.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:28.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-423] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:28.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-423] INFO SimpleMessageListenerContainer - Restarting Consumer@69e43f89: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:29.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-424] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:31.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-424] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:31.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:33.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-424] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:34.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-423] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:34.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-423] INFO SimpleMessageListenerContainer - Restarting Consumer@7ef7c6d4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:35.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-424] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:37.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-424] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:37.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-424] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:38.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:38.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] INFO SimpleMessageListenerContainer - Restarting Consumer@77de635d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:39.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:40.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-424] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:40.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-424] INFO SimpleMessageListenerContainer - Restarting Consumer@59690447: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:41.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-425] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:41.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:43.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-425] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:43.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:44.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-424] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:44.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-424] INFO SimpleMessageListenerContainer - Restarting Consumer@73a23725: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:45.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-425] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:47.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-425] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:47.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-425] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:49.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-425] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:50.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:50.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] INFO SimpleMessageListenerContainer - Restarting Consumer@16652e58: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:51.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:53.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:53.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:54.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-425] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:54.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-425] INFO SimpleMessageListenerContainer - Restarting Consumer@1e6c3e56: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:55.907 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-426] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:56.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-425] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:23:56.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-425] INFO SimpleMessageListenerContainer - Restarting Consumer@13648958: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:23:57.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-426] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:57.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-426] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:23:59.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-426] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:23:59.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-426] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:00.001 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:24:01.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:01.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] INFO SimpleMessageListenerContainer - Restarting Consumer@3747102b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:01.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:03.302 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:24:03.302 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:24:04.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:04.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-426] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:06.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:06.600 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:24:07.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-426] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:07.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-426] INFO SimpleMessageListenerContainer - Restarting Consumer@2890b550: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:08.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-427] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:10.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-427] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:10.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-427] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:11.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-426] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:11.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-426] INFO SimpleMessageListenerContainer - Restarting Consumer@2759e0f9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:12.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-427] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:13.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:13.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] INFO SimpleMessageListenerContainer - Restarting Consumer@2ec59819: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:14.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:14.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-427] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:16.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:16.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-427] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:17.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-427] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:17.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-427] INFO SimpleMessageListenerContainer - Restarting Consumer@16be3a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:18.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-428] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:20.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-428] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:20.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:22.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-428] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:23.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-427] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:23.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-427] INFO SimpleMessageListenerContainer - Restarting Consumer@597e3995: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:24.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-428] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:26.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-428] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:26.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-428] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:27.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:27.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] INFO SimpleMessageListenerContainer - Restarting Consumer@737e3979: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:28.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:29.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-428] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:29.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-428] INFO SimpleMessageListenerContainer - Restarting Consumer@98f276c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:30.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-429] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:30.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:32.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-429] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:32.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:33.488 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-428] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:33.488 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-428] INFO SimpleMessageListenerContainer - Restarting Consumer@407d3030: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:34.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-429] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:36.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-429] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:36.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-429] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:38.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-429] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:39.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:39.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] INFO SimpleMessageListenerContainer - Restarting Consumer@60f858c6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:40.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:42.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:42.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:43.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-429] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:43.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-429] INFO SimpleMessageListenerContainer - Restarting Consumer@7e4d09c0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:44.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-430] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:45.667 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-429] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:45.667 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-429] INFO SimpleMessageListenerContainer - Restarting Consumer@2b539dc9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:46.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-430] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:46.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-430] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:48.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-430] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:48.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-430] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:49.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:49.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] INFO SimpleMessageListenerContainer - Restarting Consumer@70be8c1c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:50.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:52.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:52.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-430] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:54.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:55.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-430] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:55.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-430] INFO SimpleMessageListenerContainer - Restarting Consumer@13572c57: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:24:56.771 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-431] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:58.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-431] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:24:58.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-431] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:24:59.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-430] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:24:59.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-430] INFO SimpleMessageListenerContainer - Restarting Consumer@7948b2b6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:00.008 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:25:00.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-431] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:01.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:01.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] INFO SimpleMessageListenerContainer - Restarting Consumer@32a8de47: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:02.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-431] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:02.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:03.298 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:25:03.299 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:25:04.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-431] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:04.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:05.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-431] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:05.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-431] INFO SimpleMessageListenerContainer - Restarting Consumer@2e1599bb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:06.593 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:25:06.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-432] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:08.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-432] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:08.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:10.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-432] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:12.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-431] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:12.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-431] INFO SimpleMessageListenerContainer - Restarting Consumer@274eb80d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:13.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-432] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:15.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-432] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:15.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-432] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:16.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:16.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] INFO SimpleMessageListenerContainer - Restarting Consumer@7450906a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:17.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:18.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-432] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:18.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-432] INFO SimpleMessageListenerContainer - Restarting Consumer@55249fba: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:19.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:19.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-433] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:21.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:21.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-433] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:22.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-432] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:22.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-432] INFO SimpleMessageListenerContainer - Restarting Consumer@11cf84a1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:23.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-433] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:25.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-433] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:25.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-433] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:27.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-433] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:28.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:28.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] INFO SimpleMessageListenerContainer - Restarting Consumer@12557684: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:29.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:31.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:31.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:32.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-433] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:32.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-433] INFO SimpleMessageListenerContainer - Restarting Consumer@2dd05938: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:33.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-434] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:34.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-433] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:34.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-433] INFO SimpleMessageListenerContainer - Restarting Consumer@710367f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:35.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-434] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:35.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-434] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:37.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-434] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:37.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-434] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:38.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:38.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] INFO SimpleMessageListenerContainer - Restarting Consumer@379dc541: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:39.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:41.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:41.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-434] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:43.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:44.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-434] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:44.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-434] INFO SimpleMessageListenerContainer - Restarting Consumer@710d716c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:45.497 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-435] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:47.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-435] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:47.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-435] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:48.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-434] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:48.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-434] INFO SimpleMessageListenerContainer - Restarting Consumer@7a7e3b71: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:49.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-435] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:50.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:50.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] INFO SimpleMessageListenerContainer - Restarting Consumer@753f431f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:51.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-435] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:51.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:53.620 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:53.620 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-435] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:54.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-435] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:25:54.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-435] INFO SimpleMessageListenerContainer - Restarting Consumer@e5b835a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:25:55.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-436] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:57.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-436] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:25:57.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:25:59.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-436] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:26:00.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-435] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:00.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-435] INFO SimpleMessageListenerContainer - Restarting Consumer@536c4d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:01.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-436] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:03.296 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:26:03.296 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:26:03.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-436] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:03.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-436] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:04.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:04.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] INFO SimpleMessageListenerContainer - Restarting Consumer@5797341: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:05.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:26:06.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-436] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:06.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-436] INFO SimpleMessageListenerContainer - Restarting Consumer@11d573bd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:07.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-437] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:07.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:09.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-437] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:09.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:10.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-436] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:10.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-436] INFO SimpleMessageListenerContainer - Restarting Consumer@13c22036: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:11.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-437] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:13.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-437] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:13.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-437] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:15.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-437] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:17.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:17.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] INFO SimpleMessageListenerContainer - Restarting Consumer@38c2c55e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:17.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:19.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:19.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:21.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-437] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:21.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-437] INFO SimpleMessageListenerContainer - Restarting Consumer@1c0f44d7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:22.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-438] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:23.076 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-437] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:23.076 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-437] INFO SimpleMessageListenerContainer - Restarting Consumer@72bd4da7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:24.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-438] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:24.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-438] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:26.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-438] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:26.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-438] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:27.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:27.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] INFO SimpleMessageListenerContainer - Restarting Consumer@32e4d9fc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:28.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:30.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:30.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-438] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:32.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:33.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-438] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:33.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-438] INFO SimpleMessageListenerContainer - Restarting Consumer@1880ba4e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:34.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-439] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:36.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-439] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:36.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-439] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:37.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-438] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:37.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-438] INFO SimpleMessageListenerContainer - Restarting Consumer@49554f25: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:38.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-439] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:39.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:39.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] INFO SimpleMessageListenerContainer - Restarting Consumer@55b04d2b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:40.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-439] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:40.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:42.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:42.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-439] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:43.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-439] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:43.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-439] INFO SimpleMessageListenerContainer - Restarting Consumer@2eeaeec2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:44.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-440] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:46.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-440] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:46.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:48.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-440] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:49.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-439] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:49.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-439] INFO SimpleMessageListenerContainer - Restarting Consumer@16a9ba8f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:50.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-440] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:52.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-440] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:52.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-440] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:53.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:53.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] INFO SimpleMessageListenerContainer - Restarting Consumer@380861bb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:54.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:55.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-440] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:55.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-440] INFO SimpleMessageListenerContainer - Restarting Consumer@22bb8593: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:26:56.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:56.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-441] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:58.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-441] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:26:58.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:26:59.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-440] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:26:59.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-440] INFO SimpleMessageListenerContainer - Restarting Consumer@72864e2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:27:00.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-441] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:02.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-441] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:02.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-441] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:03.299 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:27:03.299 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:27:04.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-441] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:05.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:05.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] INFO SimpleMessageListenerContainer - Restarting Consumer@29ced5c4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:27:06.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:08.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:08.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:09.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-441] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:09.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-441] INFO SimpleMessageListenerContainer - Restarting Consumer@2054b7f0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:10.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-442] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:11.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-441] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:11.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-441] INFO SimpleMessageListenerContainer - Restarting Consumer@69665d8c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:12.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-442] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:12.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-442] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:14.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-442] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:14.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-442] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:15.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:15.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] INFO SimpleMessageListenerContainer - Restarting Consumer@771cad27: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:16.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:18.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:18.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-442] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:20.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:21.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-442] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:21.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-442] INFO SimpleMessageListenerContainer - Restarting Consumer@6dfe5556: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:22.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-443] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:25.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-443] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:25.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-443] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:26.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-442] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:26.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-442] INFO SimpleMessageListenerContainer - Restarting Consumer@794b6593: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:27.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-443] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:28.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:28.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] INFO SimpleMessageListenerContainer - Restarting Consumer@27e92158: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:29.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-443] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:29.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:31.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:31.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-443] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:32.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-443] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:32.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-443] INFO SimpleMessageListenerContainer - Restarting Consumer@965ad73: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:33.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-444] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:35.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-444] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:35.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:37.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-444] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:38.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-443] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:38.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-443] INFO SimpleMessageListenerContainer - Restarting Consumer@e0b875: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:39.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-444] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:41.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-444] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:41.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-444] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:42.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:42.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] INFO SimpleMessageListenerContainer - Restarting Consumer@6ba30815: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:43.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:44.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-444] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:44.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-444] INFO SimpleMessageListenerContainer - Restarting Consumer@7e5c30e7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:45.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:45.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-445] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:47.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-445] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:47.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:48.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-444] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:48.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-444] INFO SimpleMessageListenerContainer - Restarting Consumer@8522629: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:49.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-445] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:51.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-445] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:51.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-445] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:53.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-445] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:54.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:54.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] INFO SimpleMessageListenerContainer - Restarting Consumer@2869e0ff: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:55.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:57.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:27:57.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:27:58.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-445] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:27:58.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-445] INFO SimpleMessageListenerContainer - Restarting Consumer@3ea4a57e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:27:59.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-446] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:00.016 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:28:00.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-445] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:00.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-445] INFO SimpleMessageListenerContainer - Restarting Consumer@71bfa0ef: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:01.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-446] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:01.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-446] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:28:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:28:03.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-446] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:03.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-446] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:04.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:04.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] INFO SimpleMessageListenerContainer - Restarting Consumer@39bdb902: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:05.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:28:07.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:07.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-446] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:09.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:10.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-446] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:10.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-446] INFO SimpleMessageListenerContainer - Restarting Consumer@1997e577: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:11.685 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-447] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:13.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-447] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:13.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-447] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:14.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-446] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:14.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-446] INFO SimpleMessageListenerContainer - Restarting Consumer@5bbb1e3f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:15.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-447] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:16.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:16.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] INFO SimpleMessageListenerContainer - Restarting Consumer@3a0834a3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:17.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-447] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:17.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:19.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:19.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-447] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:20.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-447] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:20.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-447] INFO SimpleMessageListenerContainer - Restarting Consumer@402fb8cd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:21.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-448] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:23.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-448] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:23.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:25.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-448] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:26.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-447] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:26.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-447] INFO SimpleMessageListenerContainer - Restarting Consumer@6c03204: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:27.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-448] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:29.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-448] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:29.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-448] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:31.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:31.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] INFO SimpleMessageListenerContainer - Restarting Consumer@40d4b89b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:32.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:33.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-448] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:33.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-448] INFO SimpleMessageListenerContainer - Restarting Consumer@28a61f81: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:34.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-449] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:34.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:36.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:36.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-449] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:37.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-448] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:37.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-448] INFO SimpleMessageListenerContainer - Restarting Consumer@445646b9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:38.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-449] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:40.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-449] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:40.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-449] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:42.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-449] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:43.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:43.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] INFO SimpleMessageListenerContainer - Restarting Consumer@12462106: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:44.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:46.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:46.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:47.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-449] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:47.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-449] INFO SimpleMessageListenerContainer - Restarting Consumer@2138a26d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:48.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-450] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:49.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-449] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:49.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-449] INFO SimpleMessageListenerContainer - Restarting Consumer@660293aa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:50.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-450] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:50.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-450] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:52.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-450] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:52.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-450] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:53.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:53.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] INFO SimpleMessageListenerContainer - Restarting Consumer@18507ccf: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:28:54.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:56.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-450] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:56.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:28:58.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:28:59.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-450] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:28:59.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-450] INFO SimpleMessageListenerContainer - Restarting Consumer@5e744ee8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:29:00.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-451] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:02.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-451] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:02.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-451] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:29:03.293 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:29:03.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-450] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:03.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-450] INFO SimpleMessageListenerContainer - Restarting Consumer@462510ba: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:04.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-451] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:05.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:05.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] INFO SimpleMessageListenerContainer - Restarting Consumer@12e01160: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:06.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-451] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:06.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:06.594 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:29:08.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-451] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:08.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:09.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-451] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:09.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-451] INFO SimpleMessageListenerContainer - Restarting Consumer@4113198c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:10.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-452] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:12.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-452] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:12.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:14.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-452] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:15.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-451] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:15.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-451] INFO SimpleMessageListenerContainer - Restarting Consumer@4024494f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:16.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-452] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:18.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-452] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:18.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-452] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:19.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:19.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] INFO SimpleMessageListenerContainer - Restarting Consumer@5609434c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:20.649 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:21.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-452] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:21.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-452] INFO SimpleMessageListenerContainer - Restarting Consumer@7f6b3dde: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:22.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:22.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-453] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:24.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:24.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-453] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:25.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-452] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:25.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-452] INFO SimpleMessageListenerContainer - Restarting Consumer@6c1410e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:26.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-453] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:28.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-453] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:28.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-453] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:30.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-453] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:31.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:31.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] INFO SimpleMessageListenerContainer - Restarting Consumer@6fe6b237: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:32.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:34.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:34.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:35.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-453] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:35.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-453] INFO SimpleMessageListenerContainer - Restarting Consumer@7665cde8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:36.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-454] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:37.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-453] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:37.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-453] INFO SimpleMessageListenerContainer - Restarting Consumer@1d804af2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:38.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-454] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:38.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-454] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:40.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-454] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:40.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-454] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:41.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:41.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] INFO SimpleMessageListenerContainer - Restarting Consumer@5a4c53c1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:42.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:44.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-454] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:44.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:47.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:48.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-454] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:48.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-454] INFO SimpleMessageListenerContainer - Restarting Consumer@2ac932c2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:49.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-455] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:51.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-455] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:51.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-455] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:52.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-454] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:52.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-454] INFO SimpleMessageListenerContainer - Restarting Consumer@7a8c6060: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:53.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-455] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:54.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:54.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] INFO SimpleMessageListenerContainer - Restarting Consumer@5b51689a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:55.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-455] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:55.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:57.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:29:57.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-455] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:29:58.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-455] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:29:58.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-455] INFO SimpleMessageListenerContainer - Restarting Consumer@50231077: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:29:59.205 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-456] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:00.009 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:30:01.220 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-456] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:01.220 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:03.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-456] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:03.304 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:30:03.305 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:30:04.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-455] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:04.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-455] INFO SimpleMessageListenerContainer - Restarting Consumer@5505c16: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:05.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-456] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:06.592 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:30:07.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-456] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:07.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-456] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:08.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:08.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] INFO SimpleMessageListenerContainer - Restarting Consumer@6b048ba8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:09.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:10.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-456] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:10.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-456] INFO SimpleMessageListenerContainer - Restarting Consumer@7e6fe89d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:11.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-457] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:11.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:13.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-457] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:13.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:14.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-456] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:14.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-456] INFO SimpleMessageListenerContainer - Restarting Consumer@7ec8eb85: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:15.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-457] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:17.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-457] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:17.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-457] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:19.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-457] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:20.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:20.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] INFO SimpleMessageListenerContainer - Restarting Consumer@1205729e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:21.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:23.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:23.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:24.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-457] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:24.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-457] INFO SimpleMessageListenerContainer - Restarting Consumer@33883959: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:25.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-458] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:26.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-457] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:26.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-457] INFO SimpleMessageListenerContainer - Restarting Consumer@18bc305c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:27.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-458] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:27.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-458] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:29.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-458] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:29.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-458] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:30.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:30.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] INFO SimpleMessageListenerContainer - Restarting Consumer@20f879f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:31.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:33.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:33.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-458] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:35.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:36.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-458] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:36.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-458] INFO SimpleMessageListenerContainer - Restarting Consumer@72d3fea8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:37.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-459] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:39.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-459] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:39.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-459] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:40.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-458] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:40.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-458] INFO SimpleMessageListenerContainer - Restarting Consumer@4a274ecd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:41.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-459] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:42.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:42.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] INFO SimpleMessageListenerContainer - Restarting Consumer@3f8a64db: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:43.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:43.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-459] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:45.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:45.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-459] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:46.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-459] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:46.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-459] INFO SimpleMessageListenerContainer - Restarting Consumer@77fd8ff3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:47.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-460] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:49.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-460] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:49.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:52.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-460] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:53.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-459] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:53.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-459] INFO SimpleMessageListenerContainer - Restarting Consumer@751f12a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:54.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-460] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:56.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-460] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:30:56.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-460] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:57.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:57.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] INFO SimpleMessageListenerContainer - Restarting Consumer@66ea5439: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:30:58.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:30:59.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-460] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:30:59.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-460] INFO SimpleMessageListenerContainer - Restarting Consumer@28d0818f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:31:00.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-461] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:00.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:02.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:02.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-461] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:03.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-460] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:03.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-460] INFO SimpleMessageListenerContainer - Restarting Consumer@63a4d5af: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:03.292 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:31:03.293 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:31:04.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-461] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:06.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-461] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:06.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-461] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:31:08.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-461] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:09.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:09.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] INFO SimpleMessageListenerContainer - Restarting Consumer@21f740ef: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:10.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:12.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:12.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:13.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-461] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:13.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-461] INFO SimpleMessageListenerContainer - Restarting Consumer@4ee2efc8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:14.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-462] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:15.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-461] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:15.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-461] INFO SimpleMessageListenerContainer - Restarting Consumer@20708563: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:16.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-462] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:16.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-462] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:18.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-462] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:18.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-462] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:19.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:19.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] INFO SimpleMessageListenerContainer - Restarting Consumer@70870179: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:20.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:22.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:22.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-462] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:24.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:25.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-462] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:25.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-462] INFO SimpleMessageListenerContainer - Restarting Consumer@103085a0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:26.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-463] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:28.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-463] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:28.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-463] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:29.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-462] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:29.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-462] INFO SimpleMessageListenerContainer - Restarting Consumer@316ef84f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:30.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-463] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:31.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:31.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] INFO SimpleMessageListenerContainer - Restarting Consumer@3256d531: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:32.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-463] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:32.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:34.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:34.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-463] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:35.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-463] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:35.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-463] INFO SimpleMessageListenerContainer - Restarting Consumer@69fffcf8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:36.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-464] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:38.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-464] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:38.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:40.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-464] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:41.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-463] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:41.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-463] INFO SimpleMessageListenerContainer - Restarting Consumer@c26fb6e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:42.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-464] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:44.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-464] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:44.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-464] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:45.836 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:45.836 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] INFO SimpleMessageListenerContainer - Restarting Consumer@1ae7e4f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:46.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:47.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-464] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:47.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-464] INFO SimpleMessageListenerContainer - Restarting Consumer@3a2d88d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:48.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:48.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-465] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:50.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-465] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:50.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:51.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-464] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:51.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-464] INFO SimpleMessageListenerContainer - Restarting Consumer@5c9b67fb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:52.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-465] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:54.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-465] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:54.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-465] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:31:56.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-465] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:31:57.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:31:57.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] INFO SimpleMessageListenerContainer - Restarting Consumer@3d61f1b9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:31:58.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:00.007 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:32:00.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:00.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:02.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-465] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:02.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-465] INFO SimpleMessageListenerContainer - Restarting Consumer@6e440d7c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:03.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-466] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:32:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:32:04.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-465] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:04.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-465] INFO SimpleMessageListenerContainer - Restarting Consumer@6120726e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:05.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-466] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:05.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-466] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:32:07.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-466] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:07.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-466] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:08.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:08.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] INFO SimpleMessageListenerContainer - Restarting Consumer@2af8883a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:09.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:11.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:11.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-466] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:13.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:14.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-466] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:14.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-466] INFO SimpleMessageListenerContainer - Restarting Consumer@642fc367: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:15.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-467] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:17.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-467] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:17.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-467] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:18.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-466] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:18.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-466] INFO SimpleMessageListenerContainer - Restarting Consumer@9a571bd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:19.278 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-467] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:20.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:20.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] INFO SimpleMessageListenerContainer - Restarting Consumer@36e6ae90: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:21.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-467] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:21.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:23.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:23.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-467] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:24.387 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-467] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:24.387 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-467] INFO SimpleMessageListenerContainer - Restarting Consumer@722e2df5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:25.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-468] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:27.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-468] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:27.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:29.448 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-468] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:30.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-467] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:30.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-467] INFO SimpleMessageListenerContainer - Restarting Consumer@2f4f97dd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:31.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-468] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:33.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-468] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:33.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-468] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:34.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:34.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] INFO SimpleMessageListenerContainer - Restarting Consumer@7c28560d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:35.553 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:36.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-468] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:36.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-468] INFO SimpleMessageListenerContainer - Restarting Consumer@7816b932: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:37.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:37.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-469] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:39.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-469] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:39.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:40.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-468] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:40.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-468] INFO SimpleMessageListenerContainer - Restarting Consumer@333333b8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:41.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-469] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:43.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-469] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:43.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-469] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:45.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-469] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:46.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:46.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] INFO SimpleMessageListenerContainer - Restarting Consumer@6606981c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:47.713 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:49.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:49.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:50.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-469] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:50.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-469] INFO SimpleMessageListenerContainer - Restarting Consumer@5fc9a554: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:51.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-470] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:52.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-469] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:52.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-469] INFO SimpleMessageListenerContainer - Restarting Consumer@127f9f38: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:53.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-470] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:53.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-470] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:55.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-470] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:55.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-470] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:56.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:32:56.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] INFO SimpleMessageListenerContainer - Restarting Consumer@456e43cc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:32:57.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:32:59.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:32:59.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-470] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:00.001 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:33:01.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:02.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-470] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:02.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-470] INFO SimpleMessageListenerContainer - Restarting Consumer@40c5dc13: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:03.295 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:33:03.295 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:33:03.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-471] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:06.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-471] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:06.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-471] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:33:07.063 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-470] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:07.063 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-470] INFO SimpleMessageListenerContainer - Restarting Consumer@5d35e9e8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:08.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-471] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:09.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:09.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] INFO SimpleMessageListenerContainer - Restarting Consumer@76b6b63e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:10.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-471] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:10.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:12.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-471] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:12.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:13.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-471] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:13.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-471] INFO SimpleMessageListenerContainer - Restarting Consumer@7af33b8b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:14.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-472] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:16.163 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:16.163 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-472] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:18.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-472] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:19.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-471] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:19.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-471] INFO SimpleMessageListenerContainer - Restarting Consumer@1e9a8c11: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:20.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-472] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:22.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-472] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:22.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-472] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:23.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:23.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] INFO SimpleMessageListenerContainer - Restarting Consumer@1887e3ca: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:24.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:25.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-472] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:25.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-472] INFO SimpleMessageListenerContainer - Restarting Consumer@7821e72c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:26.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-473] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:26.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:28.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:28.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-473] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:29.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-472] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:29.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-472] INFO SimpleMessageListenerContainer - Restarting Consumer@2613b30f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:30.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-473] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:32.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-473] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:32.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-473] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:34.436 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-473] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:35.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:35.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] INFO SimpleMessageListenerContainer - Restarting Consumer@204ea53e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:36.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:38.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:38.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:39.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-473] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:39.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-473] INFO SimpleMessageListenerContainer - Restarting Consumer@39a08ffc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:40.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-474] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:41.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-473] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:41.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-473] INFO SimpleMessageListenerContainer - Restarting Consumer@1c9f8725: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:42.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-474] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:42.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-474] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:44.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-474] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:44.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-474] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:45.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:45.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] INFO SimpleMessageListenerContainer - Restarting Consumer@4681846a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:46.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:48.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:48.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-474] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:50.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:51.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-474] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:51.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-474] INFO SimpleMessageListenerContainer - Restarting Consumer@ba38fc0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:52.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-475] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:54.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-475] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:33:54.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-475] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-474] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:55.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-474] INFO SimpleMessageListenerContainer - Restarting Consumer@7544592c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:56.747 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-475] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:57.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:33:57.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] INFO SimpleMessageListenerContainer - Restarting Consumer@79ca59e8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:33:58.771 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:33:58.771 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-475] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:00.007 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:34:00.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:00.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-475] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:01.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-475] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:01.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-475] INFO SimpleMessageListenerContainer - Restarting Consumer@47630358: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:02.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-476] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:03.296 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:34:03.297 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:34:04.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-476] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:04.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:06.602 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:34:06.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-476] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:07.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-475] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:07.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-475] INFO SimpleMessageListenerContainer - Restarting Consumer@198cc112: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:08.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-476] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:10.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-476] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:10.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-476] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:12.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:12.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] INFO SimpleMessageListenerContainer - Restarting Consumer@668db881: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:12.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:14.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-476] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:14.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-476] INFO SimpleMessageListenerContainer - Restarting Consumer@13be14a0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:15.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:15.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-477] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:17.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:17.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-477] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:18.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-476] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:18.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-476] INFO SimpleMessageListenerContainer - Restarting Consumer@56d1b85d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:19.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-477] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:21.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-477] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:21.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-477] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:23.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-477] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:24.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:24.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] INFO SimpleMessageListenerContainer - Restarting Consumer@7b88bd8b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:25.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:27.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:27.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:28.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-477] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:28.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-477] INFO SimpleMessageListenerContainer - Restarting Consumer@3635fc71: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:29.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-478] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:30.344 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-477] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:30.344 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-477] INFO SimpleMessageListenerContainer - Restarting Consumer@3c099e16: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:31.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-478] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:31.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-478] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:33.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-478] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:33.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-478] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:34.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:34.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] INFO SimpleMessageListenerContainer - Restarting Consumer@1d72475d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:35.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:37.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:37.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-478] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:39.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:40.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-478] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:40.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-478] INFO SimpleMessageListenerContainer - Restarting Consumer@7ff8894: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:41.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-479] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:43.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-479] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:43.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-479] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:44.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-478] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:44.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-478] INFO SimpleMessageListenerContainer - Restarting Consumer@3de4b8cd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:45.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-479] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:46.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:46.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] INFO SimpleMessageListenerContainer - Restarting Consumer@2685b6a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:47.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-479] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:47.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:49.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:49.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-479] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:50.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-479] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:50.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-479] INFO SimpleMessageListenerContainer - Restarting Consumer@477fdc73: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:51.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-480] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:53.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-480] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:53.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:55.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-480] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:56.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-479] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:34:56.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-479] INFO SimpleMessageListenerContainer - Restarting Consumer@22fc6607: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:34:57.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-480] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:34:59.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-480] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:34:59.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-480] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:00.003 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:35:00.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:00.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] INFO SimpleMessageListenerContainer - Restarting Consumer@27d0a111: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:01.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:02.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-480] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:02.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-480] INFO SimpleMessageListenerContainer - Restarting Consumer@d712827: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:35:03.295 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:35:03.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-481] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:03.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:05.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-481] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:05.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:06.596 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:35:06.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-480] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:06.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-480] INFO SimpleMessageListenerContainer - Restarting Consumer@2f6af245: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:07.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-481] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:09.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-481] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:09.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-481] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:11.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-481] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:12.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:12.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] INFO SimpleMessageListenerContainer - Restarting Consumer@2f7455ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:13.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:15.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:15.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:16.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-481] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:16.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-481] INFO SimpleMessageListenerContainer - Restarting Consumer@7afcb35b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:17.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-482] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:18.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-481] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:18.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-481] INFO SimpleMessageListenerContainer - Restarting Consumer@45c17c7e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:19.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-482] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:19.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-482] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:22.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-482] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:22.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-482] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:23.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:23.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] INFO SimpleMessageListenerContainer - Restarting Consumer@2b154d42: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:24.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:26.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-482] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:26.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:28.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:29.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-482] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:29.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-482] INFO SimpleMessageListenerContainer - Restarting Consumer@361e611b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:30.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-483] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:32.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-483] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:32.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-483] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:33.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-482] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:33.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-482] INFO SimpleMessageListenerContainer - Restarting Consumer@61d581dc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:34.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-483] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:35.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:35.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] INFO SimpleMessageListenerContainer - Restarting Consumer@4297cb78: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:36.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:36.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-483] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:38.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:38.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-483] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:39.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-483] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:39.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-483] INFO SimpleMessageListenerContainer - Restarting Consumer@5513ba65: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:40.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-484] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:42.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:42.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-484] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:44.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-484] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:45.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-483] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:45.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-483] INFO SimpleMessageListenerContainer - Restarting Consumer@10f31445: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:46.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-484] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:48.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-484] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:48.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-484] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:49.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:49.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] INFO SimpleMessageListenerContainer - Restarting Consumer@713f72e6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:50.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:51.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-484] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:51.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-484] INFO SimpleMessageListenerContainer - Restarting Consumer@7306e5aa: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:52.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:52.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-485] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:54.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:54.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-485] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:55.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-484] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:35:55.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-484] INFO SimpleMessageListenerContainer - Restarting Consumer@68946a5d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:35:56.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-485] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:35:58.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-485] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:35:58.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-485] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:00.014 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:36:00.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-485] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:01.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:01.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] INFO SimpleMessageListenerContainer - Restarting Consumer@9f252c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:02.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:03.304 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:36:03.304 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:36:04.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:04.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:05.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-485] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:05.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-485] INFO SimpleMessageListenerContainer - Restarting Consumer@6a18e20a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:06.599 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:36:06.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-486] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:07.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-485] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:07.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-485] INFO SimpleMessageListenerContainer - Restarting Consumer@6a92d564: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:08.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-486] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:08.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-486] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:10.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-486] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:10.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-486] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:11.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:11.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] INFO SimpleMessageListenerContainer - Restarting Consumer@87dc4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:12.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:14.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:14.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-486] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:16.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:17.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-486] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:17.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-486] INFO SimpleMessageListenerContainer - Restarting Consumer@1a406bf7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:18.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-487] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:20.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-487] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:20.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-487] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:21.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-486] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:21.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-486] INFO SimpleMessageListenerContainer - Restarting Consumer@1a522b60: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:22.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-487] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:23.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:23.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] INFO SimpleMessageListenerContainer - Restarting Consumer@40e7adde: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:24.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-487] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:24.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:26.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:26.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-487] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:28.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-487] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:28.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-487] INFO SimpleMessageListenerContainer - Restarting Consumer@11cd899: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:29.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-488] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:31.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-488] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:31.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:33.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-488] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:34.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-487] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:34.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-487] INFO SimpleMessageListenerContainer - Restarting Consumer@3362a096: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:35.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-488] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:37.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-488] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:37.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-488] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:38.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:38.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] INFO SimpleMessageListenerContainer - Restarting Consumer@311ee597: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:39.120 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:40.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-488] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:40.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-488] INFO SimpleMessageListenerContainer - Restarting Consumer@39745a19: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:41.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-489] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:41.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:43.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-489] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:43.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:44.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-488] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:44.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-488] INFO SimpleMessageListenerContainer - Restarting Consumer@7614ed15: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:45.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-489] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:47.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-489] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:47.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-489] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:49.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-489] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:50.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:50.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] INFO SimpleMessageListenerContainer - Restarting Consumer@66b27c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:51.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:53.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:53.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:54.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-489] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:54.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-489] INFO SimpleMessageListenerContainer - Restarting Consumer@655bc78f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:55.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-490] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:56.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-489] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:36:56.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-489] INFO SimpleMessageListenerContainer - Restarting Consumer@4fa4dd9c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:36:57.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-490] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:36:57.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-490] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:59.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-490] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:36:59.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-490] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:00.001 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:37:00.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:00.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] INFO SimpleMessageListenerContainer - Restarting Consumer@2630f288: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:01.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:37:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:37:03.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-490] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:03.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:05.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:06.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-490] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:06.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-490] INFO SimpleMessageListenerContainer - Restarting Consumer@426969e0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:37:07.488 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-491] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:09.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-491] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:09.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-491] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:10.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-490] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:10.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-490] INFO SimpleMessageListenerContainer - Restarting Consumer@407fa613: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:11.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-491] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:12.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:12.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] INFO SimpleMessageListenerContainer - Restarting Consumer@743f2588: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:13.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:13.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-491] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:15.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-491] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:15.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:16.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-491] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:16.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-491] INFO SimpleMessageListenerContainer - Restarting Consumer@7023fd7f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:17.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-492] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:19.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:19.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-492] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:21.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-492] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:22.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-491] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:22.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-491] INFO SimpleMessageListenerContainer - Restarting Consumer@29cc86ad: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:23.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-492] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:25.745 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-492] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:25.745 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-492] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:26.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:26.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] INFO SimpleMessageListenerContainer - Restarting Consumer@4f1478d9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:27.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:28.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-492] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:28.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-492] INFO SimpleMessageListenerContainer - Restarting Consumer@40f53b85: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:29.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-493] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:29.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:31.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-493] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:31.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:32.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-492] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:32.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-492] INFO SimpleMessageListenerContainer - Restarting Consumer@312a04f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:33.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-493] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:35.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-493] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:35.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-493] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:37.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-493] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:39.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:39.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] INFO SimpleMessageListenerContainer - Restarting Consumer@51c56d0e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:39.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:41.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:41.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:43.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-493] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:43.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-493] INFO SimpleMessageListenerContainer - Restarting Consumer@4799736b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:44.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-494] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:45.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-493] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:45.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-493] INFO SimpleMessageListenerContainer - Restarting Consumer@18da0297: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:46.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-494] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:46.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-494] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:48.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-494] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:48.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-494] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:49.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:49.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] INFO SimpleMessageListenerContainer - Restarting Consumer@4ce64862: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:50.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:52.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:52.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-494] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:54.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:55.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-494] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:55.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-494] INFO SimpleMessageListenerContainer - Restarting Consumer@c07d948: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:37:56.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-495] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:58.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-495] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:37:58.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-495] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:37:59.306 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-494] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:37:59.306 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-494] INFO SimpleMessageListenerContainer - Restarting Consumer@257acd81: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:00.002 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:38:00.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-495] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:01.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:01.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] INFO SimpleMessageListenerContainer - Restarting Consumer@6ee9d38b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:02.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-495] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:02.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:03.293 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:38:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:38:04.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:04.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-495] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:05.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-495] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:05.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-495] INFO SimpleMessageListenerContainer - Restarting Consumer@3e94b8ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:06.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-496] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:06.597 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:38:08.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-496] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:08.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:10.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-496] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:11.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-495] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:11.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-495] INFO SimpleMessageListenerContainer - Restarting Consumer@2dbbb76d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:12.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-496] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:14.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-496] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:14.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-496] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:15.542 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:15.542 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] INFO SimpleMessageListenerContainer - Restarting Consumer@7e5f2420: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:16.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:17.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-496] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:17.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-496] INFO SimpleMessageListenerContainer - Restarting Consumer@21ca05fd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:18.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:18.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-497] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:20.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-497] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:20.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:21.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-496] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:21.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-496] INFO SimpleMessageListenerContainer - Restarting Consumer@663c48b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:22.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-497] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:24.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-497] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:24.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-497] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:26.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-497] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:27.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:27.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] INFO SimpleMessageListenerContainer - Restarting Consumer@7eff0884: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:28.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:30.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:30.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:31.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-497] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:31.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-497] INFO SimpleMessageListenerContainer - Restarting Consumer@e76851c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:32.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-498] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:33.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-497] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:33.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-497] INFO SimpleMessageListenerContainer - Restarting Consumer@1932d4ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:34.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-498] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:34.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-498] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:36.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-498] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:36.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-498] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:37.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:37.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] INFO SimpleMessageListenerContainer - Restarting Consumer@2c994fb3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:38.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:40.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:40.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-498] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:42.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:43.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-498] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:43.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-498] INFO SimpleMessageListenerContainer - Restarting Consumer@2054618: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:44.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-499] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:46.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-499] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:46.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-499] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:48.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-498] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:48.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-498] INFO SimpleMessageListenerContainer - Restarting Consumer@52530b08: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:49.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-499] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:50.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:50.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] INFO SimpleMessageListenerContainer - Restarting Consumer@5b89f456: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:51.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-499] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:51.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:53.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:53.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-499] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:54.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-499] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:38:54.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-499] INFO SimpleMessageListenerContainer - Restarting Consumer@4000ca2f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:38:55.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-500] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:57.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:38:57.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-500] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:38:59.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-500] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:00.016 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:39:00.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-499] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:00.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-499] INFO SimpleMessageListenerContainer - Restarting Consumer@21f2f495: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:01.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-500] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:03.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-500] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:03.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-500] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:03.294 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:39:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:39:04.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:04.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] INFO SimpleMessageListenerContainer - Restarting Consumer@5dd47676: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:05.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:06.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-500] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:06.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-500] INFO SimpleMessageListenerContainer - Restarting Consumer@5961b10f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:39:07.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:07.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-501] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:09.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-501] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:09.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:10.315 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-500] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:10.315 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-500] INFO SimpleMessageListenerContainer - Restarting Consumer@139b3139: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:11.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-501] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:13.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-501] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:13.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-501] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:15.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-501] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:16.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:16.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] INFO SimpleMessageListenerContainer - Restarting Consumer@4c9c5bd9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:17.403 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:19.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:19.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:20.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-501] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:20.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-501] INFO SimpleMessageListenerContainer - Restarting Consumer@1d2a2c82: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:21.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-502] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:22.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-501] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:22.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-501] INFO SimpleMessageListenerContainer - Restarting Consumer@1c7510f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:23.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-502] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:23.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-502] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:25.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-502] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:25.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-502] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:26.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:26.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] INFO SimpleMessageListenerContainer - Restarting Consumer@7291a48d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:27.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:29.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:29.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-502] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:31.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:32.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-502] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:32.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-502] INFO SimpleMessageListenerContainer - Restarting Consumer@30a8b26b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:33.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-503] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:35.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-503] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:35.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-503] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:36.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-502] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:36.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-502] INFO SimpleMessageListenerContainer - Restarting Consumer@ac366fc: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:37.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-503] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:38.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:38.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] INFO SimpleMessageListenerContainer - Restarting Consumer@2b38355b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:39.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:39.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-503] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:41.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:41.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-503] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:42.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-503] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:42.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-503] INFO SimpleMessageListenerContainer - Restarting Consumer@530557e3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:43.793 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-504] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:45.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:45.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-504] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:47.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-504] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:48.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-503] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:48.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-503] INFO SimpleMessageListenerContainer - Restarting Consumer@5adae394: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:49.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-504] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:51.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-504] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:51.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-504] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:52.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:52.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] INFO SimpleMessageListenerContainer - Restarting Consumer@4f998ede: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:53.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:55.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-504] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:55.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-504] INFO SimpleMessageListenerContainer - Restarting Consumer@7363d9a5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:39:55.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:55.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-505] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:57.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-505] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:39:57.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:39:59.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-504] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:39:59.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-504] INFO SimpleMessageListenerContainer - Restarting Consumer@66553f49: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:00.004 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:40:00.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-505] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:02.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-505] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:02.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-505] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:03.299 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:40:03.299 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:40:04.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-505] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:05.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:05.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] INFO SimpleMessageListenerContainer - Restarting Consumer@2e9cb74b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:06.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:06.596 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:40:08.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:08.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:09.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-505] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:09.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-505] INFO SimpleMessageListenerContainer - Restarting Consumer@769606a5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:10.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-506] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:11.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-505] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:11.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-505] INFO SimpleMessageListenerContainer - Restarting Consumer@516a8903: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:12.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-506] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:12.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-506] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:14.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-506] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:14.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-506] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:15.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:15.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] INFO SimpleMessageListenerContainer - Restarting Consumer@53e7ca18: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:16.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:18.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-506] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:18.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:20.278 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:21.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-506] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:21.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-506] INFO SimpleMessageListenerContainer - Restarting Consumer@35d98f86: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:22.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-507] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:24.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-507] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:24.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-507] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:25.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-506] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:25.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-506] INFO SimpleMessageListenerContainer - Restarting Consumer@7951103e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:26.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-507] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:27.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:27.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] INFO SimpleMessageListenerContainer - Restarting Consumer@7eea4395: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:28.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-507] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:28.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:30.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:30.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-507] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:31.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-507] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:31.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-507] INFO SimpleMessageListenerContainer - Restarting Consumer@71c487ec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:32.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-508] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:34.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-508] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:34.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:36.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-508] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:37.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-507] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:37.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-507] INFO SimpleMessageListenerContainer - Restarting Consumer@58ec3f5d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:38.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-508] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:40.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-508] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:40.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-508] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:41.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:41.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] INFO SimpleMessageListenerContainer - Restarting Consumer@4737c5e4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:42.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:43.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-508] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:43.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-508] INFO SimpleMessageListenerContainer - Restarting Consumer@133d8c4b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:44.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:44.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-509] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:46.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-509] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:46.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:47.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-508] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:47.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-508] INFO SimpleMessageListenerContainer - Restarting Consumer@4d99b672: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:48.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-509] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:50.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-509] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:50.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-509] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:52.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-509] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:53.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:53.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] INFO SimpleMessageListenerContainer - Restarting Consumer@445539f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:54.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:56.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:40:56.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:57.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-509] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:57.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-509] INFO SimpleMessageListenerContainer - Restarting Consumer@507050f6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:40:58.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-510] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:40:59.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-509] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:40:59.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-509] INFO SimpleMessageListenerContainer - Restarting Consumer@6e08eeb8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:00.002 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:41:00.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-510] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:00.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-510] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:02.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-510] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:02.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-510] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:03.294 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:41:03.294 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:41:03.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:03.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] INFO SimpleMessageListenerContainer - Restarting Consumer@5e5f832a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:04.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:06.595 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:41:06.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-510] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:06.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:09.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:10.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-510] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:10.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-510] INFO SimpleMessageListenerContainer - Restarting Consumer@6225e18f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:11.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-511] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:13.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-511] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:13.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-511] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:14.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-510] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:14.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-510] INFO SimpleMessageListenerContainer - Restarting Consumer@12a73da1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:15.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-511] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:16.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:16.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] INFO SimpleMessageListenerContainer - Restarting Consumer@1118197f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:17.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-511] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:17.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:19.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:19.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-511] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:20.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-511] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:20.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-511] INFO SimpleMessageListenerContainer - Restarting Consumer@38e71392: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:21.206 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-512] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:23.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-512] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:23.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:25.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-512] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:26.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-511] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:26.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-511] INFO SimpleMessageListenerContainer - Restarting Consumer@75d5e348: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:27.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-512] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:29.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-512] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:29.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-512] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:30.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:30.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] INFO SimpleMessageListenerContainer - Restarting Consumer@73074490: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:31.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:32.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-512] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:32.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-512] INFO SimpleMessageListenerContainer - Restarting Consumer@34af47a2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:33.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:33.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-513] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:35.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-513] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:35.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:36.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-512] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:36.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-512] INFO SimpleMessageListenerContainer - Restarting Consumer@b51e353: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:37.424 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-513] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:39.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-513] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:39.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-513] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:41.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-513] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:42.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:42.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] INFO SimpleMessageListenerContainer - Restarting Consumer@567445e1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:43.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:45.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:45.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:46.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-513] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:46.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-513] INFO SimpleMessageListenerContainer - Restarting Consumer@7632482b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:47.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-514] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:48.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-513] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:48.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-513] INFO SimpleMessageListenerContainer - Restarting Consumer@2b28f57c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:49.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-514] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:49.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-514] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:51.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-514] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:51.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-514] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:52.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:52.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] INFO SimpleMessageListenerContainer - Restarting Consumer@64345da7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:53.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:55.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-514] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:55.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:41:57.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:41:58.820 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-514] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:41:58.820 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-514] INFO SimpleMessageListenerContainer - Restarting Consumer@222f5c69: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:41:59.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-515] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:00.009 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:42:01.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-515] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:01.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-515] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:02.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-514] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:02.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-514] INFO SimpleMessageListenerContainer - Restarting Consumer@3c51753f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:03.297 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:42:03.297 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:42:03.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-515] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:04.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:04.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] INFO SimpleMessageListenerContainer - Restarting Consumer@60b1f9a3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:05.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:05.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-515] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:42:07.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:07.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-515] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:08.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-515] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:08.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-515] INFO SimpleMessageListenerContainer - Restarting Consumer@240723b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:09.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-516] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:12.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:12.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-516] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:14.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-516] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:15.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-515] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:15.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-515] INFO SimpleMessageListenerContainer - Restarting Consumer@4130e484: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:16.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-516] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:18.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-516] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:18.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-516] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:19.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:19.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] INFO SimpleMessageListenerContainer - Restarting Consumer@3cf9d290: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:20.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:21.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-516] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:21.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-516] INFO SimpleMessageListenerContainer - Restarting Consumer@7a4998ca: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:22.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:22.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-517] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:24.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-517] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:24.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:25.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-516] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:25.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-516] INFO SimpleMessageListenerContainer - Restarting Consumer@263b6eec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:26.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-517] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:28.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-517] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:28.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-517] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:30.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-517] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:31.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:31.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] INFO SimpleMessageListenerContainer - Restarting Consumer@407af33f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:32.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:34.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:34.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:35.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-517] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:35.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-517] INFO SimpleMessageListenerContainer - Restarting Consumer@4045c64e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:36.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-518] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:37.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-517] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:37.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-517] INFO SimpleMessageListenerContainer - Restarting Consumer@5519d049: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:38.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-518] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:38.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-518] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:40.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-518] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:40.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-518] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:41.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:41.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] INFO SimpleMessageListenerContainer - Restarting Consumer@1efe85ec: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:42.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:44.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:44.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-518] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:46.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:47.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-518] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:47.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-518] INFO SimpleMessageListenerContainer - Restarting Consumer@1b78f129: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:48.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-519] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:50.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-519] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:50.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-519] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:51.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-518] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:51.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-518] INFO SimpleMessageListenerContainer - Restarting Consumer@7ea29f53: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:52.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-519] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:53.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:53.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] INFO SimpleMessageListenerContainer - Restarting Consumer@6faf1f34: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:54.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-519] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:54.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:56.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-519] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:42:56.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:42:57.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-519] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:42:57.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-519] INFO SimpleMessageListenerContainer - Restarting Consumer@263e664c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:42:58.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-520] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:00.000 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:43:00.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-520] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:00.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:02.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-520] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:03.300 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:43:03.300 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:43:03.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-519] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:03.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-519] INFO SimpleMessageListenerContainer - Restarting Consumer@496172b9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:04.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-520] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:06.598 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:43:06.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-520] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:06.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-520] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:07.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:07.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] INFO SimpleMessageListenerContainer - Restarting Consumer@7c73a547: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:08.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:09.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-520] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:09.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-520] INFO SimpleMessageListenerContainer - Restarting Consumer@7f149439: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:10.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:10.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-521] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:12.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-521] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:12.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:13.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-520] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:13.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-520] INFO SimpleMessageListenerContainer - Restarting Consumer@49ed73d2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:14.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-521] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:16.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-521] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:16.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-521] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:18.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-521] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:20.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:20.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] INFO SimpleMessageListenerContainer - Restarting Consumer@192b50c2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:20.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:23.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:23.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:24.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-521] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:24.042 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-521] INFO SimpleMessageListenerContainer - Restarting Consumer@3266ca4c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:25.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-522] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:26.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-521] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:26.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-521] INFO SimpleMessageListenerContainer - Restarting Consumer@5a2c8d6e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:27.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-522] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:27.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-522] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:29.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-522] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:29.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-522] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:30.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:30.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] INFO SimpleMessageListenerContainer - Restarting Consumer@7dd6218a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:31.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:33.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:33.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-522] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:35.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:36.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-522] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:36.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-522] INFO SimpleMessageListenerContainer - Restarting Consumer@5ed4d88c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:37.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-523] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:39.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-523] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:39.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-523] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:40.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-522] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:40.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-522] INFO SimpleMessageListenerContainer - Restarting Consumer@5c45a289: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:41.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-523] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:42.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:42.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] INFO SimpleMessageListenerContainer - Restarting Consumer@281beefe: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:43.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:43.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-523] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:45.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:45.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-523] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:46.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-523] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:46.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-523] INFO SimpleMessageListenerContainer - Restarting Consumer@2af793de: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:47.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-524] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:49.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-524] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:49.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:51.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-524] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:52.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-523] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:52.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-523] INFO SimpleMessageListenerContainer - Restarting Consumer@204b98e3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:53.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-524] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:55.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-524] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:55.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-524] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:56.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:56.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] INFO SimpleMessageListenerContainer - Restarting Consumer@34f46565: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:57.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:43:58.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-524] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:43:58.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-524] INFO SimpleMessageListenerContainer - Restarting Consumer@d1ad9a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:43:59.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:43:59.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-525] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:00.010 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:44:01.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-525] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:01.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:02.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-524] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:02.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-524] INFO SimpleMessageListenerContainer - Restarting Consumer@20dbda4b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:03.293 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:44:03.294 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:44:03.604 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-525] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:05.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-525] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:05.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-525] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:06.595 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:44:07.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-525] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:08.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:08.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] INFO SimpleMessageListenerContainer - Restarting Consumer@1f2318cd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:09.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:11.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:11.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:12.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-525] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:12.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-525] INFO SimpleMessageListenerContainer - Restarting Consumer@1952c49d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:13.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-526] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:14.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-525] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:14.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-525] INFO SimpleMessageListenerContainer - Restarting Consumer@304cd05: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:15.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-526] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:15.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-526] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:17.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-526] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:17.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-526] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:18.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:18.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] INFO SimpleMessageListenerContainer - Restarting Consumer@2dd36f5c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:19.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:21.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:21.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-526] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:23.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:24.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-526] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:24.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-526] INFO SimpleMessageListenerContainer - Restarting Consumer@137db848: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:25.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-527] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:27.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-527] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:27.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-527] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:29.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-526] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:29.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-526] INFO SimpleMessageListenerContainer - Restarting Consumer@49ee33e3: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:29.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-527] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:31.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:31.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] INFO SimpleMessageListenerContainer - Restarting Consumer@1c6be90e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:31.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:31.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-527] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:34.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:34.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-527] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:35.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-527] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:35.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-527] INFO SimpleMessageListenerContainer - Restarting Consumer@608de740: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:36.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-528] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:38.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-528] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:38.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:40.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-528] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:41.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-527] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:41.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-527] INFO SimpleMessageListenerContainer - Restarting Consumer@30f084bd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:42.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-528] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:44.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-528] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:44.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-528] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:45.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:45.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] INFO SimpleMessageListenerContainer - Restarting Consumer@373a0f69: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:46.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:47.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-528] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:47.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-528] INFO SimpleMessageListenerContainer - Restarting Consumer@1ebb30f8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:48.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:48.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-529] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:50.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-529] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:50.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:51.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-528] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:51.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-528] INFO SimpleMessageListenerContainer - Restarting Consumer@63f4243d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:52.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-529] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:54.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-529] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:44:54.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-529] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:56.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-529] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:44:57.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:44:57.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] INFO SimpleMessageListenerContainer - Restarting Consumer@1a3433f5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:44:58.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:00.005 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:45:00.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:00.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:01.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-529] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:01.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-529] INFO SimpleMessageListenerContainer - Restarting Consumer@5f0e47d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:02.407 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-530] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:03.292 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:45:03.293 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:45:03.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-529] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:03.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-529] INFO SimpleMessageListenerContainer - Restarting Consumer@6984ee5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:04.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-530] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:04.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-530] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:06.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-530] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:06.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-530] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:06.594 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:45:07.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:07.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] INFO SimpleMessageListenerContainer - Restarting Consumer@69bbd591: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:08.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:10.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:10.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-530] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:12.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:13.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-530] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:13.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-530] INFO SimpleMessageListenerContainer - Restarting Consumer@6e4a6e35: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:14.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-531] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:16.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-531] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:16.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-531] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:17.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-530] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:17.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-530] INFO SimpleMessageListenerContainer - Restarting Consumer@663185bb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:18.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-531] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:19.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:19.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] INFO SimpleMessageListenerContainer - Restarting Consumer@1b6a0901: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:20.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-531] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:20.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:22.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:22.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-531] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:23.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-531] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:23.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-531] INFO SimpleMessageListenerContainer - Restarting Consumer@6bed9184: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:24.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-532] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:26.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:26.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-532] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:28.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-532] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:29.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-531] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:29.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-531] INFO SimpleMessageListenerContainer - Restarting Consumer@318f6774: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:30.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-532] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:32.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-532] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:32.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-532] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:33.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:33.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] INFO SimpleMessageListenerContainer - Restarting Consumer@79fc2f00: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:34.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:35.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-532] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:35.940 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-532] INFO SimpleMessageListenerContainer - Restarting Consumer@7c348e78: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:36.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:36.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-533] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:38.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-533] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:38.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:39.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-532] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:39.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-532] INFO SimpleMessageListenerContainer - Restarting Consumer@503adafd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:40.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-533] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:43.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-533] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:43.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-533] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:45.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-533] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:46.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:46.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] INFO SimpleMessageListenerContainer - Restarting Consumer@24e684b2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:47.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:49.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:49.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:50.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-533] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:50.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-533] INFO SimpleMessageListenerContainer - Restarting Consumer@3158612e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:51.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-534] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:52.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-533] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:52.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-533] INFO SimpleMessageListenerContainer - Restarting Consumer@e62a329: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:53.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-534] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:53.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-534] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:55.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-534] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:55.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-534] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:56.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:45:56.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] INFO SimpleMessageListenerContainer - Restarting Consumer@661641fe: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:45:57.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:45:59.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:45:59.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-534] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:00.013 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:46:01.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:02.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-534] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:02.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-534] INFO SimpleMessageListenerContainer - Restarting Consumer@7b0f2448: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:03.298 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:46:03.298 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:46:03.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-535] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:05.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-535] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:05.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-535] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:06.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-534] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:06.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-534] INFO SimpleMessageListenerContainer - Restarting Consumer@777a4b45: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:46:07.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-535] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:08.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:08.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] INFO SimpleMessageListenerContainer - Restarting Consumer@59434326: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:09.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-535] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:09.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:11.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:11.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-535] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:12.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-535] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:12.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-535] INFO SimpleMessageListenerContainer - Restarting Consumer@3f3ca7fb: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:13.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-536] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:15.492 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:15.492 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-536] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:17.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-536] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:18.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-535] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:18.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-535] INFO SimpleMessageListenerContainer - Restarting Consumer@7b34cf92: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:19.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-536] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:21.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-536] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:21.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-536] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:22.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:22.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] INFO SimpleMessageListenerContainer - Restarting Consumer@7a19ee8f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:23.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:24.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-536] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:24.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-536] INFO SimpleMessageListenerContainer - Restarting Consumer@490182b2: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:25.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:25.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-537] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:27.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-537] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:27.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:28.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-536] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:28.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-536] INFO SimpleMessageListenerContainer - Restarting Consumer@7dd51e9e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:29.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-537] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:31.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-537] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:31.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-537] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:33.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-537] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:34.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:34.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] INFO SimpleMessageListenerContainer - Restarting Consumer@4a800570: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:35.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:37.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:37.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:38.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-537] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:38.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-537] INFO SimpleMessageListenerContainer - Restarting Consumer@5e51ba9e: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:39.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-538] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:40.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-537] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:40.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-537] INFO SimpleMessageListenerContainer - Restarting Consumer@1165d0d6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:41.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-538] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:41.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-538] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:43.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-538] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:43.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-538] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:44.950 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:44.950 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] INFO SimpleMessageListenerContainer - Restarting Consumer@1fb4b7a4: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:45.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:47.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:47.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-538] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:50.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:51.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-538] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:51.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-538] INFO SimpleMessageListenerContainer - Restarting Consumer@2a74b106: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:52.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-539] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:54.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-539] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:54.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-539] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:55.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-538] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:55.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-538] INFO SimpleMessageListenerContainer - Restarting Consumer@5109f2fe: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:56.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-539] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:46:57.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:46:57.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] INFO SimpleMessageListenerContainer - Restarting Consumer@39fd4a29: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:46:58.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-539] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:46:58.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:00.001 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:47:00.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:00.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-539] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:01.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-539] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:01.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-539] INFO SimpleMessageListenerContainer - Restarting Consumer@66645172: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:02.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-540] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:03.299 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:47:03.299 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:47:04.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-540] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:04.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:06.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-540] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:06.601 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:47:07.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-539] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:07.325 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-539] INFO SimpleMessageListenerContainer - Restarting Consumer@3cab1967: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:08.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-540] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:10.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-540] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:10.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-540] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:11.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:11.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] INFO SimpleMessageListenerContainer - Restarting Consumer@3c408f11: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:12.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:13.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-540] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:13.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-540] INFO SimpleMessageListenerContainer - Restarting Consumer@52c7018f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:14.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:14.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-541] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:16.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:16.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-541] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:17.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-540] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:17.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-540] INFO SimpleMessageListenerContainer - Restarting Consumer@55ad7d23: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:18.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-541] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:20.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-541] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:20.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-541] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:22.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-541] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:23.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:23.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] INFO SimpleMessageListenerContainer - Restarting Consumer@161f8eff: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:24.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:26.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:26.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:27.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-541] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:27.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-541] INFO SimpleMessageListenerContainer - Restarting Consumer@73a16a7a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:28.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-542] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:29.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-541] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:29.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-541] INFO SimpleMessageListenerContainer - Restarting Consumer@760a265a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:30.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-542] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:30.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-542] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:32.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-542] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:32.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-542] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:33.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:33.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] INFO SimpleMessageListenerContainer - Restarting Consumer@55ded72d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:34.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:36.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-542] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:36.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:38.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:39.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-542] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:39.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-542] INFO SimpleMessageListenerContainer - Restarting Consumer@47b182bd: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:40.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-543] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:42.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-543] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:42.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-543] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:43.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-542] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:43.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-542] INFO SimpleMessageListenerContainer - Restarting Consumer@8bf0d28: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:44.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-543] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:45.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:45.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] INFO SimpleMessageListenerContainer - Restarting Consumer@1a6ad03: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:46.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:46.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-543] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:48.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:48.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-543] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:49.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-543] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:49.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-543] INFO SimpleMessageListenerContainer - Restarting Consumer@37f2154c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:50.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-544] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:52.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-544] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:52.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:55.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-544] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:56.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-543] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:47:56.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-543] INFO SimpleMessageListenerContainer - Restarting Consumer@2a16e0a6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:47:57.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-544] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:47:59.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-544] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:47:59.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-544] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:00.011 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:48:00.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:00.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] INFO SimpleMessageListenerContainer - Restarting Consumer@427a9c97: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:01.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:02.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-544] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:02.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-544] INFO SimpleMessageListenerContainer - Restarting Consumer@7c33c261: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:03.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-545] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:03.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:03.295 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:48:03.296 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:48:05.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-545] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:05.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:06.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-544] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:06.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-544] INFO SimpleMessageListenerContainer - Restarting Consumer@20b8873f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@524640146 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8a4172bb, L:0.0.0.0/0.0.0.0:54891], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:48:07.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-545] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:09.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-545] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:09.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-545] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:11.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-545] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:12.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:12.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] INFO SimpleMessageListenerContainer - Restarting Consumer@3ad06d4f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:13.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:15.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:15.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:16.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-545] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:16.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-545] INFO SimpleMessageListenerContainer - Restarting Consumer@5971036b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:17.343 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-546] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:18.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-545] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:18.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-545] INFO SimpleMessageListenerContainer - Restarting Consumer@7ed96808: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:19.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-546] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:19.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-546] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:21.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-546] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:21.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-546] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:22.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:22.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] INFO SimpleMessageListenerContainer - Restarting Consumer@61891cd0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:23.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:25.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:25.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-546] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:27.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:28.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-546] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:28.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-546] INFO SimpleMessageListenerContainer - Restarting Consumer@690d49a7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:29.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-547] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:31.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-547] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:31.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-547] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:32.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-546] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:32.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-546] INFO SimpleMessageListenerContainer - Restarting Consumer@34f6b71a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:33.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-547] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:34.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:34.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] INFO SimpleMessageListenerContainer - Restarting Consumer@3fdd43e0: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:35.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-547] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:35.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:37.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:37.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-547] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:38.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-547] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:38.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-547] INFO SimpleMessageListenerContainer - Restarting Consumer@f1adfea: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:39.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-548] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:41.739 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-548] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:41.739 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:43.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-548] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:44.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-547] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:44.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-547] INFO SimpleMessageListenerContainer - Restarting Consumer@53fd7d54: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:45.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-548] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:47.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-548] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:47.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-548] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:48.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:48.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] INFO SimpleMessageListenerContainer - Restarting Consumer@6a7ea6a1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:49.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:50.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-548] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:50.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-548] INFO SimpleMessageListenerContainer - Restarting Consumer@2b08a92a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:51.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:51.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-549] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:53.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:53.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-549] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:54.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-548] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:48:54.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-548] INFO SimpleMessageListenerContainer - Restarting Consumer@4bafdd8a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:48:55.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-549] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:48:58.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-549] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:48:58.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-549] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:00.000 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:49:00.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-549] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:01.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:01.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] INFO SimpleMessageListenerContainer - Restarting Consumer@6e3b241b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:02.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:03.301 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@503033112 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x8523e83d, L:0.0.0.0/0.0.0.0:54890], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:49:03.302 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:49:04.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:04.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:05.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-549] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:05.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-549] INFO SimpleMessageListenerContainer - Restarting Consumer@6e53d17: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:06.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-550] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:06.598 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1438933811 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xfab53d82, L:0.0.0.0/0.0.0.0:54889], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:49:07.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-549] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:07.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-549] INFO SimpleMessageListenerContainer - Restarting Consumer@53346ba6: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:08.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-550] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:08.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-550] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:10.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-550] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:10.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-550] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:11.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:11.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] INFO SimpleMessageListenerContainer - Restarting Consumer@6acc22b7: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:12.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:14.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:14.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-550] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:16.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:17.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-550] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:17.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-550] INFO SimpleMessageListenerContainer - Restarting Consumer@6bee3f8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:18.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-551] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:20.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-551] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:20.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-551] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:21.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-550] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:21.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-550] INFO SimpleMessageListenerContainer - Restarting Consumer@104c3b0c: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:22.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-551] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:23.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:23.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] INFO SimpleMessageListenerContainer - Restarting Consumer@5743eb90: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:24.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-551] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:24.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:26.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:26.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-551] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:27.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-551] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:27.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-551] INFO SimpleMessageListenerContainer - Restarting Consumer@2f0dc532: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:28.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-552] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:30.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:30.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-552] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:32.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-552] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:33.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-551] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:33.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-551] INFO SimpleMessageListenerContainer - Restarting Consumer@aba4d5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:34.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-552] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:36.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-552] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:36.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-552] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:37.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:37.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] INFO SimpleMessageListenerContainer - Restarting Consumer@43dc59e1: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:38.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:39.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-552] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:39.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-552] INFO SimpleMessageListenerContainer - Restarting Consumer@12dcb105: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:40.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:40.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-553] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:42.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-553] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:42.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:43.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-552] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:43.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-552] INFO SimpleMessageListenerContainer - Restarting Consumer@7f5fbf72: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:44.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-553] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:46.731 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-553] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:46.731 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-553] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:48.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-553] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:49.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:49.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] INFO SimpleMessageListenerContainer - Restarting Consumer@54636b9f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:50.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:52.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:52.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:53.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-553] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:53.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-553] INFO SimpleMessageListenerContainer - Restarting Consumer@47b5548b: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:54.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-554] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:55.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-553] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:55.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-553] INFO SimpleMessageListenerContainer - Restarting Consumer@4d27593d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:49:56.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-554] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:56.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-554] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:58.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-554] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:49:58.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-554] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:49:59.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:49:59.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] INFO SimpleMessageListenerContainer - Restarting Consumer@314d3fb9: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:00.006 [scheduling-1 ] INFO UpdateAwardStockJob - 定时任务,更新奖品消耗库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:50:00.928 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:02.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:02.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-554] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:03.305 [scheduling-1 ] ERROR UpdateAwardStockJob - 定时任务,更新奖品消耗库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.StrategyRepository$$EnhancerBySpringCGLIB$$8dd49320.takeQueueValue() - at cn.bugstack.domain.strategy.service.raffle.DefaultRaffleStrategy.takeQueueValue(DefaultRaffleStrategy.java:65) - at cn.bugstack.trigger.job.UpdateAwardStockJob.exec(UpdateAwardStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor33.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@1223945951 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0xd9ab29e7, L:0.0.0.0/0.0.0.0:54888], currentCommand=null, usage=1], command: (LPOP), params: [strategy_award_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:50:03.305 [scheduling-1 ] INFO UpdateActivitySkuStockJob - 定时任务,更新活动sku库存【延迟队列获取,降低对数据库的更新频次,不要产生竞争】 -24-12-26.23:50:04.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:06.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-554] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:06.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-554] INFO SimpleMessageListenerContainer - Restarting Consumer@5f36c356: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:06.593 [scheduling-1 ] ERROR UpdateActivitySkuStockJob - 定时任务,更新活动sku库存失败 -org.springframework.data.redis.RedisConnectionFailureException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts; nested exception is org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:40) - at org.redisson.spring.data.connection.RedissonExceptionConverter.convert(RedissonExceptionConverter.java:35) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) - at org.redisson.spring.data.connection.RedissonConnectionFactory.translateExceptionIfPossible(RedissonConnectionFactory.java:91) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:152) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at cn.bugstack.infrastructure.persistent.repository.ActivityRepository$$EnhancerBySpringCGLIB$$a2d0ca74.takeQueueValue() - at cn.bugstack.domain.activity.service.quota.RaffleActivityAccountQuotaService.takeQueueValue(RaffleActivityAccountQuotaService.java:62) - at cn.bugstack.trigger.job.UpdateActivitySkuStockJob.exec(UpdateActivitySkuStockJob.java:27) - at sun.reflect.GeneratedMethodAccessor35.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:95) - 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:750) -Caused by: org.redisson.client.WriteRedisConnectionException: Unable to write command into connection! Increase nettyThreads setting. Node source: NodeSource [slot=0, addr=null, redisClient=null, redirect=null, entry=null], connection: RedisConnection@318501044 [redisClient=[addr=redis://127.0.0.1:16379], channel=[id: 0x2fd38bd7, L:0.0.0.0/0.0.0.0:54886], currentCommand=null, usage=1], command: (LPOP), params: [activity_sku_count_query_key] after 3 retry attempts - at org.redisson.command.RedisExecutor.checkWriteFuture(RedisExecutor.java:345) - at org.redisson.command.RedisExecutor.lambda$execute$3(RedisExecutor.java:188) - at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) - at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) - at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) - at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) - at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) - at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) - at io.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:999) - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:860) - at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1367) - at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:877) - at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940) - at io.netty.channel.AbstractChannelHandlerContext$WriteTask.run(AbstractChannelHandlerContext.java:1247) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -Caused by: io.netty.channel.StacklessClosedChannelException: null - at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) -24-12-26.23:50:07.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-555] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:09.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-555] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:09.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-555] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:10.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-554] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:10.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-554] INFO SimpleMessageListenerContainer - Restarting Consumer@1a72e58a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:11.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-555] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:12.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:12.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] INFO SimpleMessageListenerContainer - Restarting Consumer@619072ce: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:13.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:13.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-555] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:15.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:15.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-555] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:16.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-555] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:16.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-555] INFO SimpleMessageListenerContainer - Restarting Consumer@70429c56: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:17.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-556] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:19.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-556] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:19.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:21.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-556] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:22.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-555] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:22.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-555] INFO SimpleMessageListenerContainer - Restarting Consumer@16c23d41: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:23.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-556] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:25.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-556] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:25.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-556] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:26.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:26.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] INFO SimpleMessageListenerContainer - Restarting Consumer@591344d: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:27.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:28.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-556] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:28.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-556] INFO SimpleMessageListenerContainer - Restarting Consumer@35d1362f: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:29.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:29.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-557] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:31.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-557] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:31.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:32.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-556] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:32.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-556] INFO SimpleMessageListenerContainer - Restarting Consumer@2a15b952: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:33.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-557] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:35.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-557] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:35.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-557] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:37.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-557] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:38.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:38.550 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] INFO SimpleMessageListenerContainer - Restarting Consumer@5f79f0e8: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:39.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:41.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:41.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:42.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-557] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:42.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-557] INFO SimpleMessageListenerContainer - Restarting Consumer@5adea912: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:43.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-558] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:44.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-557] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:44.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-557] INFO SimpleMessageListenerContainer - Restarting Consumer@673372d5: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:45.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-558] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:45.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-558] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:47.620 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-558] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:47.620 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-558] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:48.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:48.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] INFO SimpleMessageListenerContainer - Restarting Consumer@75bbca0a: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:49.655 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-559] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:51.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-559] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:51.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-558] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:53.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-559] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:54.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-558] WARN SimpleMessageListenerContainer - Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect -24-12-26.23:50:54.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-558] INFO SimpleMessageListenerContainer - Restarting Consumer@6a0eba75: tags=[[]], channel=null, acknowledgeMode=AUTO local queue size=0 -24-12-26.23:50:55.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-559] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:55.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-560] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-26.23:50:55.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-559] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-26.23:50:55.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-560] INFO SimpleMessageListenerContainer - Waiting for workers to finish. -24-12-26.23:50:55.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-560] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-26.23:50:55.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-560] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-26.23:50:55.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-559] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. -24-12-26.23:50:57.756 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-26.23:50:57.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-559] ERROR SimpleMessageListenerContainer - Failed to check/redeclare auto-delete queue(s). -24-12-26.23:50:57.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-559] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] -24-12-26.23:50:57.757 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped -24-12-26.23:50:57.757 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:25:03.055 [background-preinit] INFO Version - HV000001: Hibernate Validator 6.2.5.Final +25-01-17.19:25:03.066 [main ] INFO Application - Starting Application using Java 1.8.0_412 on zhaoyongfeng with PID 18448 (C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes started by zhaoyongfeng in C:\Users\31126\Desktop\bigmarket-lite) +25-01-17.19:25:03.067 [main ] INFO Application - The following 1 profile is active: "dev" +25-01-17.19:25:06.311 [main ] INFO FrameworkModel - [DUBBO] Reset global default framework from null to Dubbo Framework[1], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.311 [main ] INFO FrameworkModel - [DUBBO] Dubbo Framework[1] is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.353 [main ] INFO ApplicationModel - [DUBBO] Dubbo Application[1.0](unknown) is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.353 [main ] INFO ScopeModel - [DUBBO] Dubbo Module[1.0.0] is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.391 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.391 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.468 [main ] INFO FrameworkModel - [DUBBO] Reset global default application from null to Dubbo Application[1.1](unknown), dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.469 [main ] INFO ApplicationModel - [DUBBO] Dubbo Application[1.1](unknown) is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.469 [main ] INFO ScopeModel - [DUBBO] Dubbo Module[1.1.0] is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.483 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.483 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.508 [main ] INFO DubboSpringInitializer - [DUBBO] Use default application: Dubbo Application[1.1](unknown), dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.509 [main ] INFO ScopeModel - [DUBBO] Dubbo Module[1.1.1] is created, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.516 [main ] INFO AbstractConfigManager - [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.523 [main ] INFO DubboSpringInitializer - [DUBBO] Use default module model of target application: Dubbo Module[1.1.1], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.523 [main ] INFO DubboSpringInitializer - [DUBBO] Bind Dubbo Module[1.1.1] to spring container: org.springframework.beans.factory.support.DefaultListableBeanFactory@f316aeb, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:06.823 [main ] INFO RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +25-01-17.19:25:06.825 [main ] INFO RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +25-01-17.19:25:06.977 [main ] INFO RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 139 ms. Found 0 Redis repository interfaces. +25-01-17.19:25:07.151 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:07.151 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:07.245 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] Found 2 classes annotated by Dubbo @Service under package [cn.bugstack]: [cn.bugstack.trigger.http.RaffleActivityController, cn.bugstack.trigger.http.RaffleStrategyController], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:07.255 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] Register ServiceBean[ServiceBean:cn.bugstack.trigger.api.IRaffleActivityService:1.0]: Root bean: class [org.apache.dubbo.config.spring.ServiceBean]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:07.255 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] Register ServiceBean[ServiceBean:cn.bugstack.trigger.api.IRaffleStrategyService:1.0]: Root bean: class [org.apache.dubbo.config.spring.ServiceBean]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:07.257 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:07.257 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:07.257 [main ] INFO ServiceAnnotationPostProcessor - [DUBBO] Ignore package who has already bean scanned: cn.bugstack.trigger.api, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:07.361 [main ] INFO ConfigurationClassPostProcessor - Cannot enhance @Configuration bean definition 'org.apache.dubbo.spring.boot.autoconfigure.DubboRelaxedBinding2AutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'. +25-01-17.19:25:07.361 [main ] INFO ConfigurationClassPostProcessor - Cannot enhance @Configuration bean definition 'org.apache.dubbo.spring.boot.autoconfigure.DubboAutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'. +25-01-17.19:25:07.468 [main ] INFO GenericScope - BeanFactory id=7478c502-6027-3dfa-876d-69dadd81902b +25-01-17.19:25:08.091 [main ] INFO ReferenceAnnotationBeanPostProcessor - class org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor was destroying! +25-01-17.19:25:08.528 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'zooKeeperClientConfig' of type [cn.bugstack.config.ZooKeeperClientConfig$$EnhancerBySpringCGLIB$$cf2c34be] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:25:08.542 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:25:08.546 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:25:08.549 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$545/382762227] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:25:08.554 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:25:08.560 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'zookeeper.sdk.config-cn.bugstack.config.ZookeeperClientConfigProperties' of type [cn.bugstack.config.ZookeeperClientConfigProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:25:08.611 [main ] WARN CuratorZookeeperClient - session timeout [18000] is less than connection timeout [30000] +25-01-17.19:25:08.623 [main ] INFO CuratorFrameworkImpl - Starting +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:zookeeper.version=3.6.0--b4c89dc7f6083829e18fae6e446907ae0b1f22d7, built on 02/25/2020 14:38 GMT +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:host.name=zhaoyongfeng +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:java.version=1.8.0_412 +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:java.vendor=Amazon.com Inc. +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:java.home=D:\tools\javajdk\jak1.8\jre +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:java.class.path=D:\tools\javajdk\jak1.8\jre\lib\charsets.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\access-bridge-64.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\cldrdata.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\dnsns.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\jaccess.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\jfxrt.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\localedata.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\nashorn.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\sunec.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\sunjce_provider.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\sunmscapi.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\sunpkcs11.jar;D:\tools\javajdk\jak1.8\jre\lib\ext\zipfs.jar;D:\tools\javajdk\jak1.8\jre\lib\jce.jar;D:\tools\javajdk\jak1.8\jre\lib\jfr.jar;D:\tools\javajdk\jak1.8\jre\lib\jfxswt.jar;D:\tools\javajdk\jak1.8\jre\lib\jsse.jar;D:\tools\javajdk\jak1.8\jre\lib\management-agent.jar;D:\tools\javajdk\jak1.8\jre\lib\resources.jar;D:\tools\javajdk\jak1.8\jre\lib\rt.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-app\target\classes;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-web\2.7.12\spring-boot-starter-web-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter\2.7.12\spring-boot-starter-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot\2.7.12\spring-boot-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.7.12\spring-boot-starter-logging-2.7.12.jar;C:\Users\31126\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.17.2\log4j-to-slf4j-2.17.2.jar;C:\Users\31126\.m2\repository\org\apache\logging\log4j\log4j-api\2.17.2\log4j-api-2.17.2.jar;C:\Users\31126\.m2\repository\org\slf4j\jul-to-slf4j\1.7.36\jul-to-slf4j-1.7.36.jar;C:\Users\31126\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-json\2.7.12\spring-boot-starter-json-2.7.12.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.13.5\jackson-datatype-jdk8-2.13.5.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.13.5\jackson-datatype-jsr310-2.13.5.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.13.5\jackson-module-parameter-names-2.13.5.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-tomcat\2.7.12\spring-boot-starter-tomcat-2.7.12.jar;C:\Users\31126\.m2\repository\org\apache\tomcat\embed\tomcat-embed-el\9.0.75\tomcat-embed-el-9.0.75.jar;C:\Users\31126\.m2\repository\org\apache\tomcat\embed\tomcat-embed-websocket\9.0.75\tomcat-embed-websocket-9.0.75.jar;C:\Users\31126\.m2\repository\org\springframework\spring-web\5.3.27\spring-web-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-beans\5.3.27\spring-beans-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-webmvc\5.3.27\spring-webmvc-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-aop\5.3.27\spring-aop-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-expression\5.3.27\spring-expression-5.3.27.jar;C:\Users\31126\.m2\repository\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar;C:\Users\31126\.m2\repository\net\bytebuddy\byte-buddy\1.12.23\byte-buddy-1.12.23.jar;C:\Users\31126\.m2\repository\org\springframework\spring-core\5.3.27\spring-core-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-jcl\5.3.27\spring-jcl-5.3.27.jar;C:\Users\31126\.m2\repository\org\apache\tomcat\embed\tomcat-embed-core\9.0.75\tomcat-embed-core-9.0.75.jar;C:\Users\31126\.m2\repository\org\apache\tomcat\tomcat-annotations-api\9.0.75\tomcat-annotations-api-9.0.75.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-configuration-processor\2.7.12\spring-boot-configuration-processor-2.7.12.jar;C:\Users\31126\.m2\repository\org\mybatis\spring\boot\mybatis-spring-boot-starter\2.1.4\mybatis-spring-boot-starter-2.1.4.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-jdbc\2.7.12\spring-boot-starter-jdbc-2.7.12.jar;C:\Users\31126\.m2\repository\com\zaxxer\HikariCP\4.0.3\HikariCP-4.0.3.jar;C:\Users\31126\.m2\repository\org\springframework\spring-jdbc\5.3.27\spring-jdbc-5.3.27.jar;C:\Users\31126\.m2\repository\org\mybatis\spring\boot\mybatis-spring-boot-autoconfigure\2.1.4\mybatis-spring-boot-autoconfigure-2.1.4.jar;C:\Users\31126\.m2\repository\org\mybatis\mybatis\3.5.6\mybatis-3.5.6.jar;C:\Users\31126\.m2\repository\org\mybatis\mybatis-spring\2.0.6\mybatis-spring-2.0.6.jar;C:\Users\31126\.m2\repository\mysql\mysql-connector-java\8.0.22\mysql-connector-java-8.0.22.jar;C:\Users\31126\.m2\repository\com\google\protobuf\protobuf-java\3.11.4\protobuf-java-3.11.4.jar;C:\Users\31126\.m2\repository\com\alibaba\fastjson\2.0.28\fastjson-2.0.28.jar;C:\Users\31126\.m2\repository\com\alibaba\fastjson2\fastjson2-extension\2.0.28\fastjson2-extension-2.0.28.jar;C:\Users\31126\.m2\repository\com\alibaba\fastjson2\fastjson2\2.0.28\fastjson2-2.0.28.jar;C:\Users\31126\.m2\repository\org\apache\commons\commons-lang3\3.9\commons-lang3-3.9.jar;C:\Users\31126\.m2\repository\org\projectlombok\lombok\1.18.26\lombok-1.18.26.jar;C:\Users\31126\.m2\repository\com\google\guava\guava\32.1.3-jre\guava-32.1.3-jre.jar;C:\Users\31126\.m2\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\31126\.m2\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\Users\31126\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\31126\.m2\repository\org\checkerframework\checker-qual\3.37.0\checker-qual-3.37.0.jar;C:\Users\31126\.m2\repository\com\google\errorprone\error_prone_annotations\2.21.1\error_prone_annotations-2.21.1.jar;C:\Users\31126\.m2\repository\com\google\j2objc\j2objc-annotations\2.8\j2objc-annotations-2.8.jar;C:\Users\31126\.m2\repository\io\jsonwebtoken\jjwt\0.9.1\jjwt-0.9.1.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.13.5\jackson-databind-2.13.5.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.13.5\jackson-annotations-2.13.5.jar;C:\Users\31126\.m2\repository\com\auth0\java-jwt\4.4.0\java-jwt-4.4.0.jar;C:\Users\31126\.m2\repository\commons-codec\commons-codec\1.15\commons-codec-1.15.jar;C:\Users\31126\.m2\repository\com\squareup\retrofit2\converter-gson\2.9.0\converter-gson-2.9.0.jar;C:\Users\31126\.m2\repository\com\squareup\retrofit2\retrofit\2.9.0\retrofit-2.9.0.jar;C:\Users\31126\.m2\repository\com\squareup\okhttp3\okhttp\4.9.3\okhttp-4.9.3.jar;C:\Users\31126\.m2\repository\com\squareup\okio\okio\2.8.0\okio-2.8.0.jar;C:\Users\31126\.m2\repository\org\jetbrains\kotlin\kotlin-stdlib-common\1.6.21\kotlin-stdlib-common-1.6.21.jar;C:\Users\31126\.m2\repository\org\jetbrains\kotlin\kotlin-stdlib\1.6.21\kotlin-stdlib-1.6.21.jar;C:\Users\31126\.m2\repository\org\jetbrains\annotations\13.0\annotations-13.0.jar;C:\Users\31126\.m2\repository\com\google\code\gson\gson\2.9.1\gson-2.9.1.jar;C:\Users\31126\.m2\repository\org\redisson\redisson-spring-boot-starter\3.26.0\redisson-spring-boot-starter-3.26.0.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-actuator\2.7.12\spring-boot-starter-actuator-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-actuator-autoconfigure\2.7.12\spring-boot-actuator-autoconfigure-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-actuator\2.7.12\spring-boot-actuator-2.7.12.jar;C:\Users\31126\.m2\repository\io\micrometer\micrometer-core\1.9.11\micrometer-core-1.9.11.jar;C:\Users\31126\.m2\repository\org\hdrhistogram\HdrHistogram\2.1.12\HdrHistogram-2.1.12.jar;C:\Users\31126\.m2\repository\org\latencyutils\LatencyUtils\2.0.3\LatencyUtils-2.0.3.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-data-redis\2.7.12\spring-boot-starter-data-redis-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\data\spring-data-redis\2.7.12\spring-data-redis-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\data\spring-data-keyvalue\2.7.12\spring-data-keyvalue-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\data\spring-data-commons\2.7.12\spring-data-commons-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\spring-oxm\5.3.27\spring-oxm-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\spring-context-support\5.3.27\spring-context-support-5.3.27.jar;C:\Users\31126\.m2\repository\org\redisson\redisson\3.26.0\redisson-3.26.0.jar;C:\Users\31126\.m2\repository\io\netty\netty-common\4.1.92.Final\netty-common-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec\4.1.92.Final\netty-codec-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-buffer\4.1.92.Final\netty-buffer-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport\4.1.92.Final\netty-transport-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver\4.1.92.Final\netty-resolver-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver-dns\4.1.92.Final\netty-resolver-dns-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-handler\4.1.92.Final\netty-handler-4.1.92.Final.jar;C:\Users\31126\.m2\repository\javax\cache\cache-api\1.1.1\cache-api-1.1.1.jar;C:\Users\31126\.m2\repository\io\projectreactor\reactor-core\3.4.29\reactor-core-3.4.29.jar;C:\Users\31126\.m2\repository\org\reactivestreams\reactive-streams\1.0.4\reactive-streams-1.0.4.jar;C:\Users\31126\.m2\repository\io\reactivex\rxjava3\rxjava\3.1.6\rxjava-3.1.6.jar;C:\Users\31126\.m2\repository\org\jboss\marshalling\jboss-marshalling\2.0.11.Final\jboss-marshalling-2.0.11.Final.jar;C:\Users\31126\.m2\repository\org\jboss\marshalling\jboss-marshalling-river\2.0.11.Final\jboss-marshalling-river-2.0.11.Final.jar;C:\Users\31126\.m2\repository\com\esotericsoftware\kryo\5.6.0\kryo-5.6.0.jar;C:\Users\31126\.m2\repository\com\esotericsoftware\reflectasm\1.11.9\reflectasm-1.11.9.jar;C:\Users\31126\.m2\repository\com\esotericsoftware\minlog\1.3.1\minlog-1.3.1.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\dataformat\jackson-dataformat-yaml\2.13.5\jackson-dataformat-yaml-2.13.5.jar;C:\Users\31126\.m2\repository\org\jodd\jodd-bean\5.1.6\jodd-bean-5.1.6.jar;C:\Users\31126\.m2\repository\org\jodd\jodd-core\5.1.6\jodd-core-5.1.6.jar;C:\Users\31126\.m2\repository\org\redisson\redisson-spring-data-32\3.26.0\redisson-spring-data-32-3.26.0.jar;C:\Users\31126\.m2\repository\org\jeasy\easy-random-core\4.3.0\easy-random-core-4.3.0.jar;C:\Users\31126\.m2\repository\org\objenesis\objenesis\3.1\objenesis-3.1.jar;C:\Users\31126\.m2\repository\io\github\classgraph\classgraph\4.8.90\classgraph-4.8.90.jar;C:\Users\31126\.m2\repository\cn\bugstack\middleware\db-router-spring-boot-starter\1.0.2\db-router-spring-boot-starter-1.0.2.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.7.12\spring-boot-autoconfigure-2.7.12.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-aop\2.7.12\spring-boot-starter-aop-2.7.12.jar;C:\Users\31126\.m2\repository\org\aspectj\aspectjweaver\1.9.7\aspectjweaver-1.9.7.jar;C:\Users\31126\.m2\repository\commons-beanutils\commons-beanutils\1.9.4\commons-beanutils-1.9.4.jar;C:\Users\31126\.m2\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar;C:\Users\31126\.m2\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar;C:\Users\31126\.m2\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-amqp\3.2.0\spring-boot-starter-amqp-3.2.0.jar;C:\Users\31126\.m2\repository\org\springframework\spring-messaging\5.3.27\spring-messaging-5.3.27.jar;C:\Users\31126\.m2\repository\org\springframework\amqp\spring-rabbit\2.4.12\spring-rabbit-2.4.12.jar;C:\Users\31126\.m2\repository\org\springframework\amqp\spring-amqp\2.4.12\spring-amqp-2.4.12.jar;C:\Users\31126\.m2\repository\org\springframework\retry\spring-retry\1.3.4\spring-retry-1.3.4.jar;C:\Users\31126\.m2\repository\com\rabbitmq\amqp-client\5.14.2\amqp-client-5.14.2.jar;C:\Users\31126\.m2\repository\org\apache\dubbo\dubbo\3.0.9\dubbo-3.0.9.jar;C:\Users\31126\.m2\repository\org\springframework\spring-context\5.3.27\spring-context-5.3.27.jar;C:\Users\31126\.m2\repository\com\alibaba\spring\spring-context-support\1.0.8\spring-context-support-1.0.8.jar;C:\Users\31126\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\31126\.m2\repository\io\netty\netty-all\4.1.92.Final\netty-all-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-dns\4.1.92.Final\netty-codec-dns-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-haproxy\4.1.92.Final\netty-codec-haproxy-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-http\4.1.92.Final\netty-codec-http-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-http2\4.1.92.Final\netty-codec-http2-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-memcache\4.1.92.Final\netty-codec-memcache-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-mqtt\4.1.92.Final\netty-codec-mqtt-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-redis\4.1.92.Final\netty-codec-redis-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-smtp\4.1.92.Final\netty-codec-smtp-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-socks\4.1.92.Final\netty-codec-socks-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-stomp\4.1.92.Final\netty-codec-stomp-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-codec-xml\4.1.92.Final\netty-codec-xml-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-unix-common\4.1.92.Final\netty-transport-native-unix-common-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-handler-proxy\4.1.92.Final\netty-handler-proxy-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-handler-ssl-ocsp\4.1.92.Final\netty-handler-ssl-ocsp-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-rxtx\4.1.92.Final\netty-transport-rxtx-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-sctp\4.1.92.Final\netty-transport-sctp-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-udt\4.1.92.Final\netty-transport-udt-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-classes-epoll\4.1.92.Final\netty-transport-classes-epoll-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-classes-kqueue\4.1.92.Final\netty-transport-classes-kqueue-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver-dns-classes-macos\4.1.92.Final\netty-resolver-dns-classes-macos-4.1.92.Final.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-epoll\4.1.92.Final\netty-transport-native-epoll-4.1.92.Final-linux-x86_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-epoll\4.1.92.Final\netty-transport-native-epoll-4.1.92.Final-linux-aarch_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-kqueue\4.1.92.Final\netty-transport-native-kqueue-4.1.92.Final-osx-x86_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-kqueue\4.1.92.Final\netty-transport-native-kqueue-4.1.92.Final-osx-aarch_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver-dns-native-macos\4.1.92.Final\netty-resolver-dns-native-macos-4.1.92.Final-osx-x86_64.jar;C:\Users\31126\.m2\repository\io\netty\netty-resolver-dns-native-macos\4.1.92.Final\netty-resolver-dns-native-macos-4.1.92.Final-osx-aarch_64.jar;C:\Users\31126\.m2\repository\org\yaml\snakeyaml\1.30\snakeyaml-1.30.jar;C:\Users\31126\.m2\repository\org\apache\dubbo\dubbo-spring-boot-starter\3.0.9\dubbo-spring-boot-starter-3.0.9.jar;C:\Users\31126\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure\3.0.9\dubbo-spring-boot-autoconfigure-3.0.9.jar;C:\Users\31126\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure-compatible\3.0.9\dubbo-spring-boot-autoconfigure-compatible-3.0.9.jar;C:\Users\31126\.m2\repository\com\alibaba\nacos\nacos-client\2.1.0\nacos-client-2.1.0.jar;C:\Users\31126\.m2\repository\com\alibaba\nacos\nacos-auth-plugin\2.1.0\nacos-auth-plugin-2.1.0.jar;C:\Users\31126\.m2\repository\com\alibaba\nacos\nacos-encryption-plugin\2.1.0\nacos-encryption-plugin-2.1.0.jar;C:\Users\31126\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.13.5\jackson-core-2.13.5.jar;C:\Users\31126\.m2\repository\org\apache\httpcomponents\httpasyncclient\4.1.5\httpasyncclient-4.1.5.jar;C:\Users\31126\.m2\repository\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar;C:\Users\31126\.m2\repository\org\apache\httpcomponents\httpcore-nio\4.4.16\httpcore-nio-4.4.16.jar;C:\Users\31126\.m2\repository\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar;C:\Users\31126\.m2\repository\io\prometheus\simpleclient\0.15.0\simpleclient-0.15.0.jar;C:\Users\31126\.m2\repository\io\prometheus\simpleclient_tracer_otel\0.15.0\simpleclient_tracer_otel-0.15.0.jar;C:\Users\31126\.m2\repository\io\prometheus\simpleclient_tracer_common\0.15.0\simpleclient_tracer_common-0.15.0.jar;C:\Users\31126\.m2\repository\io\prometheus\simpleclient_tracer_otel_agent\0.15.0\simpleclient_tracer_otel_agent-0.15.0.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-starter-zookeeper-discovery\3.1.4\spring-cloud-starter-zookeeper-discovery-3.1.4.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-starter-zookeeper\3.1.4\spring-cloud-starter-zookeeper-3.1.4.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-starter\3.1.7\spring-cloud-starter-3.1.7.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-context\3.1.7\spring-cloud-context-3.1.7.jar;C:\Users\31126\.m2\repository\org\springframework\security\spring-security-crypto\5.7.8\spring-security-crypto-5.7.8.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-commons\3.1.7\spring-cloud-commons-3.1.7.jar;C:\Users\31126\.m2\repository\org\springframework\security\spring-security-rsa\1.0.11.RELEASE\spring-security-rsa-1.0.11.RELEASE.jar;C:\Users\31126\.m2\repository\org\bouncycastle\bcpkix-jdk15on\1.69\bcpkix-jdk15on-1.69.jar;C:\Users\31126\.m2\repository\org\bouncycastle\bcprov-jdk15on\1.69\bcprov-jdk15on-1.69.jar;C:\Users\31126\.m2\repository\org\bouncycastle\bcutil-jdk15on\1.69\bcutil-jdk15on-1.69.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-zookeeper-core\3.1.4\spring-cloud-zookeeper-core-3.1.4.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-validation\2.7.12\spring-boot-starter-validation-2.7.12.jar;C:\Users\31126\.m2\repository\org\hibernate\validator\hibernate-validator\6.2.5.Final\hibernate-validator-6.2.5.Final.jar;C:\Users\31126\.m2\repository\org\jboss\logging\jboss-logging\3.4.3.Final\jboss-logging-3.4.3.Final.jar;C:\Users\31126\.m2\repository\com\fasterxml\classmate\1.5.1\classmate-1.5.1.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-zookeeper-discovery\3.1.4\spring-cloud-zookeeper-discovery-3.1.4.jar;C:\Users\31126\.m2\repository\org\apache\curator\curator-x-discovery\5.1.0\curator-x-discovery-5.1.0.jar;C:\Users\31126\.m2\repository\org\apache\curator\curator-recipes\5.1.0\curator-recipes-5.1.0.jar;C:\Users\31126\.m2\repository\org\apache\curator\curator-framework\5.1.0\curator-framework-5.1.0.jar;C:\Users\31126\.m2\repository\org\apache\curator\curator-client\5.1.0\curator-client-5.1.0.jar;C:\Users\31126\.m2\repository\org\apache\zookeeper\zookeeper\3.6.0\zookeeper-3.6.0.jar;C:\Users\31126\.m2\repository\org\apache\zookeeper\zookeeper-jute\3.6.0\zookeeper-jute-3.6.0.jar;C:\Users\31126\.m2\repository\org\apache\yetus\audience-annotations\0.5.0\audience-annotations-0.5.0.jar;C:\Users\31126\.m2\repository\io\netty\netty-transport-native-epoll\4.1.92.Final\netty-transport-native-epoll-4.1.92.Final.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-starter-loadbalancer\3.1.7\spring-cloud-starter-loadbalancer-3.1.7.jar;C:\Users\31126\.m2\repository\org\springframework\cloud\spring-cloud-loadbalancer\3.1.7\spring-cloud-loadbalancer-3.1.7.jar;C:\Users\31126\.m2\repository\io\projectreactor\addons\reactor-extra\3.4.10\reactor-extra-3.4.10.jar;C:\Users\31126\.m2\repository\org\springframework\boot\spring-boot-starter-cache\2.7.12\spring-boot-starter-cache-2.7.12.jar;C:\Users\31126\.m2\repository\com\stoyanr\evictor\1.0.0\evictor-1.0.0.jar;C:\Users\31126\.m2\repository\plus\gaga\business-behavior-monitor-sdk\1.1\business-behavior-monitor-sdk-1.1.jar;C:\Users\31126\.m2\repository\ch\qos\logback\logback-classic\1.2.12\logback-classic-1.2.12.jar;C:\Users\31126\.m2\repository\ch\qos\logback\logback-core\1.2.12\logback-core-1.2.12.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-trigger\target\classes;C:\Users\31126\.m2\repository\org\springframework\spring-tx\5.3.27\spring-tx-5.3.27.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-types\target\classes;C:\Users\31126\.m2\repository\com\thoughtworks\xstream\xstream\1.4.10\xstream-1.4.10.jar;C:\Users\31126\.m2\repository\xmlpull\xmlpull\1.1.3.1\xmlpull-1.1.3.1.jar;C:\Users\31126\.m2\repository\xpp3\xpp3_min\1.1.4c\xpp3_min-1.1.4c.jar;C:\Users\31126\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar;C:\Users\31126\.m2\repository\xml-apis\xml-apis\1.0.b2\xml-apis-1.0.b2.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-domain\target\classes;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-api\target\classes;C:\Users\31126\.m2\repository\jakarta\validation\jakarta.validation-api\2.0.2\jakarta.validation-api-2.0.2.jar;C:\Users\31126\Desktop\bigmarket-lite\bigmarket-infrastructure\target\classes;E:\IDEA UL\IntelliJ IDEA 2023.3.4\lib\idea_rt.jar +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:java.library.path=D:\tools\javajdk\jak1.8\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\tools\javajdk\jdk21\bin;C:\Program Files\Common Files\Oracle\Java\javapath;D:\tools\Nodejs\node_global\node_modules;D:\tools\apache-maven-3.9.6\bin;E:\VMware\bin\;C:\Program Files\Microsoft MPI\Bin\;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files\Google\Chrome\Application;D:\tools\dirver;D:\微信小程序\微信web开发者工具\dll;%CATALINA_H%;%CATALINA_HOME%\bin;%CATALINA_HOME%\lib\servlet-api.jar;C:\Users\31126\.conda\envs\fenci\Lib\site-packages\pyqt5_tools;D:\pycharm\python\Lib\site-packages\pyqt5_tools;D:\Anaconda3-2022.10\envs\Py\Library\bin;D:\Anaconda3-2022.10\envs\Py\;D:\Anaconda3-2022.10\envs\Py\Scripts\;D:\pycharm\python\Scripts;D:\pycharm\python;D:\Anaconda3-2022.10;D:\Anaconda3-2022.10\Scripts\;D:\Anaconda3-2022.10\Library\bin\;E:\Wampserver\bin\php\php7.4.9;E:\Wampserver\bin\mysql\mysql5.7.31\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\tools\sqlmap;D:\pycharm\python\sqlmap-master;D:\Qt\6.4.0\mingw_64\bin;D:\pycharm\python\Lib\site-packages\PyQt5\Qt5\bin;D:\tools\Nodejs\node_global;D:\tools\Nodejs\node_cache;D:\tools\Git\cmd;D:\微信小程序\微信web开发者工具\dll;D:\tools\Xshell\;D:\tools\Nodejs;C:\Program Files\Docker\Docker\resources\bin;D:\tools\Apache24\bin;D:\Go\bin;D:\Go\bin;D:\Anaconda3-2022.10\conda\bin;E:\Wampserver\bin\mys;C:\Users\31126\go\bin;D:\JetBrains\GoLand 2024.1.6\bin;. +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:java.io.tmpdir=C:\Users\31126\AppData\Local\Temp\ +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:java.compiler= +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:os.name=Windows 11 +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:os.arch=amd64 +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:os.version=10.0 +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:user.name=zhaoyongfeng +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:user.home=C:\Users\31126 +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:user.dir=C:\Users\31126\Desktop\bigmarket-lite +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:os.memory.free=411MB +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:os.memory.max=3609MB +25-01-17.19:25:08.640 [main ] INFO ZooKeeper - Client environment:os.memory.total=457MB +25-01-17.19:25:08.643 [main ] INFO ZooKeeper - Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=18000 watcher=org.apache.curator.ConnectionState@22d8f4ed +25-01-17.19:25:08.646 [main ] INFO X509Util - Setting -D jdk.tls.rejectClientInitiatedRenegotiation=true to disable client-initiated TLS renegotiation +25-01-17.19:25:08.655 [main ] INFO ClientCnxnSocket - jute.maxbuffer value is 1048575 Bytes +25-01-17.19:25:08.659 [main ] INFO ClientCnxn - zookeeper.request.timeout value is 0. feature enabled=false +25-01-17.19:25:08.664 [main-SendThread(127.0.0.1:2181)] INFO ClientCnxn - Opening socket connection to server 127.0.0.1/127.0.0.1:2181. +25-01-17.19:25:08.664 [main-SendThread(127.0.0.1:2181)] INFO ClientCnxn - SASL config status: Will not attempt to authenticate using SASL (unknown error) +25-01-17.19:25:08.666 [main-SendThread(127.0.0.1:2181)] INFO ClientCnxn - Socket connection established, initiating session, client: /127.0.0.1:49757, server: 127.0.0.1/127.0.0.1:2181 +25-01-17.19:25:08.667 [main ] INFO CuratorFrameworkImpl - Default schema +25-01-17.19:25:08.673 [main-SendThread(127.0.0.1:2181)] INFO ClientCnxn - Session establishment complete on server 127.0.0.1/127.0.0.1:2181, session id = 0x10000002cfa0001, negotiated timeout = 18000 +25-01-17.19:25:08.676 [main ] INFO PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'zookeeperClient' of type [org.apache.curator.framework.imps.CuratorFrameworkImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +25-01-17.19:25:08.680 [main-EventThread] INFO ConnectionStateManager - State change: CONNECTED +25-01-17.19:25:08.690 [main-EventThread] INFO EnsembleTracker - New config event received: {} +25-01-17.19:25:08.690 [main-EventThread] INFO EnsembleTracker - New config event received: {} +25-01-17.19:25:08.699 [main ] INFO Compatibility - Using org.apache.zookeeper.server.quorum.MultipleAddresses +25-01-17.19:25:09.186 [main ] INFO TomcatWebServer - Tomcat initialized with port(s): 8091 (http) +25-01-17.19:25:09.201 [main ] INFO Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8091"] +25-01-17.19:25:09.201 [main ] INFO StandardService - Starting service [Tomcat] +25-01-17.19:25:09.201 [main ] INFO StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.75] +25-01-17.19:25:09.588 [main ] INFO [/] - Initializing Spring embedded WebApplicationContext +25-01-17.19:25:09.589 [main ] INFO ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 6483 ms +25-01-17.19:25:10.449 [main ] INFO DubboConfigBeanInitializer - loading dubbo config beans ... +25-01-17.19:25:10.453 [main ] INFO DubboConfigBeanInitializer - dubbo config beans are loaded. +25-01-17.19:25:10.510 [main ] INFO DefaultApplicationDeployer - [DUBBO] No value is configured in the registry, the DynamicConfigurationFactory extension[name : nacos] supports as the config center, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:10.511 [main ] INFO DefaultApplicationDeployer - [DUBBO] The registry[] will be used as the config center, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:10.517 [main ] INFO DefaultApplicationDeployer - [DUBBO] use registry as config-center: , dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:10.586 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +25-01-17.19:25:10.586 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +25-01-17.19:25:15.459 [main ] WARN ConfigurationUtils - [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.459 [main ] WARN ConfigurationUtils - [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.495 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] has been initialized!, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.498 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] has been initialized!, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.504 [main ] INFO DefaultApplicationDeployer - [DUBBO] No value is configured in the registry, the MetadataReportFactory extension[name : nacos] supports as the metadata center, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.504 [main ] INFO DefaultApplicationDeployer - [DUBBO] The registry[] will be used as the metadata center, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.508 [main ] INFO DefaultApplicationDeployer - [DUBBO] use registry as metadata-center: , dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.607 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +25-01-17.19:25:15.607 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +25-01-17.19:25:15.608 [main ] INFO DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](big-market) has been initialized!, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:15.836 [main ] INFO Version - Redisson 3.26.0 +25-01-17.19:25:17.089 [redisson-netty-1-4] INFO ConnectionsHolder - 1 connections initialized for 127.0.0.1/127.0.0.1:16379 +25-01-17.19:25:17.101 [redisson-netty-1-13] INFO ConnectionsHolder - 5 connections initialized for 127.0.0.1/127.0.0.1:16379 +25-01-17.19:25:17.876 [main ] INFO DCCValueBeanFactory - DCC 节点监听 设置配置 /big-market-dcc/config/degradeSwitch degradeSwitch 192.168.157.1 +25-01-17.19:25:24.354 [main ] WARN LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +25-01-17.19:25:24.374 [main ] INFO EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +25-01-17.19:25:24.648 [main ] INFO Http11NioProtocol - Starting ProtocolHandler ["http-nio-8091"] +25-01-17.19:25:24.662 [main ] INFO TomcatWebServer - Tomcat started on port(s): 8091 (http) with context path '' +25-01-17.19:25:26.331 [main ] INFO CachingConnectionFactory - Attempting to connect to: [127.0.0.1:5672] +25-01-17.19:25:26.359 [main ] INFO CachingConnectionFactory - Created new connection: rabbitConnectionFactory#7535f28:0/SimpleConnection@14b4d90b [delegate=amqp://admin@127.0.0.1:5672/, localPort= 49871] +25-01-17.19:25:26.433 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] is starting., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:26.433 [main ] INFO DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](big-market) is starting., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:26.546 [main ] WARN ServiceConfig - [DUBBO] Use random available port(20880) for protocol dubbo, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:26.632 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service cn.bugstack.trigger.api.IRaffleActivityService to local registry url : injvm://127.0.0.1/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:26.632 [main ] INFO ServiceConfig - [DUBBO] Register dubbo service cn.bugstack.trigger.api.IRaffleActivityService url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0 to registry 127.0.0.1:8848, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:26.635 [main ] INFO QosProtocolWrapper - [DUBBO] qos won't be started because it is disabled. Please check dubbo.application.qos.enable is configured either in system property, dubbo.properties or XML/spring-boot configuration., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:26.749 [main ] INFO AbstractServer - [DUBBO] Start NettyServer bind /0.0.0.0:20880, export /192.168.5.1:20880, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:26.814 [main ] INFO MetaCacheManager - [DUBBO] Successfully loaded mapping cache from file .metadata.nacos127.0.0.1:8848, entries 0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:26.842 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +25-01-17.19:25:26.842 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +25-01-17.19:25:26.984 [main ] INFO MappingCacheManager - [DUBBO] Successfully loaded mapping cache from file .mapping, entries 0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.001 [main ] INFO MigrationRuleListener - [DUBBO] Listening for migration rules on dataId big-market.migration, group DUBBO_SERVICEDISCOVERY_MIGRATION, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.010 [main ] INFO ServiceConfig - [DUBBO] Register dubbo service cn.bugstack.trigger.api.IRaffleActivityService url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0 to registry 127.0.0.1:8848, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.010 [main ] INFO QosProtocolWrapper - [DUBBO] qos won't be started because it is disabled. Please check dubbo.application.qos.enable is configured either in system property, dubbo.properties or XML/spring-boot configuration., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.025 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +25-01-17.19:25:27.025 [main ] INFO ClientAuthPluginManager - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +25-01-17.19:25:27.149 [main ] INFO NacosRegistry - [DUBBO] Register: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.158 [main ] INFO NacosRegistry - [DUBBO] Subscribe: provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.179 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.188 [DubboSaveMetadataReport-thread-1] INFO NacosMetadataReport - [DUBBO] store provider metadata. Identifier : org.apache.dubbo.metadata.report.identifier.MetadataIdentifier@4c61496; definition: FullServiceDefinition{parameters=org.apache.dubbo.common.url.component.URLParam$URLParamMap@16144a27} ServiceDefinition [canonicalName=cn.bugstack.trigger.api.IRaffleActivityService, codeSource=file:/C:/Users/31126/Desktop/bigmarket-lite/bigmarket-api/target/classes/, methods=[MethodDefinition [name=armory, parameterTypes=[java.lang.Long], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=draw, parameterTypes=[cn.bugstack.trigger.api.dto.ActivityDrawRequestDTO], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=isCalendarSignRebate, parameterTypes=[java.lang.String], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=queryUserCreditAccount, parameterTypes=[java.lang.String], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=querySkuProductListByActivityId, parameterTypes=[java.lang.Long], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=creditPayExchangeSku, parameterTypes=[cn.bugstack.trigger.api.dto.SkuProductShopCartRequestDTO], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=calendarSignRebate, parameterTypes=[java.lang.String], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=queryUserActivityAccount, parameterTypes=[cn.bugstack.trigger.api.dto.UserActivityAccountRequestDTO], returnType=cn.bugstack.trigger.api.response.Response]]], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.319 [main ] INFO ServiceConfig - [DUBBO] Successfully registered interface application mapping for service cn.bugstack.trigger.api.IRaffleActivityService:1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.334 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service cn.bugstack.trigger.api.IRaffleStrategyService to local registry url : injvm://127.0.0.1/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.335 [main ] INFO ServiceConfig - [DUBBO] Register dubbo service cn.bugstack.trigger.api.IRaffleStrategyService url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0 to registry 127.0.0.1:8848, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.342 [main ] INFO ServiceConfig - [DUBBO] Register dubbo service cn.bugstack.trigger.api.IRaffleStrategyService url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0 to registry 127.0.0.1:8848, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.543 [main ] INFO NacosRegistry - [DUBBO] Register: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.548 [main ] INFO NacosRegistry - [DUBBO] Subscribe: provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.558 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.559 [DubboSaveMetadataReport-thread-1] INFO NacosMetadataReport - [DUBBO] store provider metadata. Identifier : org.apache.dubbo.metadata.report.identifier.MetadataIdentifier@7b8ffbcb; definition: FullServiceDefinition{parameters=org.apache.dubbo.common.url.component.URLParam$URLParamMap@ee62f32c} ServiceDefinition [canonicalName=cn.bugstack.trigger.api.IRaffleStrategyService, codeSource=file:/C:/Users/31126/Desktop/bigmarket-lite/bigmarket-api/target/classes/, methods=[MethodDefinition [name=strategyArmory, parameterTypes=[java.lang.Long], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=randomRaffle, parameterTypes=[cn.bugstack.trigger.api.dto.RaffleStrategyRequestDTO], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=queryRaffleAwardList, parameterTypes=[cn.bugstack.trigger.api.dto.RaffleAwardListRequestDTO], returnType=cn.bugstack.trigger.api.response.Response], MethodDefinition [name=queryRaffleStrategyRuleWeight, parameterTypes=[cn.bugstack.trigger.api.dto.RaffleStrategyRuleWeightRequestDTO], returnType=cn.bugstack.trigger.api.response.Response]]], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.567 [main ] INFO ServiceConfig - [DUBBO] Successfully registered interface application mapping for service cn.bugstack.trigger.api.IRaffleStrategyService:1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.567 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] is starting., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.567 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] has started., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.567 [main ] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] has started., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.568 [main ] INFO ConfigurableMetadataServiceExporter - [DUBBO] Metadata Service Port hasn't been set will use default protocol defined in protocols., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.568 [main ] INFO ConfigurableMetadataServiceExporter - [DUBBO] Using dubbo protocol to export metadata service on port 20880, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.606 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service org.apache.dubbo.metadata.MetadataService to local registry url : injvm://127.0.0.1/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.606 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service org.apache.dubbo.metadata.MetadataService to url dubbo://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.624 [main ] INFO MigrationRuleListener - [DUBBO] Listening for migration rules on dataId big-market.migration, group DUBBO_SERVICEDISCOVERY_MIGRATION, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.630 [main ] INFO ServiceConfig - [DUBBO] Export dubbo service org.apache.dubbo.metadata.MetadataService to url dubbo://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.821 [main ] INFO NacosRegistry - [DUBBO] Subscribe: provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.828 [main ] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.828 [main ] INFO ServiceConfig - [DUBBO] Successfully registered interface application mapping for service big-market/org.apache.dubbo.metadata.MetadataService:1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.828 [main ] INFO ConfigurableMetadataServiceExporter - [DUBBO] The MetadataService exports urls : [dubbo://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.829 [main ] INFO ServiceInstanceMetadataUtils - [DUBBO] Start registering instance address to registry., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.844 [main ] INFO MetadataInfo - [DUBBO] metadata revision changed: null -> 5fd13db71134343ede664282178f635f, app: big-market, services: 2, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.854 [main ] INFO DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](big-market) is ready., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:27.859 [main ] INFO Application - Started Application in 27.04 seconds (JVM running for 29.37) +25-01-17.19:25:28.191 [RMI TCP Connection(3)-192.168.157.1] INFO [/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +25-01-17.19:25:28.191 [RMI TCP Connection(3)-192.168.157.1] INFO DispatcherServlet - Initializing Servlet 'dispatcherServlet' +25-01-17.19:25:28.192 [RMI TCP Connection(3)-192.168.157.1] INFO DispatcherServlet - Completed initialization in 1 ms +25-01-17.19:25:30.049 [scheduling-1 ] INFO HikariDataSource - Retail_HikariCP - Starting... +25-01-17.19:25:30.246 [scheduling-1 ] INFO HikariDataSource - Retail_HikariCP - Start completed. +25-01-17.19:25:30.271 [scheduling-1 ] INFO HikariDataSource - Retail_HikariCP - Starting... +25-01-17.19:25:30.298 [scheduling-1 ] INFO HikariDataSource - Retail_HikariCP - Start completed. +25-01-17.19:25:36.982 [DubboShutdownHook] INFO DubboShutdownHook - [DUBBO] Run shutdown hook now., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.982 [Thread-25 ] WARN NotifyCenter - [NotifyCenter] Start destroying Publisher +25-01-17.19:25:36.982 [DubboShutdownHook] INFO FrameworkModel - [DUBBO] Reset global default application from Dubbo Application[1.1](big-market) to null, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.982 [Thread-25 ] WARN NotifyCenter - [NotifyCenter] Destruction of the end +25-01-17.19:25:36.982 [Thread-20 ] WARN HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +25-01-17.19:25:36.982 [DubboShutdownHook] INFO DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](big-market) is stopping., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.982 [DubboShutdownHook] INFO RegistryManager - [DUBBO] Close all registries [nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=nacos-registry&application=big-market&application.version=1.0&dubbo=2.0.2&interface=org.apache.dubbo.registry.RegistryService&pid=18448&qos.enable=false&release=3.0.9, nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=nacos-registry&application=big-market&application.version=1.0&dubbo=2.0.2&interface=org.apache.dubbo.registry.RegistryService&pid=18448&qos.enable=false&release=3.0.9], dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.982 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy registry:nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=nacos-registry&application=big-market&application.version=1.0&dubbo=2.0.2&interface=org.apache.dubbo.registry.RegistryService&pid=18448&qos.enable=false&release=3.0.9, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.982 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unregister: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.982 [Thread-20 ] WARN HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +25-01-17.19:25:36.983 [SpringApplicationShutdownHook] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] is stopping., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.984 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.986 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.986 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.986 [SpringApplicationShutdownHook] WARN RegistryManager - [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.987 [SpringApplicationShutdownHook] INFO DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] has stopped., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.987 [SpringApplicationShutdownHook] INFO DubboSpringInitializer - [DUBBO] Unbind Dubbo Module[1.1.1] from spring container: org.springframework.beans.factory.support.DefaultListableBeanFactory@f316aeb, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.988 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unregister url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.988 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unregister: dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.993 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unregister url dubbo://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.994 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unsubscribe: provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. +25-01-17.19:25:36.994 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unsubscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.994 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unsubscribe: provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.994 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unsubscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleStrategyService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleStrategyService&methods=randomRaffle,strategyArmory,queryRaffleAwardList,queryRaffleStrategyRuleWeight&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113127322&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.994 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Unsubscribe: provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.994 [DubboShutdownHook] INFO NacosRegistry - [DUBBO] Destroy unsubscribe url provider://192.168.5.1:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&connections=1&corethreads=2&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&generic=false&getAndListenInstanceMetadata.1.callback=true&getAndListenInstanceMetadata.return=true&getAndListenInstanceMetadata.sent=true&group=big-market&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,getAndListenInstanceMetadata,serviceName,version,getSubscribedURLs,getExportedServiceURLs,exportInstanceMetadata,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition,getInstanceMetadataChangedListenerMap&pid=18448&qos.enable=false®ister=false&release=3.0.9&revision=3.0.9&service-name-mapping=true&side=provider&threadpool=cached&threads=100×tamp=1737113127587&version=1.0.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:36.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. +25-01-17.19:25:36.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. +25-01-17.19:25:37.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#3-2] INFO SimpleMessageListenerContainer - Waiting for workers to finish. +25-01-17.19:25:37.008 [DubboShutdownHook] INFO DubboProtocol - [DUBBO] Destroying protocol [DubboProtocol] ..., dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:37.008 [DubboShutdownHook] INFO DubboProtocol - [DUBBO] Closing dubbo server: /192.168.5.1:20880, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:37.010 [DubboShutdownHook] INFO AbstractServer - [DUBBO] Close NettyServer bind /0.0.0.0:20880, export /192.168.5.1:20880, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:37.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. +25-01-17.19:25:37.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. +25-01-17.19:25:37.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#2-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. +25-01-17.19:25:37.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#3-2] INFO SimpleMessageListenerContainer - Successfully waited for workers to finish. +25-01-17.19:25:37.526 [Dubbo-framework-registry-notification-0-thread-1] WARN NacosRegistry - [DUBBO] Ignore empty notify urls for subscribe url provider://192.168.5.1:20880/cn.bugstack.trigger.api.IRaffleActivityService?anyhost=true&application=big-market&application.version=1.0&background=false&bind.ip=192.168.5.1&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=cn.bugstack.trigger.api.IRaffleActivityService&methods=queryUserActivityAccount,querySkuProductListByActivityId,creditPayExchangeSku,queryUserCreditAccount,armory,calendarSignRebate,draw,isCalendarSignRebate&pid=18448&qos.enable=false&release=3.0.9&revision=1.0&service-name-mapping=true&side=provider×tamp=1737113126540&version=1.0, dubbo version: 3.0.9, current host: 192.168.5.1 +25-01-17.19:25:38.649 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:25:38.650 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:25:38.650 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:25:38.650 [SpringApplicationShutdownHook] INFO SimpleMessageListenerContainer - Shutdown ignored - container is already stopped +25-01-17.19:25:38.678 [Curator-Framework-0] INFO CuratorFrameworkImpl - backgroundOperationsLoop exiting +25-01-17.19:25:38.789 [main-EventThread] INFO ClientCnxn - EventThread shut down for session: 0x10000002cfa0001 +25-01-17.19:25:38.789 [SpringApplicationShutdownHook] INFO ZooKeeper - Session: 0x10000002cfa0001 closed diff --git a/pom.xml b/pom.xml index 8fd55be..3d893b2 100644 --- a/pom.xml +++ b/pom.xml @@ -142,6 +142,11 @@ spring-cloud-starter-zookeeper-discovery 3.1.4 + + com.netflix.hystrix + hystrix-javanica + 1.5.18 + cn.bugstack -- GitLab