国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

SpringCloud(第 015 篇)電影Ribbon微服務(wù)集成Hystrix增加隔離策略控制指標(biāo)

RobinQu / 2567人閱讀

摘要:傳播安全上下文或使用,通過增加的屬性,來增加相關(guān)的配置來達(dá)到執(zhí)行隔離策略,控制線程數(shù)或者控制并發(fā)請(qǐng)求數(shù)來達(dá)到熔斷降級(jí)的作用。

SpringCloud(第 015 篇)電影Ribbon微服務(wù)集成Hystrix增加隔離策略控制線程數(shù)或請(qǐng)求數(shù)來達(dá)到熔斷降級(jí)的作用

-

一、大致介紹
1、本章節(jié)介紹關(guān)于Hystrix的2種隔離方式(Thread Pool 和 Semaphores);
2、ThreadPool:這是比較常用的隔離策略,即根據(jù)配置把不同的命令分配到不同的線程池中,該策略的優(yōu)點(diǎn)是隔離性好,并且可以配置斷路,某個(gè)依賴被設(shè)置斷路之后,系統(tǒng)不會(huì)再嘗試新起線程運(yùn)行它,而是直接提示失敗,或返回fallback值;缺點(diǎn)是新起線程執(zhí)行命令,在執(zhí)行的時(shí)候必然涉及到上下文的切換,這會(huì)造成一定的性能消耗,但是Netflix做過實(shí)驗(yàn),這種消耗對(duì)比其帶來的價(jià)值是完全可以接受的。
3、Semaphores:開發(fā)者可以限制系統(tǒng)對(duì)某一個(gè)依賴的最高并發(fā)數(shù)。這個(gè)基本上就是一個(gè)限流的策略。每次調(diào)用依賴時(shí)都會(huì)檢查一下是否到達(dá)信號(hào)量的限制值,如達(dá)到,則拒絕。該隔離策略的優(yōu)點(diǎn)不新起線程執(zhí)行命令,減少上下文切換,缺點(diǎn)是無法配置斷路,每次都一定會(huì)去嘗試獲取信號(hào)量。 
4、而本章節(jié)主要簡(jiǎn)單的介紹下如何使用 Semaphores 來達(dá)到控制隔離;
二、實(shí)現(xiàn)步驟 2.1 添加 maven 引用包


    4.0.0

    springms-consumer-movie-ribbon-with-hystrix-propagation
    1.0-SNAPSHOT
    jar
    
    
        com.springms.cloud
        springms-spring-cloud
        1.0-SNAPSHOT
    
    
    
        
        
            org.springframework.boot
            spring-boot-starter-web
        

        
        
            org.springframework.cloud
            spring-cloud-starter-eureka
        

        
        
            org.springframework.cloud
            spring-cloud-starter-hystrix
        
    

2.2 添加應(yīng)用配置文件(springms-consumer-movie-ribbon-with-hystrix-propagationsrcmainresourcesapplication.yml)
spring:
  application:
    name: springms-consumer-movie-ribbon-with-hystrix-propagation
server:
  port: 8100
#做負(fù)載均衡的時(shí)候,不需要這個(gè)動(dòng)態(tài)配置的地址
#user:
#  userServicePath: http://localhost:7900/simple/
eureka:
  client:
#    healthcheck:
#      enabled: true
    serviceUrl:
      defaultZone: http://admin:admin@localhost:8761/eureka
  instance:
    prefer-ip-address: true
    instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}}


# 解決第一次請(qǐng)求報(bào)超時(shí)異常的方案,因?yàn)?hystrix 的默認(rèn)超時(shí)時(shí)間是 1 秒,因此請(qǐng)求超過該時(shí)間后,就會(huì)出現(xiàn)頁面超時(shí)顯示 :
#
# 這里就介紹大概三種方式來解決超時(shí)的問題,解決方案如下:
#
# 第一種方式:將 hystrix 的超時(shí)時(shí)間設(shè)置成 5000 毫秒
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 5000
#
# 或者:
# 第二種方式:將 hystrix 的超時(shí)時(shí)間直接禁用掉,這樣就沒有超時(shí)的一說了,因?yàn)橛肋h(yuǎn)也不會(huì)超時(shí)了
# hystrix.command.default.execution.timeout.enabled: false
#
# 或者:
# 第三種方式:索性禁用feign的hystrix支持
# feign.hystrix.enabled: false ## 索性禁用feign的hystrix支持

