在使用Spring Cloud的過程中,難免會遇到一些問題。所以對Spring Cloud的常用問題做一些總結。需要JAVA Spring Cloud大型企業分散式微服務雲構建的B2B2C電子商務平臺原始碼 一零三八七七四六二六
一、整合Hystrix後首次請求失敗
1.1 原因分析
Hystrix 預設的超時時間是1秒,如果在1秒內得不到響應,就會進入 fallback 邏輯。由於 Spring 的懶載入機制,首次請求往往會比較慢,因此在某些機器(特別是配置低的機器)上,首次請求需要的時間可能就會大於1秒。
1.2 解決方案
有很多方式解決該問題,下面列舉幾種比較簡單的方案:
1) 方法一:為Ribbon配置飢餓載入。
ribbon:
eager-load:
enabled: true
clients: client1,client2
複製程式碼
對於Zuul:
zuul:
ribbon:
eager-load:
enabled: true
複製程式碼
2) 方法二:延長 Hystrix 的超時時間,示例如下
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds:5000
該配置讓 Hystrix 的超時時間改為5秒。
3) 方法三:禁用 Hystrix 的超時,示例如下
hystrix.command.default.execution.timeout.enabled: false
- 方法四:對於 Feign , 還可以為 Feign 禁用 Hystrix , 示例如下
feign.hystrix.enabled: false
這樣即可為 Feign 全域性禁用 Hystrix 支援。但該方式比較極端,一般不建議使用。
二、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)
複製程式碼