在Hystrix中,超时是如何工作的?



我正在使用Reactive Observables开发一个支持hystrix的Spring引导应用程序,并试图弄清楚超时是如何工作的。我假设如果在执行期间发生超时,Hystrix将立即返回响应(回退或异常)。现在这似乎不是我下面的代码的情况。相反,对myService.getString()的调用阻塞了5秒。当它最终返回时,执行可抛出的lambda。

是我的假设不正确还是下面有其他错误?

@SpringBootApplication
@EnableCircuitBreaker
public class App {
  public static void main(String[] args) {
    ApplicationContext ctx = SpringApplication.run(App.class, args);
  }
}
@RestController
public class MyController {
  @Autowired
  private MyService myService;
  @RequestMapping("/")
  public DeferredResult index() {
    DeferredResult<String> result = new DeferredResult<>();
    Observable<String> res = myService.getString();
    res.subscribe(s -> {
                result.setResult("Got a " + s);
            },
            throwable -> {
                result.setErrorResult("Got a " + throwable.getMessage());
            });
    return result;
  }
}

@Service
public class MyService {
  @HystrixCommand() // Default timeout is 1 sec
  public Observable<String> getString() {
    return Observable.create(subscriber -> {
        if (!subscriber.isUnsubscribed()) {
            try {
                Thread.sleep(5000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            subscriber.onNext("regular response");
            subscriber.onCompleted();
        }
    });
  }
}

pom.xml:http://maven.apache.org/xsd/maven-4.0.0.xsd ">4.0.0

    <groupId>dag</groupId>
    <artifactId>dag</artifactId>
    <version>1.0-SNAPSHOT</version>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.1.RELEASE</version>
    </parent>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Camden.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>com.netflix.hystrix</groupId>
            <artifactId>hystrix-javanica</artifactId>
            <version>1.5.5</version>
        </dependency>
    </dependencies>
    <properties>
        <java.version>1.8</java.version>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

谢谢你的帮助!

请说明您的hystrix命令的隔离性以及您使用的hystrix版本?

"超时现在也适用于信号量隔离的命令thread-isolated命令。在1.4之前。X,信号量隔离命令不能超时。它们现在在另一个上注册了超时(HystrixTimer)线程,它触发超时流。如果你使用信号量隔离命令,它们现在将看到超时"

无论如何试着:

  1. 使用自己的线程池切换到线程隔离。
  2. 睡眠周期更短。

execution.isolation.strategy设置为THREAD解决了我的问题。

@HystrixCommand(
  commandProperties = {
    @HystrixProperty(name = "execution.isolation.strategy", value = "THREAD")
  }
)

文档指出HystrixCommand默认使用THREAD,但对于javanica @HystrixCommand有点不同,它根据注释方法的返回类型创建不同的类型。HystrixCommandHystrixObservableCommandHystrixObservableCommandSEMAPHORE作为默认隔离策略。

相关内容

  • 没有找到相关文章

最新更新