# 超時(shí)的issue:https://github.com/spring-cloud/spring-cloud-netflix/issues/768
# 超時(shí)的解決方案: http://stackoverflow.com/questions/27375557/hystrix-command-fails-with-timed-out-and-no-fallback-available
# hystrix配置: https://github.com/Netflix/Hystrix/wiki/Configuration#execution.isolation.thread.timeoutInMilliseconds
2.3 添加實(shí)體用戶類User(springms-consumer-movie-ribbon-with-hystrix-propagationsrcmainjavacomspringmscloudentityUser.java)
package com.springms.cloud.entity;

import java.math.BigDecimal;

public class User {

    private Long id;

    private String username;

    private String name;

    private Short age;

    private BigDecimal balance;

    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getUsername() {
        return this.username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Short getAge() {
        return this.age;
    }

    public void setAge(Short age) {
        this.age = age;
    }

    public BigDecimal getBalance() {
        return this.balance;
    }

    public void setBalance(BigDecimal balance) {
        this.balance = balance;
    }

}
2.4 添加電影Web訪問層Controller(springms-consumer-movie-ribbon-with-hystrix-propagationsrcmainjavacomspringmscloudcontrollerMovieRibbonHystrixPropagationController.java)
package com.springms.cloud.controller;

import com.springms.cloud.entity.User;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixProperty;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

@RestController
public class MovieRibbonHystrixPropagationController {

    @Autowired
    private RestTemplate restTemplate;

    @GetMapping("/movie/{id}")
    @HystrixCommand(fallbackMethod = "findByIdFallback", commandProperties = @HystrixProperty(name = "execution.isolation.strategy", value = "SEMAPHORE"))
    public User findById(@PathVariable Long id) {
        // http://localhost:7900/simple/
        // VIP:virtual IP
        // HAProxy Heartbeat

        System.out.println("======================== findById " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());

        return this.restTemplate.getForObject("http://springms-provider-user/simple/" + id, User.class);
    }

    public User findByIdFallback(Long id) {
        System.out.println("======================== findByIdFallback " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());

        User user = new User();
        user.setId(0L);
        return user;
    }
}
2.5 添加電影微服務(wù)啟動(dòng)類(springms-consumer-movie-ribbon-with-hystrix-propagationsrcmainjavacomspringmscloudMsConsumerMovieRibbonHystrixPropagationApplication.java)
package com.springms.cloud;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;

/**
 * 電影Ribbon微服務(wù)集成Hystrix增加隔離策略控制線程數(shù)或請(qǐng)求數(shù)來達(dá)到熔斷降級(jí)的作用。
 *
 * 傳播安全上下文或使用,通過增加 HystrixCommand 的 commandProperties 屬性,來增加相關(guān)的配置來達(dá)到執(zhí)行隔離策略,控制線程數(shù)或者控制并發(fā)請(qǐng)求數(shù)來達(dá)到熔斷降級(jí)的作用。
 *
 * Hystrix 斷路器實(shí)現(xiàn)失敗快速響應(yīng),達(dá)到熔斷效果;
 *
 * 注解 EnableCircuitBreaker 表明需要集成斷路器模塊;
 *
 * 如果你想把本地線程上下文傳播到@HystrixCommand,默認(rèn)的聲明將不可用因?yàn)樗窃谝粋€(gè)線程池中被啟動(dòng)的。你可以選擇讓Hystrix使用同一個(gè)線程,通過一些配置,或直接寫在注解上,通過使用isolation strategy屬性;
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/21
 *
 */
@SpringBootApplication
@EnableEurekaClient
@EnableCircuitBreaker
public class MsConsumerMovieRibbonHystrixPropagationApplication {

    @Bean
    @LoadBalanced
    public RestTemplate restTemplate(){
        return new RestTemplate();
    }

