我的GitHub地址:https://github.com/leebingbin/java
在使用Spring Cloud的過程當中,不免會遇到一些問題。因此對Spring Cloud的經常使用問題作一些總結。git
在某些版本的Spring Cloud (例如 Brixton SR5)中,Turbine 會發生該問題。該問題的直接觀體現是:
使用 Turbine 聚合多個微服務,但在 Hystrix Dashboard 上只能看到部分微服務的監控數據。github
現象描述:spring
好比 Turbine 配置以下:架構
turbine: appConfig:movieticketing-consumer-movie,movieticketing-consumer-movie-feign-hystrix-fallback-stream clusterNameExpression:"'default'"
Turbine 理應聚合 movieticketing-consumer-movie,movieticketing-consumer-movie-feign-hystrix-fallback-stream 這兩個微服務的監控數據,然而打開 Hystrix Dashboard 時,會發現Dashboard 上只顯示部分微服務的監控數據。app
解決方案:微服務
當 Turbine 聚合的微服務部署在同一臺主機上時,就會出現該問題。spa
解決方案一:.net
爲各個微服務配置不一樣的 hostname ,並將 preferIpAddress 設爲 false 或者不設置。code
eureka: client: serviceUrl: defaultZone:http://discovery:8761/eureka/ instance: hostname:ribbon # 配置hostname
解決方案二:
設置turbine.combine-host-port = true
turbine: appConfig:movieticketing-consumer-movie,movieticketing-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 。該解決方案和方法二本質是一致的。
Tips: 相關源碼位置
org.springframework.cloud.netflix.turbine.TurbineProperties.combine-HostPort org.springframework.cloud.netflix.turbine.CommonsInstanceDiscovery.getInstance(String, String, String, Boolean)
· 關於「Eureka常見問題」能夠參考,我以前的文章《微服務開發架構——Spring Cloud常見問題與總結<一>Eureka常見問題》:http://www.javashuo.com/article/p-fbmbfvua-w.html ;
· 關於「Hystrix/Feign 整合Hystrix後首次請求失敗」能夠參考,我以前的文章《微服務開發架構——Spring Cloud常見問題與總結<二>Hystrix/Feign 整合Hystrix後首次請求失敗》:http://www.javashuo.com/article/p-mkoycawh-en.html;
本文爲博主原創文章,轉載請註明出處!