Feign組件默認(rèn)使用Ribbon的重試機(jī)制并增加了根據(jù)狀態(tài)碼判斷重試機(jī)制,默認(rèn)情況下是不啟用的。Feign使用的是Spring Retry組件,需要引入依賴才能啟用。
創(chuàng)新互聯(lián)專注于準(zhǔn)格爾網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供準(zhǔn)格爾營(yíng)銷型網(wǎng)站建設(shè),準(zhǔn)格爾網(wǎng)站制作、準(zhǔn)格爾網(wǎng)頁(yè)設(shè)計(jì)、準(zhǔn)格爾網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造準(zhǔn)格爾網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供準(zhǔn)格爾網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
org.springframework.retry
spring-retry
eureka-client:
ribbon:
MaxAutoRetries: 1
MaxAutoRetriesNextServer: 1
retryableStatusCodes: 500,404
OkToRetryOnAllOperations: true
NFLoadBalancerRuleClassName: com.netflix.loadbalancer.AvailabilityFilteringRule #負(fù)載均衡規(guī)則
eureka-client
是自己的serverId,MaxAutoRetries
同一臺(tái)服務(wù)器上的大重試次數(shù)(不包括第一次嘗試),MaxAutoRetriesNextServer
要重試的下一個(gè)服務(wù)器的大數(shù)量(不包括第一個(gè)服務(wù)器),retryableStatusCodes
可以根據(jù)接口返回的狀態(tài)碼判斷是否重試其他服務(wù),OkToRetryOnAllOperations
只對(duì)所有的超時(shí)請(qǐng)求重試
注意: Ribbon的重試機(jī)制只有對(duì)GET請(qǐng)求或者設(shè)置了OkToRetryOnAllOperations生效 詳情請(qǐng)查看源碼:
public class RibbonLoadBalancedRetryPolicy implements LoadBalancedRetryPolicy {
...
public Boolean canRetry(LoadBalancedRetryContext context) {
HttpMethod method = context.getRequest().getMethod();
return HttpMethod.GET == method || lbContext.isOkToRetryOnAllOperations();
}
...
}
Feign對(duì)返回狀態(tài)碼做了重試判斷RetryableFeignLoadBalancer
public class RetryableFeignLoadBalancer extends FeignLoadBalancer
implements ServiceInstanceChooser {
...
[@Override](https://my.oschina.net/u/1162528)
public RibbonResponse execute(final RibbonRequest request,
IClientConfig configOverride) throws IOException {
...
if (retryPolicy != null
&& retryPolicy.retryableStatusCode(response.status())) {
byte[] byteArray = response.body() == null ? new byte[] {}
: StreamUtils
.copyToByteArray(response.body().asInputStream());
response.close();
throw new RibbonResponseStatusCodeException(
RetryableFeignLoadBalancer.this.clientName, response,
byteArray, request.getUri());
}
...
}
...
}
重試機(jī)制用的是Spring Retry組件當(dāng)拋出異常時(shí)進(jìn)行重試!
GET請(qǐng)求指的是feign client 請(qǐng)求其他client時(shí)聲明的那個(gè)interface中mapping注解類型,RequestMapping不設(shè)置method默認(rèn)為GET請(qǐng)求
@FeignClient("stores")
public interface StoreClient {
@RequestMapping(method = RequestMethod.GET, value = "/stores")
List getStores();
@RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json")
Store update(@PathVariable("storeId") long storeId, Store store);
}
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國(guó)云服務(wù)器,動(dòng)態(tài)BGP最優(yōu)骨干路由自動(dòng)選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨(dú)有T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動(dòng)現(xiàn)已開啟,新人活動(dòng)云服務(wù)器買多久送多久。