    public static void main(String[] args) {
        SpringApplication.run(MsConsumerMovieRibbonHystrixPropagationApplication.class, args);
        System.out.println("【【【【【【 電影微服務(wù)-Hystrix安全傳播上下文 】】】】】】已啟動(dòng).");
    }
}
三、測(cè)試
/****************************************************************************************
 一、電影 Ribbon 微服務(wù)集成 Hystrix 斷路器實(shí)現(xiàn)失敗快速響應(yīng),達(dá)到熔斷效果:

 1、注解:EnableCircuitBreaker、HystrixCommand 的編寫;
 2、啟動(dòng) springms-provider-user 模塊服務(wù),啟動(dòng)1個(gè)端口;
 3、啟動(dòng) springms-consumer-movie-ribbon-with-hystrix-propagation 模塊服務(wù);
 4、在瀏覽器輸入地址http://localhost:8100/movie/1,然后頁面的信息是否有打印出來用戶的Id=0的情況,正常情況下是沒有用戶Id=0的情況信息打印的;

 5、殺死 springms-provider-user 模塊服務(wù),停止提供服務(wù);
 6、在瀏覽器輸入地址http://localhost:8100/movie/1,然后頁面的信息是否有打印出來用戶的Id=0的情況,等了1秒中后有用戶Id=0的情況信息打印出來;
 7、然后看看控制臺(tái)打印的日志:
     ======================== findById java.lang.ThreadGroup[name=main,maxpri=10] - 56 - http-nio-8100-exec-8
     ======================== findByIdFallback java.lang.ThreadGroup[name=main,maxpri=10] - 56 - http-nio-8100-exec-8
     ======================== findById java.lang.ThreadGroup[name=main,maxpri=10] - 57 - http-nio-8100-exec-9
     ======================== findByIdFallback java.lang.ThreadGroup[name=main,maxpri=10] - 57 - http-nio-8100-exec-9
     ======================== findById java.lang.ThreadGroup[name=main,maxpri=10] - 35 - http-nio-8100-exec-1
     ======================== findByIdFallback java.lang.ThreadGroup[name=main,maxpri=10] - 35 - http-nio-8100-exec-1

 總結(jié)一:使用 SEMAPHORE 信號(hào)量的時(shí)候,雖然不能配置斷路器功能,但是通過控制請(qǐng)求數(shù)來達(dá)到一個(gè)限流的作用;

 8、等一會(huì)兒在啟動(dòng) springms-provider-user 模塊服務(wù),啟動(dòng)1個(gè)端口;
 9、在瀏覽器輸入地址http://localhost:8070/movie/1,然后頁面的信息又有Id!=0的用戶信息打印出來;

 總結(jié)二:當(dāng)遠(yuǎn)端微服務(wù)宕機(jī)或者不可用時(shí),Hystrix已經(jīng)達(dá)到快速響應(yīng)快速失敗,起到了熔斷機(jī)制的效果。
 ****************************************************************************************/







/****************************************************************************************
 找出一些相關(guān)的配置信息僅供參考:

 Execution相關(guān)的屬性的配置:
 hystrix.command.default.execution.isolation.strategy 隔離策略,默認(rèn)是Thread, 可選Thread|Semaphore
     thread 通過線程數(shù)量來限制并發(fā)請(qǐng)求數(shù),可以提供額外的保護(hù),但有一定的延遲。一般用于網(wǎng)絡(luò)調(diào)用
     semaphore 通過semaphore count來限制并發(fā)請(qǐng)求數(shù),適用于無網(wǎng)絡(luò)的高并發(fā)請(qǐng)求
 hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds 命令執(zhí)行超時(shí)時(shí)間,默認(rèn)1000ms
 hystrix.command.default.execution.timeout.enabled 執(zhí)行是否啟用超時(shí),默認(rèn)啟用true
 hystrix.command.default.execution.isolation.thread.interruptOnTimeout 發(fā)生超時(shí)是是否中斷,默認(rèn)true
 hystrix.command.default.execution.isolation.semaphore.maxConcurrentRequests 最大并發(fā)請(qǐng)求數(shù),默認(rèn)10,該參數(shù)當(dāng)使用ExecutionIsolationStrategy.SEMAPHORE策略時(shí)才有效。如果達(dá)到最大并發(fā)請(qǐng)求數(shù),請(qǐng)求會(huì)被拒絕。理論上選擇semaphore size的原則和選擇thread size一致,但選用semaphore時(shí)每次執(zhí)行的單元要比較小且執(zhí)行速度快(ms級(jí)別),否則的話應(yīng)該用thread。
 semaphore應(yīng)該占整個(gè)容器(tomcat)的線程池的一小部分。

 Fallback相關(guān)的屬性:
 這些參數(shù)可以應(yīng)用于Hystrix的THREAD和SEMAPHORE策略
 hystrix.command.default.fallback.isolation.semaphore.maxConcurrentRequests 如果并發(fā)數(shù)達(dá)到該設(shè)置值,請(qǐng)求會(huì)被拒絕和拋出異常并且fallback不會(huì)被調(diào)用。默認(rèn)10
 hystrix.command.default.fallback.enabled 當(dāng)執(zhí)行失敗或者請(qǐng)求被拒絕,是否會(huì)嘗試調(diào)用hystrixCommand.getFallback() 。默認(rèn)true
 Circuit Breaker相關(guān)的屬性
 hystrix.command.default.circuitBreaker.enabled 用來跟蹤circuit的健康性,如果未達(dá)標(biāo)則讓request短路。默認(rèn)true
 hystrix.command.default.circuitBreaker.requestVolumeThreshold 一個(gè)rolling window內(nèi)最小的請(qǐng)求數(shù)。如果設(shè)為20,那么當(dāng)一個(gè)rolling window的時(shí)間內(nèi)(比如說1個(gè)rolling window是10秒)收到19個(gè)請(qǐng)求,即使19個(gè)請(qǐng)求都失敗,也不會(huì)觸發(fā)circuit break。默認(rèn)20
 hystrix.command.default.circuitBreaker.sleepWindowInMilliseconds 觸發(fā)短路的時(shí)間值,當(dāng)該值設(shè)為5000時(shí),則當(dāng)觸發(fā)circuit break后的5000毫秒內(nèi)都會(huì)拒絕request,也就是5000毫秒后才會(huì)關(guān)閉circuit。默認(rèn)5000
 hystrix.command.default.circuitBreaker.errorThresholdPercentage錯(cuò)誤比率閥值,如果錯(cuò)誤率>=該值,circuit會(huì)被打開,并短路所有請(qǐng)求觸發(fā)fallback。默認(rèn)50
 hystrix.command.default.circuitBreaker.forceOpen 強(qiáng)制打開熔斷器,如果打開這個(gè)開關(guān),那么拒絕所有request,默認(rèn)false
 hystrix.command.default.circuitBreaker.forceClosed 強(qiáng)制關(guān)閉熔斷器 如果這個(gè)開關(guān)打開,circuit將一直關(guān)閉且忽略circuitBreaker.errorThresholdPercentage

 Metrics相關(guān)參數(shù):
 hystrix.command.default.metrics.rollingStats.timeInMilliseconds 設(shè)置統(tǒng)計(jì)的時(shí)間窗口值的,毫秒值,circuit break 的打開會(huì)根據(jù)1個(gè)rolling window的統(tǒng)計(jì)來計(jì)算。若rolling window被設(shè)為10000毫秒,則rolling window會(huì)被分成n個(gè)buckets,每個(gè)bucket包含success,failure,timeout,rejection的次數(shù)的統(tǒng)計(jì)信息。默認(rèn)10000
 hystrix.command.default.metrics.rollingStats.numBuckets 設(shè)置一個(gè)rolling window被劃分的數(shù)量,若numBuckets=10,rolling window=10000,那么一個(gè)bucket的時(shí)間即1秒。必須符合rolling window % numberBuckets == 0。默認(rèn)10
 hystrix.command.default.metrics.rollingPercentile.enabled 執(zhí)行時(shí)是否enable指標(biāo)的計(jì)算和跟蹤,默認(rèn)true
 hystrix.command.default.metrics.rollingPercentile.timeInMilliseconds 設(shè)置rolling percentile window的時(shí)間,默認(rèn)60000
 hystrix.command.default.metrics.rollingPercentile.numBuckets 設(shè)置rolling percentile window的numberBuckets。邏輯同上。默認(rèn)6
 hystrix.command.default.metrics.rollingPercentile.bucketSize 如果bucket size=100,window=10s,若這10s里有500次執(zhí)行,只有最后100次執(zhí)行會(huì)被統(tǒng)計(jì)到bucket里去。增加該值會(huì)增加內(nèi)存開銷以及排序的開銷。默認(rèn)100
 hystrix.command.default.metrics.healthSnapshot.intervalInMilliseconds 記錄health 快照(用來統(tǒng)計(jì)成功和錯(cuò)誤綠)的間隔,默認(rèn)500ms

 Request Context 相關(guān)參數(shù):
 hystrix.command.default.requestCache.enabled 默認(rèn)true,需要重載getCacheKey(),返回null時(shí)不緩存
 hystrix.command.default.requestLog.enabled 記錄日志到HystrixRequestLog,默認(rèn)true

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

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

 ****************************************************************************************/
四、下載地址

https://gitee.com/ylimhhmily/SpringCloudTutorial.git

SpringCloudTutorial交流QQ群: 235322432

SpringCloudTutorial交流微信群: 微信溝通群二維碼圖片鏈接

歡迎關(guān)注,您的肯定是對(duì)我最大的支持!!!

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/70506.html

相關(guān)文章

