spring-cloud hystrix

首先參考
http://www.reibang.com/p/b9af028efebb
https://blog.csdn.net/shilu89757/article/details/79363295

創(chuàng)建 springboot 項目幽污,在勾選依賴的時候岸夯,一定要把 hystrix 和hystrix-dashboard 都打鉤了雕薪,

 <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
        </dependency>

然后 在 springboot 主類里 加 hystrix 的啟動聲明

@EnableCircuitBreaker
@EnableHystrix
@EnableHystrixDashboard
@SpringBootApplication
@EnableDiscoveryClient
@ComponentScan(basePackages= {"com.*"})
public class SpbootApplication {

    public static void main(String[] args) {

        SpringApplication.run(SpbootApplication.class, args);
    }
}

配置文件里

server.port=8083
spring.application.name=discover-rms

hystrix.metrics.enabled=true
hystrix.dashboard.enable-ignore-connection-close-header=true
spring.sleuth.hystrix.strategy.enabled=true
spring.zipkin.base-url=http://localhost:9411

然后寫一個 hystrix的配置類,這個配置類很關(guān)鍵纲岭,方法名都不可以錯,不然就是啟動不了卦方,要么就是啟動了羊瘩,會報 Unable to connect to Command Metric Stream. 記得一定要加 @Bean 注解




import com.netflix.hystrix.contrib.javanica.aop.aspectj.HystrixCacheAspect;
import com.netflix.hystrix.contrib.javanica.aop.aspectj.HystrixCommandAspect;
import com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class HystrixConfig {


    @Bean
    public HystrixCommandAspect hystrixAspect(){

        return new HystrixCommandAspect();
    }

    @Bean
    public ServletRegistrationBean hystrixMetricsStreamServlet(){

        ServletRegistrationBean registrationBean=new ServletRegistrationBean(new HystrixMetricsStreamServlet()) ;
        registrationBean.addUrlMappings("/hystrix.stream");
        return  registrationBean;

    }
}

然后就是具體的rest 的方法

    @GetMapping(value = "/getOrderPageList")
    @HystrixCommand(
            fallbackMethod = "getOrderPageListFallback",
            threadPoolProperties = {  //10個核心線程池,超過20個的隊列外的請求被拒絕; 當一切都是正常的時候,線程池一般僅會有1到2個線程激活來提供服務
                    @HystrixProperty(name = "coreSize", value = "10"),
                    @HystrixProperty(name = "maxQueueSize", value = "100"),
                    @HystrixProperty(name = "queueSizeRejectionThreshold", value = "20")},
            commandProperties = {
                    @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "10000"), //命令執(zhí)行超時時間
                    @HystrixProperty(name = "circuitBreaker.requestVolumeThreshold", value = "2"), //若干10s一個窗口內(nèi)失敗三次, 則達到觸發(fā)熔斷的最少請求量
                    @HystrixProperty(name = "circuitBreaker.sleepWindowInMilliseconds", value = "30000") //斷路30s后嘗試執(zhí)行, 默認為5s
            })
    public String  getOrderPagelist(){

        return "真的號碼";
    }


    public String getOrderPageListFallback(){
        logger.error("===================== 執(zhí)行降級策略");
        return "real false ";
    }


然后啟動這個項目
訪問 他 http://localhost:8083/hystrix 就可以看到了 hystrix-dashboard 頁面

image.png

然后在這個頁面的 url 添加 地址
http://localhost:8083/hystrix.stream

注意盼砍,如果你沒有訪問 其他接口的話,會顯示 一直 【loading】的 狀態(tài)逝她,
只有當你請求了 浇坐,才可以看到 一些分析

image.png
image.png

至此 hystrix-dashboard 基本是可以使用了,最主要大家還是要看到hystrix 熔斷 的使用

server.port=8083
spring.application.name=discover-rms


#hystrix
hystrix.metrics.enabled=true
hystrix.dashboard.enable-ignore-connection-close-header=true
spring.sleuth.hystrix.strategy.enabled=true

