Java Hystrix断路器自动打开,应用程序给出gatway超时错误,为什么?我使用上下文类实现了代码

Java Hystrix断路器自动打开,应用程序给出gatway超时错误,为什么?我使用上下文类实现了代码,java,spring-boot,microservices,hystrix,circuit-breaker,Java,Spring Boot,Microservices,Hystrix,Circuit Breaker,------这些是我用于hystrix的属性------ 执行.隔离.线程.超时毫秒数=60000 execution.timeout.enabled=false execution.isolation.strategy=thread hystrix.command.default.execution.timeout.enabled=false execution.isolation.thread.timeoutinems=400 hystrix.command.default.fallback

------这些是我用于hystrix的属性------
执行.隔离.线程.超时毫秒数=60000 execution.timeout.enabled=false execution.isolation.strategy=thread hystrix.command.default.execution.timeout.enabled=false execution.isolation.thread.timeoutinems=400 hystrix.command.default.fallback.enabled=true hystrix.command.default.circuitBreaker.enabled=false hystrix.command.default.circuitBreaker.forceClosed=false hystrix.command.default.circuitBreaker.SleepWindowIn毫秒=5000 hystrix.command.default.circuitBreaker.requestVolumeThreshold=20 hystrix.command.default.metrics.rollingStats.TIMEINMISCELS=80000 hystrix.threadpool.default.coreSize=150 #hystrix.threadpool.default.keepAliveTimeMinutes=1 hystrix.threadpool.default.allowMaximumSizeToDivergeFromCoreSize=true hystrix.threadpool.default.maxQueueSize=100000 hystrix.threadpool.default.queueSizeRejectionThreshold=100000

海斯特里克植入术
  hytrix impl which i used into a application its a common class which all request use and enable hytrix by adding filters.Basically problem is when we put load on site the threads becomes high and on 100 users site will goes gatewaytimeout. Plz Help. I Shared the Impl of hystrix and Properties which I Used for Hystrix.
 @Override
public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain) throws IOException, ServletException {
    HystrixRequestContext context = HystrixRequestContext.initializeContext();
    SecurityContextHystrixRequestVariable.getInstance().set(SecurityContextHolder.getContext());
    
    try {
        chain.doFilter(request, response);
    } catch(Throwable bce){
        LOGGER.error("Some exception",bce);
    }
}