  • SpringCloud 014 電影 Ribbon 服務(wù)集成 Hystrix 斷路器實(shí)現(xiàn)失

    摘要:當(dāng)服務(wù)宕機(jī)或者不可用時(shí),即請(qǐng)求超時(shí)后會(huì)調(diào)用此方法。添加電影微服務(wù)啟動(dòng)類電影微服務(wù)集成斷路器實(shí)現(xiàn)失敗快速響應(yīng),達(dá)到熔斷效果。 SpringCloud(第 014 篇)電影 Ribbon 微服務(wù)集成 Hystrix 斷路器實(shí)現(xiàn)失敗快速響應(yīng),達(dá)到熔斷效果 - 一、大致介紹 1、Hystrix 斷路器的原理很簡(jiǎn)單,如同電力過載保護(hù)器。它可以實(shí)現(xiàn)快速失敗,如果它在一段時(shí)間內(nèi)偵測(cè)到許多類似的錯(cuò)誤,...

    StonePanda 評(píng)論0 收藏0
  • 2021 年最新基于 Spring Cloud 的服務(wù)架構(gòu)分析

    摘要:是一個(gè)相對(duì)比較新的微服務(wù)框架,年才推出的版本雖然時(shí)間最短但是相比等框架提供的全套的分布式系統(tǒng)解決方案。提供線程池不同的服務(wù)走不同的線程池,實(shí)現(xiàn)了不同服務(wù)調(diào)用的隔離,避免了服務(wù)器雪崩的問題。通過互相注冊(cè)的方式來進(jìn)行消息同步和保證高可用。 Spring Cloud 是一個(gè)相對(duì)比較新的微服務(wù)框架,...

