HystrixTimeout设置小记

源码如下,看完包会

protected static HystrixCommandProperties.Setter createSetter(IClientConfig config,
			String commandKey, ZuulProperties zuulProperties) {
	//获取HystrixTimeout,设置HystrixCommand的Setter
	int hystrixTimeout = getHystrixTimeout(config, commandKey);
	return HystrixCommandProperties.Setter()
			.withExecutionIsolationStrategy(
					zuulProperties.getRibbonIsolationStrategy())
			.withExecutionTimeoutInMilliseconds(hystrixTimeout);
}

protected static int getHystrixTimeout(IClientConfig config, String commandKey) {
	int ribbonTimeout = getRibbonTimeout(config, commandKey);
	DynamicPropertyFactory dynamicPropertyFactory = DynamicPropertyFactory
			.getInstance();
	int defaultHystrixTimeout = dynamicPropertyFactory.getIntProperty(
			"hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds",
			0).get();
	int commandHystrixTimeout = dynamicPropertyFactory
			.getIntProperty("hystrix.command." + commandKey
					+ ".execution.isolation.thread.timeoutInMilliseconds", 0)
			.get();
	int hystrixTimeout;
	if (commandHystrixTimeout > 0) {
		hystrixTimeout = commandHystrixTimeout;
	}
	else if (defaultHystrixTimeout > 0) {
		hystrixTimeout = defaultHystrixTimeout;
	}
	else {
		hystrixTimeout = ribbonTimeout;
	}
	if (hystrixTimeout < ribbonTimeout) {
		LOGGER.warn("The Hystrix timeout of " + hystrixTimeout + "ms for the command "
				+ commandKey
				+ " is set lower than the combination of the Ribbon read and connect timeout, "
				+ ribbonTimeout + "ms.");
	}
	return hystrixTimeout;
}

protected static int getRibbonTimeout(IClientConfig config, String commandKey) {
	int ribbonTimeout;
	if (config == null) {
		ribbonTimeout = RibbonClientConfiguration.DEFAULT_READ_TIMEOUT
				+ RibbonClientConfiguration.DEFAULT_CONNECT_TIMEOUT;
	}
	else {
		int ribbonReadTimeout = getTimeout(config, commandKey, "ReadTimeout",
				IClientConfigKey.Keys.ReadTimeout,
				//默认1000
				RibbonClientConfiguration.DEFAULT_READ_TIMEOUT);
		int ribbonConnectTimeout = getTimeout(config, commandKey, "ConnectTimeout",
				IClientConfigKey.Keys.ConnectTimeout,
				//默认1000
				RibbonClientConfiguration.DEFAULT_CONNECT_TIMEOUT);
		int maxAutoRetries = getTimeout(config, commandKey, "MaxAutoRetries",
				IClientConfigKey.Keys.MaxAutoRetries,
				//默认0
				DefaultClientConfigImpl.DEFAULT_MAX_AUTO_RETRIES);
		int maxAutoRetriesNextServer = getTimeout(config, commandKey,
				"MaxAutoRetriesNextServer",
				IClientConfigKey.Keys.MaxAutoRetriesNextServer,
				//默认1
				DefaultClientConfigImpl.DEFAULT_MAX_AUTO_RETRIES_NEXT_SERVER);
		ribbonTimeout = (ribbonReadTimeout + ribbonConnectTimeout)
				* (maxAutoRetries + 1) * (maxAutoRetriesNextServer + 1);
	}
	return ribbonTimeout;
}

private static int getTimeout(IClientConfig config, String commandKey,
		String property, IClientConfigKey<Integer> configKey, int defaultValue) {
	DynamicPropertyFactory dynamicPropertyFactory = DynamicPropertyFactory
			.getInstance();
	return dynamicPropertyFactory
			.getIntProperty(commandKey + "." + config.getNameSpace() + "." + property,
					config.get(configKey, defaultValue))
			.get();
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值