spring.zipkin.base-url=http://localhost:9411
#zipkin
spring.sleuth.trace-id128=true
spring.sleuth.sampler.probability=1.0

#consul
spring.cloud.consul.host=192.168.25.175
spring.cloud.consul.port=8500
spring.cloud.consul.discovery.enabled=true
spring.cloud.consul.discovery.service-name=rms_test
spring.cloud.consul.discovery.health-check-interval=10s
spring.cloud.consul.discovery.register=true
spring.cloud.consul.discovery.health-check-path=/health
spring.cloud.consul.discovery.tags=rms_forecast,idc,h9,test
spring.http.encoding.charset=utf-8
spring.http.encoding.enabled=true
spring.cloud.consul.discovery.instance-id=rms_dch9_test

參數(shù)詳解
hystrix.command.default和hystrix.threadpool.default中的default為默認CommandKey

Command Properties
Execution相關(guān)的屬性的配置:
hystrix.command.default.execution.isolation.strategy 隔離策略黔宛,默認是Thread, 可選Thread|Semaphore

hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds 命令執(zhí)行超時時間近刘,默認1000ms

hystrix.command.default.execution.timeout.enabled 執(zhí)行是否啟用超時,默認啟用true
hystrix.command.default.execution.isolation.thread.interruptOnTimeout 發(fā)生超時是是否中斷臀晃,默認true
hystrix.command.default.execution.isolation.semaphore.maxConcurrentRequests 最大并發(fā)請求數(shù)觉渴,默認10,該參數(shù)當使用ExecutionIsolationStrategy.SEMAPHORE策略時才有效徽惋。如果達到最大并發(fā)請求數(shù)案淋,請求會被拒絕。理論上選擇semaphore size的原則和選擇thread size一致险绘,但選用semaphore時每次執(zhí)行的單元要比較小且執(zhí)行速度快(ms級別)踢京,否則的話應該用thread。
semaphore應該占整個容器(tomcat)的線程池的一小部分宦棺。
Fallback相關(guān)的屬性
這些參數(shù)可以應用于Hystrix的THREAD和SEMAPHORE策略

