簡體   English   中英

如何使用 netflix hystrix 獲取斷路器狀態的狀態?

[英]How to get status for circuit breaker status with netflix hystrix?

這是我的 AppService 類,我需要添加邏輯來獲取斷路器打開或關閉的狀態,但我找不到方法。 另外,我已經使用了 ignoreExceptions 但似乎有麻煩。 剛剛接觸編碼和此功能,無法獲得適當的答案。 我不確定如何使用 isCircuitBreakerOpen()。

@Service
public class AppService {

    private static final Logger LOG = LoggerFactory.getLogger(AppService.class);
    private final RestTemplate restTemplate;

    public AppService(RestTemplate rest) {
        this.restTemplate = rest;
    }
    
    
    
    @HystrixCommand(fallbackMethod = "reliable", commandProperties= {
            @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_ERROR_THRESHOLD_PERCENTAGE, value = "100"),
            @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_SLEEP_WINDOW_IN_MILLISECONDS, value = "10000"),
            @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_REQUEST_VOLUME_THRESHOLD, value = "10")
            })
            public ResponseEntity<String> answerList() throws Exception {
                return callingDownStreamService404();
                }

    @HystrixCommand(fallbackMethod = "reliable", commandProperties= {
            @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_ERROR_THRESHOLD_PERCENTAGE, value = "100"),
            @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_SLEEP_WINDOW_IN_MILLISECONDS, value = "10000"),
            @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_REQUEST_VOLUME_THRESHOLD, value = "10")
        })
    public ResponseEntity<String> answerList503() throws Exception {
                return callingDownStreamService503();
                }
    
    
                private ResponseEntity<String> callingDownStreamService404() throws Exception {
                    URI uri = URI.create("http://localhost:8090/recommended/404");

                    RestTemplate restTemplate = new RestTemplate();
                    HttpHeaders headers = new HttpHeaders();
                    HttpEntity<Object> entity = new HttpEntity<Object>(headers);

                    ResponseEntity<String> out = restTemplate.exchange(uri, HttpMethod.GET, entity, String.class);
                    System.out.println("Application code : " + out.getStatusCode());
                    return out;

                }

                private ResponseEntity<String> callingDownStreamService503() throws Exception {
                    URI uri = URI.create("http://localhost:8090/recommended/503");

                    RestTemplate restTemplate = new RestTemplate();
                    HttpHeaders headers = new HttpHeaders();
                    HttpEntity<Object> entity = new HttpEntity<Object>(headers);

                    ResponseEntity<String> out = restTemplate.exchange(uri, HttpMethod.GET, entity, String.class);
                    System.out.println("Application code : " + out.getStatusCode());

                    if (out.getStatusCode().toString().startsWith("5")) {
                        throw new HystrixBadRequestException("bad request messageg");
                    }

                    return out;

                }

                @HystrixCommand(commandKey = "MyHystrixCommand",fallbackMethod = "myHystrixFallback", threadPoolKey = "ThreadPoolKey",commandProperties= {
                      @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_ERROR_THRESHOLD_PERCENTAGE, value = "100"),
                      @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_SLEEP_WINDOW_IN_MILLISECONDS, value = "10000"),
                      @HystrixProperty(name = HystrixPropertiesManager.CIRCUIT_BREAKER_REQUEST_VOLUME_THRESHOLD, value = "10")},
                    ignoreExceptions = {HttpServerErrorException.class, HystrixBadRequestException.class, HttpClientErrorException.class})
                
                public ResponseEntity<String> getServiceCallResponse(String serviceUrl, HttpEntity<?> entity) {
                     serviceUrl = "http://localhost:8090/recommended/500";
                    
                    ResponseEntity<String> resp = null;
                    
                    try {
                        System.out.println("Calling -----" + serviceUrl);
                        resp = restTemplate.exchange(serviceUrl, HttpMethod.POST, entity, String.class);
                        
                        }
                    catch(RestClientException e) {
                        System.out.println("Calling -----" + serviceUrl + "Exception is this" + e.getRootCause());
                        handleExceptionForHystrix("getServiceCallResponse", e);
                    }
                    return resp;
                    }

                    private void handleExceptionForHystrix(String function, Exception e) {
                            if (e instanceof HttpStatusCodeException) {
                                HttpStatus httpStatusCode = ((HttpStatusCodeException)e).getStatusCode();
                                if(httpStatusCode.equals(HttpStatus.BAD_REQUEST) || httpStatusCode.equals(HttpStatus.INTERNAL_SERVER_ERROR)) {
                                    throw new HystrixBadRequestException("Hystrix Bad Request Exception Occurred" + httpStatusCode, e);
                                }
                                throw new RuntimeException(function, e);
                            }
                            throw new RuntimeException(function, e);
                        }


                    public ResponseEntity<String> myHystrixFallback(String serviceUrl, HttpEntity<?> entity, Throwable hystrixCommandExp) {
                        
                                return new ResponseEntity<String>(HttpStatus.INTERNAL_SERVER_ERROR);
                            }
                
                @Recover()
                public ResponseEntity<String> reliable() {
                    return new ResponseEntity<String>(
                            "The downstream application is unavailable and the circuit is open", HttpStatus.OK);
                }
                
                
            }

這是我放置端點的主類。 我也在使用 AppStore,它是下游應用程序,並且在那里配置了相同的端點。

@EnableHystrixDashboard
@EnableCircuitBreaker
@RestController
@SpringBootApplication
public class DavinciCircuitbreakerApplication {
    
      @Autowired
      private AppService appService;
      
      @Bean
      public RestTemplate rest(RestTemplateBuilder builder) {
      return builder.build();
      }

          
      @RequestMapping("/to-answer/404")
      public ResponseEntity<String> toAnswer() {
          ResponseEntity<String> response = null;
        try{
            response = appService.answerList();
        }catch(Exception e){
            System.out.println("excpetion"+ e.getMessage());
            return new ResponseEntity<String>("failure", HttpStatus.valueOf(500));
        }


      return response;
      }

    @RequestMapping("/to-answer/503")
    public ResponseEntity<String> toAnswer503() {
        ResponseEntity<String> response = null;
        try{
            response = appService.answerList503();
        }catch(Exception e){
            System.out.println("excpetion"+ e.getMessage());
            return new ResponseEntity<String>("failure", HttpStatus.valueOf(503));
        }


        return response;
    }
    
    @RequestMapping("/to-answer/500")
    public ResponseEntity<String> toAnswer500() {
        ResponseEntity<String> response = null;
        try{
            response = appService.getServiceCallResponse(null, response);
        }catch(Exception e){
            System.out.println("excpetion"+ e.getMessage());
            return new ResponseEntity<String>("Internal Server Error", HttpStatus.valueOf(500));
        }


    return response;
}

public static void main(String[] args) {
      SpringApplication.run(DavinciCircuitbreakerApplication.class, args);
    }

}

您可以使用HystrixCircuitBreaker.Factory.getInstance(...)來獲取 HystrixCommand 的實例。 有關詳細信息,請參閱鏈接

此外,您可以在此HystrixCommand實例上調用isCircuitBreakerOpen()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM