如果我只是将 Hystrix 命令定义为类,我可以控制定义组键和命令键,如下所示。

     private static class MyHystrixCommand extends HystrixCommand<MyResponseDto> {
               public MyHystrixCommand() {
        super(HystrixCommandGroupKey.Factory.asKey("MyHystrixGroup"));
     }

所以上面的代码组key是MyHystrixGroup,Command Key是MyHystrixCommand。

如果我想设置这个 hystrix 命令的任何配置,我可以这样做
      ConfigurationManager.getConfigInstance().setProperty(
                                "hystrix.command.MyHystrixCommand.execution.timeout.enabled", false);

默认情况下,
       ConfigurationManager.getConfigInstance().setProperty(
                "hystrix.command.default.execution.timeout.enabled", false);

现在,当我使用 Feign Hystrix 时,我没有定义命令名称/组名称。根据文档 here ,组键与目标名称匹配,命令键与日志键相同。

所以如果我有一个这样的 FeignClient,
     interface TestInterface {
        @RequestLine("POST /")
        String invoke() throws Exception;
     }

我在工厂类中创建了我的 Feign 客户端的实例。
   class TestFactory {

    public TestInterface newInstance() {

        ConfigurationManager.getConfigInstance()
            .setProperty("hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds", 500);

        return HystrixFeign.builder()
            .target(TestInterface.class, "http://localhost:" + server.getPort(), (FallbackFactory) new FallbackApiRetro());
    }

 }

正如你在返回客户端之前看到的,我想设置我的 hystrix 命令的超时配置。

我正在用 MockWebServer 测试它。
  @Test
public void fallbackFactory_example_timeout_fail() throws Exception {

    server.start();
    server.enqueue(new MockResponse().setResponseCode(200)
        .setBody("ABCD")
        .setBodyDelay(1000, TimeUnit.MILLISECONDS));

    TestFactory factory = new TestFactory();
    TestInterface api = factory.newInstance();
    // as the timeout is set to 500 ms, this case should fail since i added 1second delay in mock service response.
    assertThat(api.invoke()).isEqualTo("Fallback called : foo");

}

仅当我在默认 hystrix 参数上设置超时时,这才有效
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds
    ConfigurationManager.getConfigInstance()
        .setProperty("hystrix.command.invoke.execution.isolation.thread.timeoutInMilliseconds", 500);

这没有用。
同样,我尝试了以下值,但没有一个起作用。
  hystrix.command.TestInterface#invoke(String).execution.isolation.thread.timeoutInMilliseconds
hystrix.command.TestInterface#invoke.execution.isolation.thread.timeoutInMilliseconds

最佳答案

我想到了。

  ConfigurationManager.getConfigInstance().setProperty("hystrix.command.TestInterface#invoke().execution.isolation.thread.timeoutInMilliseconds",500);

正在工作中。我犯的错误是我的方法名称没有传入任何参数。所以对于 feign hystrix 客户端,命令名称是
 FeignClientInterfaceName#MethodNameWithSignatures

例如在问题中引用,它是
 TestInterface#invoke()

关于java - Feign Hystrix 命令名称不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40026066/

10-09 05:09