Configuration · Netflix/Hystrix Wiki
This property sets the time in milliseconds after which the caller will observe a timeout and walk away from the command execution. Hystrix marks the HystrixCommand
as a TIMEOUT, and performs fallback logic. Note that there is configuration for turning off timeouts per-command, if that is desired (see command.timeout.enabled).
Note: Timeouts will fire on HystrixCommand.queue()
, even if the caller never calls get()
on the resulting Future. Before Hystrix 1.4.0, only calls to get()
triggered the timeout mechanism to take effect in such a case.
Read full article from Configuration · Netflix/Hystrix Wiki
No comments:
Post a Comment