java B2B2C源碼電子商城系統-Spring Cloud常見問題與總結(二)

在使用Spring Cloud的過程當中,不免會遇到一些問題。因此對Spring Cloud的經常使用問題作一些總結。須要JAVA Spring Cloud大型企業分佈式微服務雲構建的B2B2C電子商務平臺源碼 一零三八七七四六二六java

1、整合Hystrix後首次請求失敗spring

1.1 緣由分析bash

Hystrix 默認的超時時間是1秒,若是在1秒內得不到響應,就會進入 fallback 邏輯。因爲 Spring 的懶加載機制,首次請求每每會比較慢,所以在某些機器(特別是配置低的機器)上,首次請求須要的時間可能就會大於1秒。app

1.2 解決方案分佈式

有不少方式解決該問題,下面列舉幾種比較簡單的方案:微服務

1) 方法一:爲Ribbon配置飢餓加載。spa

ribbon:
  eager-load:
    enabled: true
    clients: client1,client2
複製代碼

對於Zuul:.net

zuul:
  ribbon:
    eager-load:
      enabled: true
複製代碼

2) 方法二:延長 Hystrix 的超時時間,示例以下code

hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds:5000blog

該配置讓 Hystrix 的超時時間改成5秒。

3) 方法三:禁用 Hystrix 的超時,示例以下

hystrix.command.default.execution.timeout.enabled: false

  1. 方法四:對於 Feign , 還能夠爲 Feign 禁用 Hystrix , 示例以下

feign.hystrix.enabled: false

這樣便可爲 Feign 全局禁用 Hystrix 支持。但該方式比較極端,通常不建議使用。

2、Turbine 聚合數據不完整

在某些版本的Spring Cloud (例如 Brixton SR5)中,Turbine 會發生該問題。該問題的直接觀體現是: 使用 Turbine 聚合多個微服務,但在 Hystrix Dashboard 上只能看到部分微服務的監控數據。

現象描述:

好比 Turbine 配置以下:

turbine:
  appConfig:cloud-consumer-movie,cloud-consumer-movie-feign-hystrix-fallback-stream
  clusterNameExpression:"'default'"
複製代碼

Turbine 理應聚合 cloud-consumer-movie,cloud-consumer-movie-feign-hystrix-fallback-stream 這兩個微服務的監控數據,然而打開 Hystrix Dashboard 時,會發現Dashboard 上只顯示部分微服務的監控數據。

解決方案:

當 Turbine 聚合的微服務部署在同一臺主機上時,就會出現該問題。

解決方案一:

爲各個微服務配置不一樣的 hostname ,並將 preferIpAddress 設爲 false 或者不設置。

eureka:
  client:
    serviceUrl:
	  defaultZone:http://127.0.0.1:8001/eureka/
  instance:
    hostname:ribbon # 配置hostname
複製代碼

解決方案二:

設置turbine.combine-host-port = true

turbine:
  appConfig: cloud-consumer-movie,cloud-consumer-movie-feign-hystrix-fallback-stream
  clusterNameExpression:"'default'"
  combine-host-port:true
複製代碼

方法三:

升級 Spring Cloud 到 Camden 或更新版本。固然,也可單獨升級 Spring Cloud Netflix 到 1.2.0以上最新穩定版(通常不建議單獨升級 Spring Cloud Netflix, 由於可能會跟 Spring Cloud 其餘組件衝突)。

這是由於老版本中的 turbine.combine-host-port 默認值是 false 。Spring Cloud 已經意識到該問題,故在新的版本中將該屬性的默認值設爲 true 。該解決方案和方法二本質是一致的。

相關代碼

org.springframework.cloud.netflix.turbine.TurbineProperties.combine-HostPort
 
org.springframework.cloud.netflix.turbine.CommonsInstanceDiscovery.getInstance(String, String, String, Boolean)
複製代碼

java B2B2C源碼電子商城系統

相關文章
相關標籤/搜索