您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了Springcloud如何實現服務多版本控制,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。
需求
小程序新版本上線需要審核,如果有接口新版本返回內容發生了變化,后端直接上線會導致舊版本報錯,不上線審核又通不過。
之前是通過寫新接口來兼容,但是這樣會有很多兼容代碼或者冗余代碼,開發也不容易能想到這一點,經常直接修改了舊接口,于是版本控制就成了迫切的需求。
思路
所有請求都是走的網關,很自然的就能想到在網關層實現版本控制。首先想到的是在ZuulFilter過濾器中實現,前端所有請求都在請求頭中增加一個version的header,然后進行匹配。但是這樣只能獲取到前端的版本,不能匹配選擇后端實例。
查詢資料后發現應該在負載均衡的時候實現版本控制。同樣是前端所有請求都在請求頭中增加一個version的header,后端實例都配置一個版本的tag。
實現
首先需要說明的是我選擇的控制中心是consul,網關是zuul。
負載均衡策略被抽象為IRule接口,項目默認情況下使用的IRule的子類ZoneAvoidanceRule extends PredicateBasedRule,我們需要實現一個PredicateBasedRule的子類來替換ZoneAvoidanceRule。
PredicateBasedRule需要實現一個過濾的方法我們就在這個方法里實現版本控制,過濾后就是默認的負載均衡策略了,默認是輪詢。
/** * Method that provides an instance of {@link AbstractServerPredicate} to be used by this class. * */ public abstract AbstractServerPredicate getPredicate();
VersionPredicate
我們可以看到PredicateBasedRule的getPredicate()方法需要返回一個AbstractServerPredicate實例,這個實例具體定義了版本控制的業務邏輯。代碼如下:
private static class VersionPredicate extends AbstractServerPredicate { private static final String VERSION_KEY = "version"; @Override public boolean apply(@NullableDecl PredicateKey predicateKey) { if (predicateKey == null) { return true; } RequestContext ctx = RequestContext.getCurrentContext(); HttpServletRequest request = ctx.getRequest(); String version = request.getHeader(VERSION_KEY); if (version == null) { return true; } ConsulServer consulServer = (ConsulServer) predicateKey.getServer(); if (!consulServer.getMetadata().containsKey(VERSION_KEY)) { return true; } return consulServer.getMetadata().get(VERSION_KEY).equals(version); } }
首先來了解下負載均衡的過程。一個請求到達網關后會解析出對應的服務名,然后會獲取到該服務的所有可用實例,之后就會調用我們的過濾方法過濾出該請求可用的所有服務實例,最后進行輪詢負載均衡。
PredicateKey類就是上層方法將可用實例Server和loadBalancerKey封裝后的類。版本控制的業務邏輯如下:
注意的點
最終實現如下:
/** * @author Yuicon */ @Slf4j public class VersionRule extends PredicateBasedRule { private final CompositePredicate predicate; public VersionRule() { super(); this.predicate = createCompositePredicate(new VersionPredicate(), new AvailabilityPredicate(this, null)); } @Override public AbstractServerPredicate getPredicate() { return this.predicate; } private CompositePredicate createCompositePredicate(VersionPredicate versionPredicate, AvailabilityPredicate availabilityPredicate) { return CompositePredicate.withPredicates(versionPredicate, availabilityPredicate) .build(); } private static class VersionPredicate extends AbstractServerPredicate { private static final String VERSION_KEY = "version"; @Override public boolean apply(@NullableDecl PredicateKey predicateKey) { if (predicateKey == null) { return true; } RequestContext ctx = RequestContext.getCurrentContext(); HttpServletRequest request = ctx.getRequest(); String version = request.getHeader(VERSION_KEY); if (version == null) { return true; } ConsulServer consulServer = (ConsulServer) predicateKey.getServer(); if (!consulServer.getMetadata().containsKey(VERSION_KEY)) { return true; } log.info("id is {}, header is {}, metadata is {}, result is {}", consulServer.getMetaInfo().getInstanceId(), version, consulServer.getMetadata().get(VERSION_KEY), consulServer.getMetadata().get(VERSION_KEY).equals(version)); return consulServer.getMetadata().get(VERSION_KEY).equals(version); } } }
原本我是加上@Component注解后在本地直接測試通過了。可是在更新到生產服務器后卻出現大部分請求都找不到的服務實例的錯誤,搞的我一頭霧水,趕緊回滾到原來的版本。
查詢了很多資料后才找到一篇文章,發現需要一個Config類來聲明替換原有的負載均衡策略類。代碼如下:
@RibbonClients(defaultConfiguration = RibbonGatewayConfig.class) @Configuration public class RibbonGatewayConfig { @Bean public IRule versionRule() { return new VersionRule(); } }
到此為止版本控制算是實現成功了。
結尾
在實際使用過程中發現還是有很多問題。比如前端版本號是全局唯一的,當其中一個服務升級了版本號,就需要將所有服務都升級到該版本號,即使代碼沒有任何更改。比較好的解決方案是前端根據不同服務傳遞不同的版本號,不過前端反饋實現困難。
還有個妥協的方案,就是利用配置中心來對具體服務是否開啟版本控制進行配置,因為現在的需求只是一小段時間里需要版本控制,小程序審核過后就可以把舊服務實例關了。大家如果有更好的方案歡迎討論。
以上就是關于Springcloud如何實現服務多版本控制的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。