HystrixCommand の AspectJ アノテーションに hystrix-javanica を使用しようとしています。コマンドのプロパティを次のように構成できます。
@HystrixCommand(commandKey = "myCommand",
groupKey = "myServiceImpl",
threadPoolKey = "myThreadPoolKey",
fallbackMethod = "getFallback",
commandProperties = {
@HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "20000"),
@HystrixProperty(name = "circuitBreaker.requestVolumeThreshold", value = "1000"),
@HystrixProperty(name = "circuitBreaker.sleepWindowInMilliseconds", value = "20000"),
@HystrixProperty(name = "circuitBreaker.errorThresholdPercentage", value = "20000"),
@HystrixProperty(name = "metrics.rollingStats.timeInMilliseconds", value = "20000"),
}
)
)
しかし、スレッドプールのプロパティを構成するオプションが表示されません。インターフェイスを確認しましたが、それがありません: github link それを指定する他の方法はありますか?