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

資訊專欄INFORMATION COLUMN

SpringCloud(第 006 篇)電影微服務,使用 Ribbon 在客戶端進行負載均衡

nodejh / 1108人閱讀

摘要:第篇電影微服務,使用在客戶端進行負載均衡一大致介紹是發布的云中間層服務開源項目,主要功能是提供客戶端負載均衡算法。而被注解后,能過用負載均衡,主要是維護了一個被注解的列表,并給列表中的添加攔截器,進而交給負載均衡器去處理。

SpringCloud(第 006 篇)電影微服務,使用 Ribbon 在客戶端進行負載均衡

-

一、大致介紹
1、Ribbon 是 Netflix 發布的云中間層服務開源項目,主要功能是提供客戶端負載均衡算法。
2、Ribbon 客戶端組件提供一系列完善的配置項,如,連接超時,重試等。簡單的說,Ribbon是一個客戶端負載均衡器,我們可以在配置文件中列出load Balancer后面所有的機器,Ribbon會自動的幫助你基于某種規則(如簡單輪詢,隨機連接等)去連接這些機器,我們也很容易使用Ribbon實現自定義的負載均衡算法。
3、Ribbon 實現軟負載均衡,核心有三點:
   * 服務發現,發現依賴服務的列表
   * 服務選擇規則,在多個服務中如何選擇一個有效服務
   * 服務監聽,檢測失效的服務,高效剔除失效服務

4、本章節僅僅只是簡單使用 Ribbon 來達到客戶端負載均衡選擇后端微服務列表而已,深入了解 Ribbon 使用的話請繼續期待后序有關 Ribbon 章節的更新。
二、實現步驟 2.1 添加 maven 引用包


    4.0.0

    springms-consumer-movie-ribbon
    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.boot
            spring-boot-starter-actuator
        
    


2.2 添加應用配置文件(springms-consumer-movie-ribbonsrcmainresourcesapplication.yml)
spring:
  application:
    name: springms-consumer-movie-ribbon
server:
  port: 8010
#做負載均衡的時候,不需要這個動態配置的地址
#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}}
2.3 添加實體用戶類User(springms-consumer-movie-ribbonsrcmainjavacomspringmscloudentityUser.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-ribbonsrcmainjavacomspringmscloudcontrollerMovieRibbonController.java)
package com.springms.cloud.controller;

import com.springms.cloud.entity.User;
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;

/**
 * 電影微服務Ribbon的Web控制層,使用采用 LoadBalanced 注解后的 restTemplate 進行負載均衡調度不同后端微服務;
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/17
 *
 */
@RestController
public class MovieRibbonController {

    @Autowired
    private RestTemplate restTemplate;

    @GetMapping("/movie/{id}")
    public User findById(@PathVariable Long id) {
        // http://localhost:7900/simple/
        // VIP:virtual IP
        // HAProxy Heartbeat

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

    /**
     * 添加給 springms-sidecar 微服務做測試用的代碼。
     *
     * @return
     */
    @GetMapping("/sidecar")
    public String sidecar() {
        return this.restTemplate.getForObject("http://springms-sidecar/", String.class);
    }

    /**
     * 添加給 springms-sidecar 微服務做測試用的代碼。
     *
     * @return
     */
    @GetMapping("/sidecar/health.json")
    public String sidecarHealth() {
        return this.restTemplate.getForObject("http://springms-sidecar/health.json", String.class);
    }
}
2.5 添加電影微服務啟動類(springms-consumer-movie-ribbonsrcmainjavacomspringmscloudMsConsumerMovieRibbonApplication.java)
package com.springms.cloud;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
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 在客戶端進行負載均衡。
 *
 * LoadBalanced:該負載均衡注解,已經整合了 Ribbon;
 *
 * 在瀏覽器輸入http://localhost:8010/movie/3 地址后,注解 LoadBalanced 會進行負載均衡將請求分配到不同的【用戶微服務】上面;
 *
 * Ribbon 的默認負載均衡的算法為:輪詢;
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/17
 *
 */
@SpringBootApplication
@EnableEurekaClient
public class MsConsumerMovieRibbonApplication {

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

    public static void main(String[] args) {
        SpringApplication.run(MsConsumerMovieRibbonApplication.class, args);
        System.out.println("【【【【【【 電影微服務-Ribbon 】】】】】】已啟動.");
    }
}
三、Ribbon 簡述流程分析
 Ribbon的負載均衡,主要通過LoadBalancerClient來實現的,而LoadBalancerClient具體交給了ILoadBalancer來處理,
 ILoadBalancer通過配置IRule、IPing等信息,并向EurekaClient獲取注冊列表的信息,并默認10秒一次向EurekaClient發送“ping”,
 進而檢查是否更新服務列表,最后,得到注冊列表后,ILoadBalancer根據IRule的策略進行負載均衡。