hystrix.command.default.fallback.isolation.semaphore.maxConcurrentRequests 如果并發(fā)數(shù)達到該設(shè)置值瓣距,請求會被拒絕和拋出異常并且fallback不會被調(diào)用。默認10
hystrix.command.default.fallback.enabled 當執(zhí)行失敗或者請求被拒絕代咸,是否會嘗試調(diào)用hystrixCommand.getFallback() 蹈丸。默認true
Circuit Breaker相關(guān)的屬性
hystrix.command.default.circuitBreaker.enabled 用來跟蹤circuit的健康性,如果未達標則讓request短路。默認true
hystrix.command.default.circuitBreaker.requestVolumeThreshold 一個rolling window內(nèi)最小的請求數(shù)逻杖。如果設(shè)為20奋岁,那么當一個rolling window的時間內(nèi)(比如說1個rolling window是10秒)收到19個請求,即使19個請求都失敗弧腥,也不會觸發(fā)circuit break厦取。默認20
hystrix.command.default.circuitBreaker.sleepWindowInMilliseconds 觸發(fā)短路的時間值,當該值設(shè)為5000時管搪,則當觸發(fā)circuit break后的5000毫秒內(nèi)都會拒絕request虾攻,也就是5000毫秒后才會關(guān)閉circuit。默認5000
hystrix.command.default.circuitBreaker.errorThresholdPercentage錯誤比率閥值更鲁,如果錯誤率>=該值霎箍,circuit會被打開,并短路所有請求觸發(fā)fallback澡为。默認50
hystrix.command.default.circuitBreaker.forceOpen 強制打開熔斷器漂坏,如果打開這個開關(guān),那么拒絕所有request媒至,默認false
hystrix.command.default.circuitBreaker.forceClosed 強制關(guān)閉熔斷器 如果這個開關(guān)打開顶别,circuit將一直關(guān)閉且忽略circuitBreaker.errorThresholdPercentage
Metrics相關(guān)參數(shù)
hystrix.command.default.metrics.rollingStats.timeInMilliseconds 設(shè)置統(tǒng)計的時間窗口值的,毫秒值拒啰,circuit break 的打開會根據(jù)1個rolling window的統(tǒng)計來計算驯绎。若rolling window被設(shè)為10000毫秒,則rolling window會被分成n個buckets谋旦,每個bucket包含success剩失,failure,timeout册着,rejection的次數(shù)的統(tǒng)計信息拴孤。默認10000
hystrix.command.default.metrics.rollingStats.numBuckets 設(shè)置一個rolling window被劃分的數(shù)量,若numBuckets=10甲捏,rolling window=10000演熟,那么一個bucket的時間即1秒。必須符合rolling window % numberBuckets == 0摊鸡。默認10
hystrix.command.default.metrics.rollingPercentile.enabled 執(zhí)行時是否enable指標的計算和跟蹤绽媒,默認true
hystrix.command.default.metrics.rollingPercentile.timeInMilliseconds 設(shè)置rolling percentile window的時間,默認60000
hystrix.command.default.metrics.rollingPercentile.numBuckets 設(shè)置rolling percentile window的numberBuckets免猾。邏輯同上是辕。默認6
hystrix.command.default.metrics.rollingPercentile.bucketSize 如果bucket size=100,window=10s猎提,若這10s里有500次執(zhí)行获三,只有最后100次執(zhí)行會被統(tǒng)計到bucket里去旁蔼。增加該值會增加內(nèi)存開銷以及排序的開銷。默認100
hystrix.command.default.metrics.healthSnapshot.intervalInMilliseconds 記錄health 快照(用來統(tǒng)計成功和錯誤綠)的間隔疙教,默認500ms
Request Context 相關(guān)參數(shù)
hystrix.command.default.requestCache.enabled 默認true棺聊,需要重載getCacheKey(),返回null時不緩存
hystrix.command.default.requestLog.enabled 記錄日志到HystrixRequestLog贞谓,默認true

Collapser Properties 相關(guān)參數(shù)
hystrix.collapser.default.maxRequestsInBatch 單次批處理的最大請求數(shù)限佩,達到該數(shù)量觸發(fā)批處理,默認Integer.MAX_VALUE
hystrix.collapser.default.timerDelayInMilliseconds 觸發(fā)批處理的延遲裸弦,也可以為創(chuàng)建批處理的時間+該值祟同,默認10
hystrix.collapser.default.requestCache.enabled 是否對HystrixCollapser.execute() and HystrixCollapser.queue()的cache,默認true

ThreadPool 相關(guān)參數(shù)
線程數(shù)默認值10適用于大部分情況(有時可以設(shè)置得更欣砀怼)晕城,如果需要設(shè)置得更大,那有個基本得公式可以follow:
requests per second at peak when healthy × 99th percentile latency in seconds + some breathing room
每秒最大支撐的請求數(shù) (99%平均響應時間 + 緩存值)
比如:每秒能處理1000個請求窖贤,99%的請求響應時間是60ms砖顷,那么公式是:
1000 (0.060+0.012)

基本得原則時保持線程池盡可能小,他主要是為了釋放壓力赃梧,防止資源被阻塞滤蝠。
當一切都是正常的時候,線程池一般僅會有1到2個線程激活來提供服務

