gpt4 book ai didi

java - Feign Hystrix 命令名称不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:04:57 25 4
gpt4 key购买 nike

如果我只有一个定义为类的 Hystrix 命令,我可以控制定义组键和命令键,如下所示。

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

所以上面的代码组键是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 ,组 key 与目标名称匹配,命令 key 与日志记录 key 相同。

所以如果我有一个这样的 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com