web-dev-qa-db-ja.com

カスタムFeignクライアント接続タイムアウトを設定する方法は?

このGradle依存関係を持つSpring Bootアプリケーションがあります:

compile("org.springframework.cloud:spring-cloud-starter-eureka")
compile("org.springframework.cloud:spring-cloud-starter-feign")
compile("org.springframework.cloud:spring-cloud-starter-ribbon")
compile("org.springframework.cloud:spring-cloud-starter-hystrix")
compile("org.springframework.cloud:spring-cloud-starter-config")

また、私は偽のクライアントを持っています:

@FeignClient(name = "client")
public interface FeignService {

    @RequestMapping(value = "/path", method = GET)
    String response();

}

俺の application.properties

client.ribbon.listOfServers = http://localhost:8081
ribbon.eureka.enabled=false

クエリ時間が1秒を超えると、例外が発生します。

com.netflix.hystrix.exception.HystrixRuntimeException: response timed-out and no fallback available.

だから私の質問は:どうすればカスタムFeignクライアント接続タイムアウトを設定できますか?たとえば2秒まで。

7

問題の answer を使用して問題を解決しました:Hystrixコマンドは「タイムアウトし、フォールバックが利用できません」で失敗します。

追加した hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=4000 わたしの application.propertiesカスタムタイムアウトを設定します。

17