hystrix.threadpool.default.coreSize 并發(fā)執(zhí)行的最大線程數(shù)授嘀,默認10
hystrix.threadpool.default.maxQueueSize BlockingQueue的最大隊列數(shù)几睛,當設(shè)為-1,會使用SynchronousQueue粤攒,值為正時使用LinkedBlcokingQueue。該設(shè)置只會在初始化時有效囱持,之后不能修改threadpool的queue size夯接,除非reinitialising thread executor。默認-1纷妆。
hystrix.threadpool.default.queueSizeRejectionThreshold 即使maxQueueSize沒有達到盔几,達到queueSizeRejectionThreshold該值后,請求也會被拒絕掩幢。因為maxQueueSize不能被動態(tài)修改逊拍,這個參數(shù)將允許我們動態(tài)設(shè)置該值。if maxQueueSize == -1际邻,該字段將不起作用
hystrix.threadpool.default.keepAliveTimeMinutes 如果corePoolSize和maxPoolSize設(shè)成一樣(默認實現(xiàn))該設(shè)置無效芯丧。如果通過plugin(https://github.com/Netflix/Hystrix/wiki/Plugins)使用自定義實現(xiàn),該設(shè)置才有用世曾,默認1.
hystrix.threadpool.default.metrics.rollingStats.timeInMilliseconds 線程池統(tǒng)計指標的時間缨恒,默認10000
hystrix.threadpool.default.metrics.rollingStats.numBuckets 將rolling window劃分為n個buckets,默認10

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市骗露,隨后出現(xiàn)的幾起案子岭佳,更是在濱河造成了極大的恐慌,老刑警劉巖萧锉,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件珊随,死亡現(xiàn)場離奇詭異,居然都是意外死亡柿隙,警方通過查閱死者的電腦和手機叶洞,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來优俘,“玉大人京办,你說我怎么就攤上這事》溃” “怎么了惭婿?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長叶雹。 經(jīng)常有香客問我财饥,道長,這世上最難降的妖魔是什么折晦? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任钥星,我火速辦了婚禮,結(jié)果婚禮上满着,老公的妹妹穿的比我還像新娘谦炒。我一直安慰自己,他們只是感情好风喇,可當我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布宁改。 她就那樣靜靜地躺著,像睡著了一般魂莫。 火紅的嫁衣襯著肌膚如雪还蹲。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天耙考,我揣著相機與錄音谜喊,去河邊找鬼。 笑死倦始,一個胖子當著我的面吹牛斗遏,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播楣号,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼最易,長吁一口氣:“原來是場噩夢啊……” “哼怒坯!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起藻懒,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤剔猿,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后嬉荆,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體归敬,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年鄙早,在試婚紗的時候發(fā)現(xiàn)自己被綠了汪茧。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡限番,死狀恐怖舱污,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情弥虐,我是刑警寧澤扩灯,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站霜瘪,受9級特大地震影響珠插,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜颖对,卻給世界環(huán)境...
    茶點故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一捻撑、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧缤底,春花似錦顾患、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至坑鱼,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間絮缅,已是汗流浹背鲁沥。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留耕魄,地道東北人画恰。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像吸奴,于是被迫代替她去往敵國和親允扇。 傳聞我的和親對象是個殘疾皇子缠局,可洞房花燭夜當晚...
    茶點故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務發(fā)現(xiàn)考润,斷路器狭园,智...
    卡卡羅2017閱讀 134,626評論 18 139
  • (git上的源碼:https://gitee.com/rain7564/spring_microservices_...
    sprainkle閱讀 9,336評論 13 33
  • Hystrix:熔斷器,容錯管理工具糊治,旨在通過熔斷機制控制服務和第三方庫的節(jié)點,從而對延遲和故障提供更強大的容錯能...
    意識流丶閱讀 1,249評論 0 1
  • 在微服務結(jié)構(gòu)中唱矛,我們將系統(tǒng)拆分成了很多服務單元,應用間通過服務注冊與訂閱的方式互相依賴井辜。由于每個單元都在不同的進程...
    i_cyy閱讀 581評論 0 0
  • 偏愛墻角獨自綻放的玫瑰绎谦, 奮不顧身擁抱刺的尖銳, 眼看著她漸漸枯萎粥脚, 你心中暗暗流淚窃肠。 我是一朵帶刺的玫瑰, 你卻...
    巍翎閱讀 344評論 9 12