当我使用下面的hystrix默认配置时(窗口时间:10s)
hystrix.command.default.metrics.rollingStats.timeInMilliseconds=10000
hystrix.command.default.metrics.rollingStats.numBuckets=10
hystrix.command.default.circuitBreaker.requestVolumeThreshold=20
hystrix.command.default.circuitBreaker.errorThresholdPercentage=50
例如,前5秒钟,我有30个请求和20个失败。 circuitBreaker会立即打开还是等待接下来的5秒钟以满足特定的窗口时间,然后再打开circuitBreaker?