真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

微服務(wù)架構(gòu)的高并發(fā)問題有哪些

這篇文章主要介紹“微服務(wù)架構(gòu)的高并發(fā)問題有哪些”,在日常操作中,相信很多人在微服務(wù)架構(gòu)的高并發(fā)問題有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”微服務(wù)架構(gòu)的高并發(fā)問題有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

創(chuàng)新互聯(lián)建站從2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目網(wǎng)站制作、網(wǎng)站建設(shè)網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元葫蘆島做網(wǎng)站,已為上家服務(wù),為葫蘆島各地企業(yè)和個人服務(wù),聯(lián)系電話:028-86922220

1 準(zhǔn)備環(huán)境

1.1 準(zhǔn)備商品微服務(wù)和訂單微服務(wù)

  • 其中商品微服務(wù)的findById()方法設(shè)置休眠2秒,用來模擬網(wǎng)絡(luò)波動等情況:

package com.sunxiaping.product.controller;

import com.sunxiaping.product.domain.Product;
import com.sunxiaping.product.service.ProductService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.*;

@RestController
@RequestMapping(value = "/product")
public class ProductController {

    @Autowired
    private ProductService productService;

    @Value("${server.port}")
    private String port;

    @Value("${spring.cloud.client.ip-address}")
    private String ip;


    @PostMapping(value = "/save")
    public String save(@RequestBody Product product) {
        productService.save(product);
        return "新增成功";
    }

    @GetMapping(value = "/findById/{id}")
    public Product findById(@PathVariable(value = "id") Long id) {
        
        try {
            //休眠2秒,用來模擬 網(wǎng)絡(luò)波動等情況
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        Product product = productService.findById(id);
        product.setProductName("訪問的地址是:" + ip + ":" + port);
        return product;
    }
}
  • 設(shè)置訂單微服務(wù)的Tomcat的最大線程數(shù)是10:

server:
  port: 9002 # 微服務(wù)的端口號
  tomcat:
    max-threads: 10 # 最大線程數(shù)是10

spring:
  application:
    name: service-order # 微服務(wù)的名稱
  datasource:
    url: jdbc:MySQL://192.168.1.57:3306/test?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true
    driver-class-name: com.mysql.cj.jdbc.Driver
    username: root
    password: 123456
  jpa:
    generate-ddl: true
    show-sql: true
    open-in-view: true
    database: mysql
  jmx:
    unique-names: true


# 配置Eureka
eureka:
  instance:
    # 實例的名稱
    instance-id: service-order:9002
    # 顯示IP信息
    prefer-ip-address: true
    lease-renewal-interval-in-seconds: 5 # 發(fā)送心跳續(xù)約間隔(默認(rèn)30秒)
    lease-expiration-duration-in-seconds: 10 # Eureka Client發(fā)送心跳給Eureka Server端后,續(xù)約到期時間(默認(rèn)90秒)
  client:
    healthcheck:
      enabled: true
    service-url: # Eureka Server的地址
      #      defaultZone: http://localhost:9000/eureka/
      defaultZone:  http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/

# Ribbon的重試機制
service-product:
  ribbon:
    #    修改ribbon的負(fù)載均衡策略 服務(wù)名 - ribbon - NFLoadBalancerRuleClassName :負(fù)載均衡策略
    #    NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRule # 修改ribbon的負(fù)載均衡策略為權(quán)重策略
    # Ribbon的重試機制參數(shù)
    ConnectTimeout: 250 # Ribbon的連接超時時間
    ReadTimeout: 1000 # Ribbon的數(shù)據(jù)讀取超時時間
    OkToRetryOnAllOperations: true # 是否對所有操作都進(jìn)行重試
    MaxAutoRetriesNextServer: 50 # 切換實例的重試次數(shù)
    MaxAutoRetries: 1 # 對當(dāng)前實例的重試次數(shù)

# 微服務(wù)info內(nèi)容詳細(xì)信息
info:
  app.name: xxx
  company.name: xxx
  build.artifactId: $project.artifactId$
  build.version: $project.version$

# 開啟日志debug
logging:
  level:
    root: info
  • 訂單微服務(wù)中的SpringConfig.java

package com.sunxiaping.order.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;

@Configuration
public class SpringConfig {

    @Bean
//    @LoadBalanced
    public RestTemplate restTemplate() {
        return new RestTemplate();
    }
}
  • 訂單微服務(wù)的OrderController.java

package com.sunxiaping.order.controller;


import com.sunxiaping.order.domain.Product;
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.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

@RestController
@RequestMapping(value = "/order")
public class OrderController {
    @Autowired
    private RestTemplate restTemplate;


    /**
     * @param id
     * @return
     */
    @GetMapping(value = "/buy/{id}")
    public Product buy(@PathVariable(value = "id") Long id) {
        Product product = restTemplate.getForObject("http://localhost:9001/product/findById/" + id, Product.class);
        return product;
    }

    @GetMapping(value = "/findOrder")
    public String findOrder() {
        return "商品查詢到了";
    }
}

2 使用Jmeter測試接口

  • 使用JMeter性能測試工具以50個線程每個線程循環(huán)50次測試:http://localhost:9002/order/buy/1接口,然后通過瀏覽器調(diào)用http://localhost:9002/order/findOrder接口,發(fā)現(xiàn)特別慢。

微服務(wù)架構(gòu)的高并發(fā)問題有哪些

3 系統(tǒng)負(fù)載過高存在的問題

3.1 問題分析

