您好,登錄后才能下訂單哦!
Hystrix可以配置屬性的有以下類型:
Execution:控制HystrixCommand.run() 的如何執行
Fallback: 控制HystrixCommand.getFallback() 如何執行
Circuit Breaker: 控制斷路器的行為
Metrics: 捕獲和HystrixCommand 和 HystrixObservableCommand 執行信息相關的配置屬性
Request Context:設置請求上下文的屬性
Collapser Properties:設置請求合并的屬性
Thread Pool Properties:設置線程池的屬性
1 內置全局默認值:寫死在代碼里的值
2 動態全局默認屬性:通過屬性文件配置全局的值
3 內置實例默認值:寫死在代碼里的實例的值
4 動態配置實例屬性:通過屬性文件配置特定實例的值
3 Hystrix配置屬性詳解
Hystrix可以配置屬性的有以下類型:
Execution:控制HystrixCommand.run() 的如何執行
Fallback: 控制HystrixCommand.getFallback() 如何執行
Circuit Breaker: 控制斷路器的行為
Metrics: 捕獲和HystrixCommand 和 HystrixObservableCommand 執行信息相關的配置屬性
Request Context:設置請求上下文的屬性
Collapser Properties:設置請求合并的屬性
Thread Pool Properties:設置線程池的屬性
3.1. Execution
以下屬性控制HystrixCommand.run() 的如何執行
1 THREAD: 在單獨的線程上執行,并發請求受線程池中的線程數限制
2 SEMAPHORE: 在調用線程上執行,并發請求量受信號量計數限制
在默認情況下,推薦HystrixCommands 使用 thread 隔離策略,HystrixObservableCommand 使用 semaphore 隔離策略。
只有在高并發(單個實例每秒達到幾百個調用)的調用時,才需要修改HystrixCommands 的隔離策略為semaphore 。semaphore 隔離策略通常只用于非網絡調用
默認值:THREAD,
// 設置所有實例的默認值
hystrix.command.default.execution.isolation.strategy=..
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.execution.isolation.strategy=...
默認值:1000
// 設置所有實例的默認值
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.execution.isolation.thread.timeoutInMilliseconds=...
默認值:true
// 設置所有實例的默認值
hystrix.command.default.execution.timeout.enabled=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.execution.timeout.enabled=...
默認值:true
// 設置所有實例的默認值
hystrix.command.default.execution.isolation.thread.interruptOnTimeout=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.execution.isolation.thread.interruptOnTimeout=...
默認值:false
// 設置所有實例的默認值
hystrix.command.default.execution.isolation.thread.interruptOnCancel=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.execution.isolation.thread.interruptOnCancel
當HystrixCommand.run()使用SEMAPHORE的隔離策略時,設置最大的并發量
默認值:10
// 設置所有實例的默認值
hystrix.command.default.execution.isolation.semaphore.maxConcurrentRequests=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.execution.isolation.semaphore.maxConcurrentRequests=...
3.2. Fallback
以下屬性控制HystrixCommand.getFallback() 如何執行。這些屬性對隔離策略THREAD 和SEMAPHORE都起作用.
默認值:10
// 設置所有實例的默認值
hystrix.command.default.fallback.isolation.semaphore.maxConcurrentRequests=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.fallback.isolation.semaphore.maxConcurrentRequests=...
1
2
3
4
默認值:true
// 設置所有實例的默認值
hystrix.command.default.fallback.enabled=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.fallback.enabled=...
3.3. Circuit Breaker
控制斷路器的行為
1. circuitBreaker.enabled
是否開啟斷路器功能
默認值:true
// 設置所有實例的默認值
hystrix.command.default.circuitBreaker.enabled=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.circuitBreaker.enabled=...
該屬性設置滾動窗口中將使斷路器跳閘的最小請求數量
如果此屬性值為20,則在窗口時間內(如10s內),如果只收到19個請求且都失敗了,則斷路器也不會開啟。
默認值:20
// 設置所有實例的默認值
hystrix.command.default.circuitBreaker.requestVolumeThreshold=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.circuitBreaker.requestVolumeThreshold=...
1
2
3
4
5
3. circuitBreaker.sleepWindowInMilliseconds
斷路器跳閘后,在此值的時間的內,hystrix會拒絕新的請求,只有過了這個時間斷路器才會打開閘門
默認值:5000
// 設置所有實例的默認值
hystrix.command.default.circuitBreaker.sleepWindowInMilliseconds=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.circuitBreaker.sleepWindowInMilliseconds=...
設置失敗百分比的閾值。如果失敗比率超過這個值,則斷路器跳閘并且進入fallback邏輯
默認值:50
// 設置所有實例的默認值
hystrix.command.default.circuitBreaker=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.circuitBreaker.errorThresholdPercentage=...
默認值:false
// 設置所有實例的默認值
hystrix.command.default.circuitBreaker.forceOpen=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.circuitBreaker.forceOpen=...
默認值:false
// 設置所有實例的默認值
hystrix.command.default.circuitBreaker.forceClosed=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.circuitBreaker.forceClosed=...
3.4. Metrics
捕獲和HystrixCommand 和 HystrixObservableCommand 執行信息相關的配置屬性
如果此值為10s,將窗口分成10個桶,每個桶表示1s時間,則統計信息如下圖:
默認值: 10000
// 設置所有實例的默認值
hystrix.command.default.metrics.rollingStats.timeInMilliseconds=10000
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.metrics.rollingStats.timeInMilliseconds=10000
注意:以下配置必須成立,否則會拋出異常。
metrics.rollingStats.timeInMilliseconds % metrics.rollingStats.numBuckets == 0
1
如:10000/10、10000/20是正確的配置,但是10000/7錯誤的
在高并發的環境里,每個桶的時間長度建議大于100ms
默認值:10
// 設置所有實例的默認值
hystrix.command.default.metrics.rollingStats.numBuckets=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.metrics.rollingStats.numBuckets=...
設置執行延遲是否被跟蹤,并且被計算在失敗百分比中。如果設置為false,則所有的統計數據返回-1
默認值: true
// 設置所有實例的默認值
hystrix.command.default.metrics.rollingPercentile.enabled=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.metrics.rollingPercentile.enabled=...
此屬性設置統計滾動百分比窗口的持續時間
默認值:60000
// 設置所有實例的默認值
hystrix.command.default.metrics.rollingPercentile.timeInMilliseconds=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.metrics.rollingPercentile.timeInMilliseconds=...
注意:以下配置必須成立,否則會拋出異常。
metrics.rollingPercentile.timeInMilliseconds % metrics.rollingPercentile.numBuckets == 0
1
如: 60000/6、60000/60是正確的配置,但是10000/7錯誤的
在高并發的環境里,每個桶的時間長度建議大于1000ms
默認值:6
// 設置所有實例的默認值
hystrix.command.default.metrics.rollingPercentile.numBuckets=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.metrics.rollingPercentile.numBuckets=...
默認值:100
// 設置所有實例的默認值
hystrix.command.default.metrics.rollingPercentile.bucketSize=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.metrics.rollingPercentile.bucketSize=...
采樣時間間隔
默認值:500
// 設置所有實例的默認值
hystrix.command.default.metrics.healthSnapshot.intervalInMilliseconds=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.metrics.healthSnapshot.intervalInMilliseconds=...
3.5. Request Context
此屬性控制HystrixCommand使用到的Hystrix的上下文
默認值:true
// 設置所有實例的默認值
hystrix.command.default.requestCache.enabled=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.requestCache.enabled=...
默認值:true
// 設置所有實例的默認值
hystrix.command.default.requestLog.enabled=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.command.HystrixCommandKey.requestLog.enabled=...
3.6. Collapser Properties###
設置請求合并的屬性
默認值:Integer.MAX_VALUE
// 設置所有實例的默認值
hystrix.collapser.default.maxRequestsInBatch=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.collapser.HystrixCollapserKey.maxRequestsInBatch=...
默認值:10
// 設置所有實例的默認值
hystrix.collapser.default.timerDelayInMilliseconds=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.collapser.HystrixCollapserKey.timerDelayInMilliseconds=...
默認值:true
// 設置所有實例的默認值
hystrix.collapser.default.requestCache.enabled=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.collapser.HystrixCollapserKey.requestCache.enabled=...
3.7. Thread Pool Properties
設置Hystrix Commands的線程池行為,大部分情況線程數量是10。
線程池數量的計算公式如下:
最高峰時每秒的請求數量 × 99%命令執行時間 + 喘息空間
1
設置線程池數量的主要原則是保持線程池越小越好,因為它是減輕負載并防止資源在延遲發生時被阻塞的主要工具
默認值:10
// 設置所有實例的默認值
hystrix.threadpool.default.coreSize=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.threadpool.HystrixThreadPoolKey.coreSize=...
默認值:10
// 設置所有實例的默認值
hystrix.threadpool.default.maximumSize=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.threadpool.HystrixThreadPoolKey.maximumSize=...
1
2
3
4
默認值:-1
// 設置所有實例的默認值
hystrix.threadpool.default.maxQueueSize=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.threadpool.HystrixThreadPoolKey.maxQueueSize=...
如果設置-1,則屬性不啟作用
默認值:5
// 設置所有實例的默認值
hystrix.threadpool.default.queueSizeRejectionThreshold=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.threadpool.HystrixThreadPoolKey.queueSizeRejectionThreshold=...
默認值:1
// 設置所有實例的默認值
hystrix.threadpool.default.keepAliveTimeMinutes=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.threadpool.HystrixThreadPoolKey.keepAliveTimeMinutes=...
6. allowMaximumSizeToDivergeFromCoreSize
設置allowMaximumSizeToDivergeFromCoreSize值為true時,maximumSize才有作用
默認值:false
// 設置所有實例的默認值
hystrix.threadpool.default.allowMaximumSizeToDivergeFromCoreSize=....
// 設置實例HystrixCommandKey的此屬性值
hystrix.threadpool.HystrixThreadPoolKey.allowMaximumSizeToDivergeFromCoreSize=...
默認值:10000
// 設置所有實例的默認值
hystrix.threadpool.default.metrics.rollingStats.timeInMilliseconds=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.threadpool.HystrixThreadPoolKey.metrics.rollingStats.timeInMilliseconds=...
配置的值必須滿足如下條件:
metrics.rollingStats.timeInMilliseconds % metrics.rollingStats.numBuckets == 0
1
默認值:10
建議每個桶的時間長度大于100ms
// 設置所有實例的默認值
hystrix.threadpool.default.metrics.rollingStats.numBuckets=...
// 設置實例HystrixCommandKey的此屬性值
hystrix.threadpool.HystrixThreadPoolProperties.metrics.rollingStats.numBuckets=...
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。