    cikenerd 評(píng)論0 收藏0
  • SpringCloud 016 電影服務(wù), 定制Feign,一個(gè)Feign功能禁用而另一個(gè)

    摘要:在該配置中,加入這個(gè)方法的話,表明使用了該配置的地方,就會(huì)禁用該模塊使用容災(zāi)降級(jí)的功能添加訪問層添加電影微服務(wù)啟動(dòng)類電影微服務(wù),定制,一個(gè)功能禁用,另一個(gè)功能啟用。 SpringCloud(第 016 篇)電影微服務(wù),定制Feign,一個(gè)Feign功能禁用Hystrix,另一個(gè)Feign功能啟用Hystrix - 一、大致介紹 1、在一些場(chǎng)景中,部分功能需要使用斷路器功能,部分功能不需...

    張憲坤 評(píng)論0 收藏0
  • 外行人都能看懂的SpringCloud,錯(cuò)過了血虧!

    摘要:集群系統(tǒng)中的單個(gè)計(jì)算機(jī)通常稱為節(jié)點(diǎn),通常通過局域網(wǎng)連接,但也有其它的可能連接方式。這樣就高興了,可以專心寫自己的,前端就專門交由小周負(fù)責(zé)了。于是,小周和就變成了協(xié)作開發(fā)。都是為了項(xiàng)目正常運(yùn)行以及迭代。 一、前言 只有光頭才能變強(qiáng) 認(rèn)識(shí)我的朋友可能都知道我這陣子去實(shí)習(xí)啦,去的公司說是用SpringCloud(但我覺得使用的力度并不大啊~~)... 所以,這篇主要來講講SpringClou...

    沈建明 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<