  • 在微服務(wù)架構(gòu)中,我們將業(yè)務(wù)拆成一個個的服務(wù),服務(wù)和服務(wù)之間可以相互調(diào)用,由于網(wǎng)絡(luò)原因或者自身的原因,服務(wù)并不能保證100%可用,如果單個服務(wù)出現(xiàn)問題,調(diào)用這個服務(wù)就會出現(xiàn)網(wǎng)絡(luò)延遲,此時如果有大量的網(wǎng)絡(luò)請求涌入,會形成任務(wù)累計,導(dǎo)致服務(wù)癱瘓。

  • 換句話說,Tomcat等容器會以線程池的方式對所有的請求進(jìn)行統(tǒng)一的管理,如果某個方法可能存著耗時問題,隨著外面積壓的請求越來越多,勢必會造成系統(tǒng)的崩潰、癱瘓等。

微服務(wù)架構(gòu)的高并發(fā)問題有哪些

  • 為了不影響其他接口的正常訪問:對多個服務(wù)之間進(jìn)行隔離。

  • 服務(wù)隔離的方式:

    微服務(wù)架構(gòu)的高并發(fā)問題有哪些

    • :two:信號量隔離(計數(shù)器,就是對某個方法進(jìn)行設(shè)置閾值,如果超過了閾值,直接報錯)。

    • :one:線程池隔離。

4 線程池隔離的方式處理積壓問題

4.1 在訂單微服務(wù)中引入相關(guān)jar包的Maven坐標(biāo)


    com.netflix.hystrix
    hystrix-metrics-event-stream
    1.5.12


    com.netflix.hystrix
    hystrix-javanica
    1.5.12

4.2 配置線程池

  • 配置HystrixCommand接口的實現(xiàn)類,在實現(xiàn)類中可以對線程池進(jìn)行配置:

package com.sunxiaping.order.command;

import com.netflix.hystrix.*;
import com.sunxiaping.order.domain.Product;
import org.springframework.web.client.RestTemplate;

public class OrderCommand extends HystrixCommand {

    private RestTemplate restTemplate;

    private Long id;

    public OrderCommand(RestTemplate restTemplate, Long id) {
        super(setter());
        this.restTemplate = restTemplate;
        this.id = id;
    }

    private static Setter setter() {

        // 服務(wù)分組
        HystrixCommandGroupKey groupKey = HystrixCommandGroupKey.Factory.asKey("order_product");
        // 服務(wù)標(biāo)識
        HystrixCommandKey commandKey = HystrixCommandKey.Factory.asKey("product");
        // 線程池名稱
        HystrixThreadPoolKey threadPoolKey = HystrixThreadPoolKey.Factory.asKey("order_product_pool");
        /**
         * 線程池配置
         *     withCoreSize :  線程池大小為10
         *     withKeepAliveTimeMinutes:  線程存活時間15秒
         *     withQueueSizeRejectionThreshold  :隊列等待的閾值為100,超過100執(zhí)行拒絕策略
         */
        HystrixThreadPoolProperties.Setter threadPoolProperties = HystrixThreadPoolProperties.Setter().withCoreSize(50)
                .withKeepAliveTimeMinutes(15).withQueueSizeRejectionThreshold(100);

        // 命令屬性配置Hystrix 開啟超時
        HystrixCommandProperties.Setter commandProperties = HystrixCommandProperties.Setter()
                // 采用線程池方式實現(xiàn)服務(wù)隔離
                .withExecutionIsolationStrategy(HystrixCommandProperties.ExecutionIsolationStrategy.THREAD)
                // 禁止
                .withExecutionTimeoutEnabled(false);
        return Setter.withGroupKey(groupKey).andCommandKey(commandKey).andThreadPoolKey(threadPoolKey)
                .andThreadPoolPropertiesDefaults(threadPoolProperties).andCommandPropertiesDefaults(commandProperties);

    }

    @Override
    protected Product run() throws Exception {
        System.out.println(Thread.currentThread().getName());
        return restTemplate.getForObject("http://localhost:9001/product/findById/" + id, Product.class);
    }

    /**
     * 服務(wù)降級
     *
     * @return
     */
    @Override
    protected Product getFallback() {
        Product product = new Product();
        product.setProductName("不好意思,出錯了");
        return product;
    }
}

4.3 修改Controller

package com.sunxiaping.order.controller;


import com.sunxiaping.order.command.OrderCommand;
import com.sunxiaping.order.domain.Product;
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.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

@RestController
@RequestMapping(value = "/order")
public class OrderController {
    @Autowired
    private RestTemplate restTemplate;


    /**
     * 使用OrderCommand調(diào)用遠(yuǎn)程遠(yuǎn)程服務(wù)
     *
     * @param id
     * @return
     */
    @GetMapping(value = "/buy/{id}")
    public Product buy(@PathVariable(value = "id") Long id) {
        return new OrderCommand(restTemplate, id).execute();
    }

    @GetMapping(value = "/findOrder")
    public String findOrder() {
        System.out.println(Thread.currentThread().getName());
        return "商品查詢到了";
    }
}

到此,關(guān)于“微服務(wù)架構(gòu)的高并發(fā)問題有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
分享名稱:微服務(wù)架構(gòu)的高并發(fā)問題有哪些
本文來源:http://weahome.cn/article/pdhesj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部