 而RestTemplate 被@LoadBalance注解后,能過用負載均衡,主要是維護了一個被@LoadBalance注解的RestTemplate列表,并給列表中的RestTemplate添加攔截器,進而交給負載均衡器去處理。
四、測試
/****************************************************************************************
 一、電影微服務,使用 Ribbon 在客戶端進行負載均衡:

 1、啟動 springms-discovery-eureka 模塊服務,啟動1個端口;
 2、啟動 springms-provider-user 模塊服務,啟動3個端口(7900、7899、7898);
 3、啟動 springms-consumer-movie-ribbon 模塊服務,啟動1個端口;
 4、在瀏覽器輸入地址 http://localhost:7900/simple/1 可以看到信息成功的被打印出來,說明用戶微服務正常;
 5、在瀏覽器輸入地址 http://localhost:8761 并輸入用戶名密碼 admin/admin 進入Eureka微服務顯示在網頁中,驗證三個用戶微服務、1電影Ribbon微服務確實注冊到了 eureka 服務中;

 6、在瀏覽器輸入地址http://localhost:8010/movie/1 連續在瀏覽器回車6次;
 7、然后跑到用戶微服務的三臺服務器上查看 Hibernate 查詢用戶的 sql 日志,每臺用戶微服務的都被均勻的調用了 2 次用戶信息;

 總結:由此可見,啟動了3臺用戶微服務都注冊到eureka服務中心,然后通過Ribbon對電影微服務進行客戶端負載均衡調度,從而實現了客戶端負載均衡算法,默認調度算法為輪詢;
 ****************************************************************************************/
五、下載地址

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

SpringCloudTutorial交流QQ群: 235322432

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

歡迎關注,您的肯定是對我最大的支持!!!

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/70443.html

相關文章

  • SpringCloud 008 電影服務使用配置文件配置 Ribbon 戶端進行負載

    摘要:第篇電影微服務,使用配置文件配置在客戶端進行負載均衡調度算法一大致介紹通過配置來設置客戶端進行負載均衡的調度算法通過兩種代碼調用方式來測試客戶端負載均衡算法二實現步驟添加引用包模塊客戶端發現模塊 SpringCloud(第 008 篇)電影微服務,使用 application.yml 配置文件配置 Ribbon 在客戶端進行負載均衡調度算法 - 一、大致介紹 1、通過 applicat...

    wangjuntytl 評論0 收藏0
  • SpringCloud 011 電影Ribbon服務,脫離Eureka使用配置listOf

    摘要:第篇電影微服務,脫離使用配置進行客戶端負載均衡調度一大致介紹通過嘗試脫離服務治理框架,脫離生態圈,單獨操作客戶端負載均衡調度本章節僅僅只是使用了來測試客戶端負載均衡算法二實現步驟添加引用包模塊客 SpringCloud(第 011 篇)電影Ribbon微服務,脫離Eureka使用配置listOfServers進行客戶端負載均衡調度 - 一、大致介紹 1、通過嘗試脫離服務治理框架,脫離 ...

    newtrek 評論0 收藏0
  • SpringCloud 007 電影服務使用定制化 Ribbon 戶端進行負載均衡

    摘要:中的名稱,一定要是服務中注冊的名稱。添加這個的注解,主要是因為定義的時候報錯,也就是說明沒有被實例化。采用隨機分配的策略。添加訪問層添加電影微服務啟動類電影微服務,使用定制化在客戶端進行負載均衡,使用不同服務不同配置策略。 SpringCloud(第 007 篇)電影微服務,使用定制化 Ribbon 在客戶端進行負載均衡,使用 RibbonClient 不同服務不同配置策略 - 一、大...

    scola666 評論0 收藏0
  • SpringCloud 012 服務接入 Feign 負載均衡通過 FeignClient

    摘要:添加電影微服務啟動類電影微服務接入進行客戶端負載均衡,通過調用遠程微服務。注解表示該電影微服務已經接入模塊。 SpringCloud(第 012 篇)電影微服務接入 Feign 進行客戶端負載均衡,通過 FeignClient 調用遠程 Http 微服務 - 一、大致介紹 1、本章節主要介紹在 SpringCloud 生態圈中,使用一個類似于 Java HTTP 客戶端的工具 Feig...

    Cobub 評論0 收藏0
  • SpringCloud 014 電影 Ribbon 服務集成 Hystrix 斷路器實現失

    摘要:當服務宕機或者不可用時,即請求超時后會調用此方法。添加電影微服務啟動類電影微服務集成斷路器實現失敗快速響應,達到熔斷效果。 SpringCloud(第 014 篇)電影 Ribbon 微服務集成 Hystrix 斷路器實現失敗快速響應,達到熔斷效果 - 一、大致介紹 1、Hystrix 斷路器的原理很簡單,如同電力過載保護器。它可以實現快速失敗,如果它在一段時間內偵測到許多類似的錯誤,...

    StonePanda 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<