SpringCloudHystrix线程池不足怎么办

这篇文章主要介绍了SpringCloudHystrix线程池不足怎么办,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

站在用户的角度思考问题,与客户深入沟通,找到顺河网站设计与顺河网站推广的解决方案,凭借多年的经验,让设计与互联网技术结合,创造个性化、用户体验好的作品,建站类型包括:成都网站建设、网站建设、企业官网、英文网站、手机端网站、网站推广、域名注册网站空间、企业邮箱。业务覆盖顺河地区。

现象:

昨天突然线上很多接口获取失败,通过 kibana发现大量异常,具体异常信息:

...into fallback. Rejected command because thread-pool queueSize is at rejection threshold.

异常代码出处:

@FeignClient(name = "api", fallbackFactory = LoadBalancingFallbackFactory.class)public interface LoadBalancingFeignClient {  @PostMapping(value = "/api/loadBalancing/server")  Result currentServer();}@Slf4j@Componentpublic class LoadBalancingFallbackFactory implements FallbackFactory<LoadBalancingFeignClient> {  @Override  public LoadBalancingFeignClient create(Throwable throwable) {    final String msg = throwable.getMessage();    return () -> {      log.error("loadBalancingFeignClient currentServer into fallback. {}", msg);      return Result.error();    };****  }}

原因:

看到这里已经很明显了,是由于hystrix线程池不够用,直接熔断导致的。项目apollo配置:

hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds = 3500hystrix.threadpool.default.maxQueueSize = 60hystrix.threadpool.default.queueSizeRejectionThreshold = 40

hystrix参数简析:

maxQueueSize:线程池大小,默认为-1,创建的队列是SynchronousQueue,如果设置大于0则根据其大小创建LinkedBlockingQueue。

queueSizeRejectionThreshold:动态控制线程池队列的上限,即使maxQueueSize没有达到,达到queueSizeRejectionThreshold该值后,请求也会被拒绝,默认值5

相关源码:

hystrix-core-1.5.12-sources.jar!/com/netflix/hystrix/strategy/concurrency/HystrixContextScheduler.java

private class HystrixContextSchedulerWorker extends Worker {    private final Worker worker;    private HystrixContextSchedulerWorker(Worker actualWorker) {      this.worker = actualWorker;    }    @Override    public void unsubscribe() {      worker.unsubscribe();    }    @Override    public boolean isUnsubscribed() {      return worker.isUnsubscribed();    }    @Override    public Subscription schedule(Action0 action, long delayTime, TimeUnit unit) {      if (threadPool != null) {        if (!threadPool.isQueueSpaceAvailable()) {          throw new RejectedExecutionException("Rejected command because thread-pool queueSize is at rejection threshold.");        }      }      return worker.schedule(new HystrixContexSchedulerAction(concurrencyStrategy, action), delayTime, unit);    }    @Override    public Subscription schedule(Action0 action) {      if (threadPool != null) {        if (!threadPool.isQueueSpaceAvailable()) {          throw new RejectedExecutionException("Rejected command because thread-pool queueSize is at rejection threshold.");        }      }      return worker.schedule(new HystrixContexSchedulerAction(concurrencyStrategy, action));    }  }

解决办法:

适当调大Hystrix线程队列参数动态水平扩容服务优化下游服务,减少服务响应时间

感谢你能够认真阅读完这篇文章,希望小编分享的“SpringCloudHystrix线程池不足怎么办”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!

当前标题:SpringCloudHystrix线程池不足怎么办
浏览地址:https://www.cdcxhl.com/article38/jchepp.html

成都网站建设公司_创新互联,为您提供品牌网站设计网站排名网站维护微信公众号静态网站标签优化

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

网站建设网站维护公司