深入理解Mysql 超时配置项

Posted 肥肥技术宅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了深入理解Mysql 超时配置项相关的知识,希望对你有一定的参考价值。

1 JDDB超时

JDBC 是 Java 应用程序中用于访问数据库的一套标准 API

类型4驱动是通过socket来处理字节流的。如果socket超时设置不合适,类型4驱动也可能有同样的错误(连接被阻塞)。

1.2 JDBC超时层次

应用程序WAS与数据库间的超时的层次

更上层的超时依赖于下层的超时,只有当较低层的超时机制正常工作,上层的超时才会正常。

1.2.1 事务超时

事务超时是在框架(Spring、EJB容器)或应用程序层面上才有效的超时。 在 Spring 中,事务超时可以 XML文件配置或在 Java 代码中用 Transactional 注解来配置。

Spring 中数据库连接被保存在线程本地变量(ThreadLocal)中,这被称作事务同步(Transaction Synchronization)。当数据库连接被保存到 ThreadLocal 时,同时会记录事务的开始时间和超时时间。所以通过数据库连接的代理创建的 Statement 在执行时就会校验这个时间。

1.2.2 Statement 超时

Statement 超时是用来限制 Statement 的执行时间的,它的具体值是通过 JDBC API 来设置的。JDBC 驱动程序基于这个值进行 Statement 执行时的超时处理。Statement 超时是通过 JDBC API 中java.sql.Statement 类的 setQueryTimeout(int timeout) 方法配置的。不过现在更多是通过框架来进行设置。

以 iBatis 为例,可以通过 SqlMapConfig.xml 中的 settings 属性defaultStatementTimeout 来设置全局的statement超时缺省值。

也可以通过在具体的 sql 映射文件中的 select insert update 标签的 timeout 属性来覆盖。

JDBC的statement timeout处理过程

每个数据库和驱动程序的Statement超时的处理也是不同的。mysql (5.0.8) 中的 Statement 超时处理如下:

  • 调用 Connection 的 createStatement() 方法创建一个 Statement 对象

  • 调用 Statement 的 executeQuery() 方法

  • Statement 通过内部的 Connection 将查询命令传输到 MySqlServer 数据库

  • Statement 创建一个新的超时执行线程(timeout-execution)来处理超时

  • 5.1以上版本改为每个连接分配一个线程

  • 向timeout-execution 线程注册当前的 Statement

  • 发生超时

  • timeout-execution 线程创建一个相同配置的 Connection

  • 用新创建的 Connection 发送取消查询的命令

1.2.3 JDBC的socket timeout

Socket超时可以通过 JDBC 驱动程序配置。通过设置 Socket 超时,可以防止出现网络错误时一直等待的情况并缩短故障时间。 Socket 超时的值必须要高于 Statement 的超时时间,否则Socket超时将会先生效。

  • Socket 连接时的超时:通过 Socket 对象的 connect(SocketAddress endpoint, int timeout) 方法来配置

  • Socket 读写时的超时:通过 Socket 对象的 setSoTimeout(int timeout) 方法来配置

MySQL驱动的socket timeout配置方式

  • 连接超时配置 :connectTimeout(默认值:0,单位:ms)
  • Socket超时配置: socketTimeout(默认值:0,单位:ms)

示例: jdbc:mysql://xxx.xx.xxx.xxx:3306/database?connectTimeout=60000&socketTimeout=60000

也可以通过属性进行配置,而无需直接使用 DBCP 的 API 。

1.2.4 操作系统Socket超时

操作系统同样能够对socket timeout进行配置。 通常,应用会在调用Socket.read()时由于网络问题被阻塞住,而很少在调用Socket.write()时进入waiting状态。如果系统内核缓冲区由于某种网络错误而满了的话,Socket.write()也会进入waiting状态。这种情况下,操作系统会尝试重新发包,当达到重试的时间限制时,将产生系统错误。

2 Mysql服务器超时配置

mysql> show variables like '%timeout%';
+-----------------------------+----------+
| Variable_name               | Value    |
+-----------------------------+----------+
| connect_timeout             | 10       |
| delayed_insert_timeout      | 300      |
| innodb_flush_log_at_timeout | 1        |
| innodb_lock_wait_timeout    | 50       |
| innodb_rollback_on_timeout  | OFF      |
| interactive_timeout         | 28800    |
| lock_wait_timeout           | 31536000 |
| net_read_timeout            | 30       |
| net_write_timeout           | 60       |
| rpl_stop_slave_timeout      | 31536000 |
| slave_net_timeout           | 3600     |
| wait_timeout                | 28800    |
+-----------------------------+----------+
复制代码

2.1 connect_timeout

connect_timeout指的是连接过程中握手的超时时间,在5.0.52以后默认为10秒,之前版本默认是5秒。官方文档是这样说的:

connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake. The default value is 10 seconds as of MySQL 5.0.52 and 5 seconds before that

connect timeout就是tcp连接超时 其中又分两种,一种是超过了自己设置的连接超时时间 一种是tcp层面连接sync包报文达到了重试次数报的超时, 两种超时错误提示信息是不一样的。

2.2  interactive_timeout & wait_timeout

wait_timeout和interactive_timeout都是指不活跃的连接超时时间,连接线程启动的时候wait_timeout会根据是交互模式还是非交互模式被设置为这两个值中的一个。 如果我们运行mysql -uroot -p命令登陆到mysql,wait_timeout就会被设置为interactive_timeout的值

2.3 net_read_timeout & net_write_timeout

net_read_timeout和net_write_timeout这个参数只对TCP/IP链接有效,分别是数据库等待接收客户端发送网络包和发送网络包给客户端的超时时间

The number of seconds to wait for more data from a connection before aborting the read. When the server is reading from the client, net_read_timeout is the timeout value controlling when to abort. When the server is writing to the client, net_write_timeout is the timeout value controlling when to abort

这两个参数控制由于网络原因造成的异常超时。比如server在从client端读取大量的数据,读着读着突然发现读不到了,也没有遇到结束标识符,这种情况下,server在等待net_read_timeout秒还没读到后续数据,就断开连接;或者当server select出了大量数据发向客户端,发着发着,突然发现发不动了,客户端不接收了,而数据还没有发送完,这时server在等待net_write_timeout秒后就断开连接。

是mysql应用层的协议,而tcp的写超时只有在丢包次数过多才会。

3 Mysql客户端

示例

jdbc:mysql://192.168.1.8:3306/mytest?serverTimezone=GMT%2B8&autoReconnect=true&allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&connectTimeout=60000&socketTimeout=60000
复制代码

connectTimeout

建立链接需要的时间。该参数只在建立链接阶段生效。默认是0,不超时。建议配置connectTimeout=60000,单位毫秒。

socketTimeout

发送请求给数据库(建立链接后),数据库处理的最大时间;默认是0,不超时。建议配置socketTimeout=60000,单位毫秒。

超过这个客户端报超时超时异常Caused by: java.net.SocketTimeoutException: Read timed out

autoReconnect

是否自动重连。默认false。mysql服务端参数wait_timeout,其默认值为 28800秒(8小时),其意义为如果一个连接闲置超过这个选项所设置的秒数,MySQL会主动断开这个连接。如果无法保证应用程序在设定的秒数内至少有一次操作,添加autoReconnect=true这个参数,即能解决这个问题。

maxReconnects

autoReconnect设置为true时,重试连接的次数,默认3。

initialTimeout

autoReconnect设置为true时,两次重连之间的时间间隔,默认2,单位:秒

4 Mysql连接池配置

4.1 Druid连接池配置

DruidDataSource参考配置 github.com/alibaba/dru…

4.1.1 连接池的初始值、最大值、最小值

initialSize: 5
minIdle: 6
maxActive: 10
复制代码

项目启动时,会自动初始化initialSize个连接出来(没有流量访问数据库也会创建),这几个链接会一直存在。可以通过数据库命令SHOW PROCESSLIST查看初始化的链接。

4.1.2 获取连接的等待时间

maxWait: 6000
复制代码

获取连接池中的连接时的最大等待时间,单位是毫秒。
如果这个时间内未获得可用链接则报错:nested exception is com.alibaba.druid.pool.GetConnectionTimeoutException: wait millis 6000, active 10, maxActive 10, creating 0。这个报错表明获取链接超时了,而且数据库的10个链接都被占用,也不能创建新的链接了。

4.1.3 回收连接池中的链接

timeBetweenEvictionRunsMillis: 2000
minEvictableIdleTimeMillis: 10000
复制代码

每隔timeBetweenEvictionRunsMillis: 2000ms对连接池的连接做一次检查, 如果有连接空闲时间超过minEvictableIdleTimeMillis: 10000ms就回收该链接。

4.1.4 校验链接池中的链接是否有效

validationQuery: SELECT 1
testWhileIdle: true
testOnBorrow: false
testOnReturn: false
validationQueryTimeout:10    
复制代码

校验的方式:使用待校验的连接在在数据库上执行一下校验的sql,这里使用SELECT 1,一定要保证改sql是该数据能执行的,不同的数据库的校验sql可能不一样。

校验的时机: 通常是在连接空闲时校验(testWhileIdle: true),
也可以在获取连接时校验(testOnBorrow: true,这个配置会降低性能),
也可以在归还连接到连接池时校验(testOnReturn: true,这个配置会降低性能)。

validationQueryTimeout是检测连接是否有效的超时时间,单位:秒。

如果validationQuery为null,testOnBorrow、testOnReturn、testWhileIdle都不会起作用。

4.1 HikariCP配置

4.2.1 连接池的最大值、最小值

maximumPoolSize: 池中最大连接数,包括闲置和使用中的连接。默认为 10。如果 maxPoolSize 小于1,则会被重置。当 minIdle <=0 被重置为DEFAULT_POOL_SIZE 则为 10;如果 minIdle > 0 则重置为 minIdle 的值。

minimumIdle: 控制连接池空闲连接的最小数量,当连接池空闲连接少于 minimumIdle,而且总共连接数不大于 maximumPoolSize 时,HikariCP 会尽力补充新的连接。为了性能考虑,不建议设置此值,而是让 HikariCP 把连接池当做固定大小的处理,默认 minimumIdle 与 maximumPoolSize 一样。当 minIdle < 0 或者 minIdle > maxPoolSize,则被重置为 maxPoolSize,该值默认为 10。

4.2.2 获取连接的等待时间

connectionTimeout: 等待来自池的连接的最大毫秒数,默认为 30000 ms = 30 s,允许最小时间是 250 毫秒,如果小于 250 毫秒,则被重置回 30 秒。

4.2.3 超时时间

idleTimeout: 连接允许在池中闲置的最长时间。
如果 idleTimeout + 1 秒 > maxLifetime 且 maxLifetime > 0,则会被重置为 0(代表永远不会退出);只有当 minimumIdle 小于 maximumPoolSize 时,这个参数才生效,当空闲连接数超过 minimumIdle,而且空闲时间超过 idleTimeout,则会被移除。

这是hikaricp用来判断是否应该从连接池移除空闲连接的一个重要的配置。负责剔除的也还是HouseKeeper这个定时任务,值为0时,HouseKeeper不会移除空闲连接,直到到达maxLifetime后,才会移除,默认值也就是0。

maxLifetime

池中连接最长生命周期。默认为 1800000, 30 分钟。 Mysql 为了防止空闲连接浪费,占用资源,在超过wait_timeout 时间后,会主动关闭该连接,清理资源。 但是hikaricp如何知道池子里维护的一把连接,有没有被mysql回收呢?所以就有了maxLifetime这个配置,官方也强烈建议必须按需设置此值!自然这个值也应该小于mysql的wait_timeout。 那hikaricp在空闲连接超过maxLifetime,就会从连接池中剔除,防止业务进程取到了已关闭的连接,导致业务受损。

keepaliveTime & connectionTestQuery

keepaliveTime类比tcp的keepAlive机制。为了防止获取到被mysql关闭的无效连接,导致业务出错的一种兜底扫描方案。

具体过程就是每隔keepaliveTime时间间隔,去和数据库发送心跳,来探测连接是否有效。如果发现是无效的,就会及时从连接池中剔除,来保证业务进程获取到的都是有效连接。

如果配置了connectionTestQuery ,如 select 1, 心跳检查过程就会调用connectionTestQuery。

所以如果你配置了connectionTestQuery 但是没有配置keepaliveTime ,是没有用的,因为默认是关闭的。

connectionTestQuery 配置项,官方建议如果驱动支持JDBC4,不要设置此属性!

因为相比于通过select查询方式探活,mysql 自带的ping命令 性能更高(直接在sql server返回结果,就不会做语法解析,执行优化,再通过存储引擎操作)。 而基本上java mysql驱动包5以上的版本都支持JDBC4。

深入理解feignribbon和hystrix三者的关系及超时配置[转]

spring cloud中有几个重要的组件,深入理解它们之间的关系才能更好的使用它们:

  • ribbon:实现服务定位和客户端负载均衡;

  • hystrix:实现服务熔断、服务降级、资源隔离等;

  • feign:声明式的http客户端,用于服务之间的http调用。相比于resttemplate,feign与ribbon和hystrix集成更友好,是spring cloud的顶层组件。

上述ribbon和hystrix都是netflix贡献组件,目前它们都处于维护模式,不再增加新特性,将逐渐被spring cloud官方组件取代,例如从Hoxton.M2开始整合spring-cloud-loadbalancer用于替换ribbon,但目前还不成熟,还是老老实实用ribbon,而断路器方面spring cloud抽象了Spring Cloud Circuit Breaker,hystrix只是其中一个实现,还有其他实现可选,例如阿里贡献的sentinel。

三者关系

hystrix和ribbon并没有直接关系。

feign底层默认是通过ribbon进行服务定位和负载均衡,使用feign时你感知不到ribbon的存在,也可以不使用ribbon。如果你使用resttemplate,则需要通过@LoadBalanced使用ribbon。

hystrix有两种使用情况,一种是在controller的handler方法上增加@HystrixCommand注解,作用的是整个handler;另一种情况是调用其他app服务时,也就是@feignclient注解的http客户端,此时调用这个http客户端的handler可不需要hystrix。

总结一下:服务之间的http调用可通过feign实现,feign底层是通过ribbon实现服务发现和负载均衡,不管是否使用feign,ribbon都是必不可少的;feign客户端可选的可启用hystrix支持,hystrix也可以用在服务端整个handler上。

如上所示,app1.controll1.handler1调用app2.controller2.handler2的过程是:

  1. 如果feign.hystrix.enabled=true(默认为false),则feign通过jdk动态代理,将调用封装为HystrixCommand,在hystrix thread pool中执行,否则进入3和4;

  2. hystrix thread pool中执行http调用,还是回调feign接口;

  3. feign扩展了ribbon客户端,使用ribbon的服务定位和负载均衡获得可用服务;

  4. feign扩展的ribbon客户端发起对app2.controller2.handler2的http请求,ribbon可以开启重试,如果请求超时则自动重试。

了解上述关系对于如何设置超时时间至关重要。如果hystrix的超时时间到达,则1就返回fallback了,不会等到4执行完。一般hystrix的超时时间要大于feign的超时时间。

另外上述服务端设置了断路器,实际上客户端可以不用设置。

超时相关配置

feign

官方参考

有两种配置方式:

  1. 属性配置,包括全局和实例;

  2. 代码配置,也包括全局和实例。

优先级:实例>全局,属性>代码

属性总是优先的,可以设置feign.client.default-to-properties为false,使得代码配置优先。

全局属性配置名默认是default,可以设置feign.client.default-config为其他名字。

属性配置

1
2
3
4
5
6
7
8
9
10
11
12
13
feign:
hystrix:
enabled: true
client:
config:
# 全局配置
default:
connectTimeout: 5000
readTimeout: 5000
# 实例配置,feignName即@feignclient中的value,也就是服务名
feignName:
connectTimeout: 5000
readTimeout: 5000

代码配置

全局代码配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.example.microservice2;

import org.springframework.cloud.openfeign.support.SpringMvcContract;
import org.springframework.context.annotation.Bean;
import feign.Request;
import feign.Retryer;

public class FeignClientConfiguration {
@Bean
public Request.Options feignRequestOptions() {
// 默认连接超时10秒,读取超时60秒
return new Request.Options();
}

// 默认重试是关闭的
@Bean
public Retryer feignRetry() {
// 默认重试5次,首次间隔100毫秒,最大间隔1秒
return new Retryer.Default();
}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.example.microservice2;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableDiscoveryClient //开启注册服务
@EnableFeignClients(defaultConfiguration = FeignClientConfiguration.class) //开启feign消费服务
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}

实例代码配置
1
2
3
4
5
6
7
8
9
10
11
12
package com.example.microservice2;

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;

@FeignClient(value = "microservice1", fallback = HelloServiceHystric.class, configuration = FeignClientConfiguration.class) // 访问微服务1,指定断路器类
public interface HelloService {
@RequestMapping(value = "/hello", method = RequestMethod.GET)
String hello(@RequestParam(value = "name") String name);
}

hystrix

官方参考

hystrix有四种配置方式:

  1. 全局代码默认属性;

  2. 全局属性配置;

  3. 实例代码配置;

  4. 实例属性配置。

优先级:1<2<3<4

和feign一样,也是属性优先代码,实例优先全局。

属性配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
hystrix:
command:
#全局默认配置
default:
#线程隔离相关
execution:
timeout:
#是否给方法执行设置超时时间,默认为true。一般我们不要改。
enabled: true
isolation:
#配置请求隔离的方式,这里是默认的线程池方式。还有一种信号量的方式semaphore。
strategy: THREAD
thread:
#方式执行的超时时间,默认为1000毫秒,在实际场景中需要根据情况设置
timeoutInMilliseconds: 10000
# 实例配置
HystrixCommandKey:
execution:
timeout:
enabled: true
isolation:
strategy: THREAD
thread:
timeoutInMilliseconds: 10000

代码配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

@RefreshScope // 开启配置更新
@RestController
@Slf4j
public class HelloController {
@Value("${serviceName}") // 读配置文件的这个属性
private String serviceName;

@RequestMapping("/hello")
@HystrixCommand(fallbackMethod = "helloError", commandProperties = {
@HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "4000") }) // 指定断路器方法,断路器监控用
public String hello(HttpServletRequest request, @RequestParam(value = "name", defaultValue = "Hugo") String name)
throws InterruptedException {
log.info("ServerName:{} time:{}", request.getServerName(),
DateFormatUtils.format(new Date(), "yyyyMMdd HH:mm:ss"));
TimeUnit.SECONDS.sleep(4);
return "hello " + name + ", my name is " + serviceName;
}

public String helloError(HttpServletRequest request, String name) {
return "microservice1 hystrix," + name + "!";
}
}

feign中的hystrix怎么配置

只能通过属性设置,那么commandkey是什么呢?

1
2
3
4
5
6
7

package com.example.microservice2;


@FeignClient(value = "microservice1", fallback = HelloServiceHystric.class, configuration = FeignClientConfiguration.class) // 访问微服务1,指定断路器类
public interface HelloService {
@RequestMapping(value = "/hello", method = RequestMethod.GET)
String hello(@RequestParam(value = "name") String name);
}

上例中默认行为如下,groupkey为"microservice1",commandkey为"HelloService#hello(String)",threadpoolkey为null。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public interface SetterFactory {

/**
* Returns a hystrix setter appropriate for the given target and method
*/
HystrixCommand.Setter create(Target<?> target, Method method);

/**
* Default behavior is to derive the group key from {@link Target#name()} and the command key from
* {@link Feign#configKey(Class, Method)}.
*/
final class Default implements SetterFactory {

@Override
public HystrixCommand.Setter create(Target<?> target, Method method) {
String groupKey = target.name();
String commandKey = Feign.configKey(target.type(), method);
return HystrixCommand.Setter
.withGroupKey(HystrixCommandGroupKey.Factory.asKey(groupKey))
.andCommandKey(HystrixCommandKey.Factory.asKey(commandKey));
}
}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public abstract class Feign {

public static String configKey(Class targetType, Method method) {
StringBuilder builder = new StringBuilder();
builder.append(targetType.getSimpleName());
builder.append('#').append(method.getName()).append('(');
for (Type param : method.getGenericParameterTypes()) {
param = Types.resolve(targetType, targetType, param);
builder.append(Types.getRawType(param).getSimpleName()).append(',');
}
if (method.getParameterTypes().length > 0) {
builder.deleteCharAt(builder.length() - 1);
}
return builder.append(')').toString();
}

}

所以这样设置:

1
2
3
4
5
6
7
8
9
10
hystrix:
command:
HelloService#hello(String):
execution:
timeout:
enabled: true
isolation:
strategy: THREAD
thread:
timeoutInMilliseconds: 10000

也可以改变上述commandkey的默认行为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.example.microservice2;

import java.lang.reflect.Method;

import com.netflix.hystrix.HystrixCommand;
import com.netflix.hystrix.HystrixCommandGroupKey;
import com.netflix.hystrix.HystrixCommandKey;

import org.springframework.context.annotation.Bean;

import feign.Target;
import feign.hystrix.SetterFactory;

public class FeignClientConfiguration {

@Bean
public SetterFactory feignHystrixSetter() {
return new MySetterFactory();
}
}

class MySetterFactory implements SetterFactory {
@Override
public HystrixCommand.Setter create(Target<?> target, Method method) {
String groupKey = target.name();
String commandKey = target.type().getName();
return HystrixCommand.Setter
.withGroupKey(HystrixCommandGroupKey.Factory.asKey(groupKey))
.andCommandKey(HystrixCommandKey.Factory.asKey(commandKey));
}
}

这样commandkey就会变成"com.example.microservice2.HelloService"。

ribbon

官方参考

ribbon只有属性配置,同样存在全局和实例配置,格式如下:

1
<clientName>.<nameSpace>.<propertyName>=<value>

nameSpace是可配置的,默认为ribbon。clientName可为远端服务名,即@feignclient的value,空表示全局配置。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 全局配置
ribbon:
# 服务最大重试次数,不包含第一次请求,默认0
MaxAutoRetries: 5
# 负载均衡切换次数,如果服务注册列表小于 nextServer count 那么会循环请求 A > B > A,默认1
MaxAutoRetriesNextServer: 3
#是否所有操作都进行重试
OkToRetryOnAllOperations: false
#连接超时时间,单位为毫秒,默认2秒
ConnectTimeout: 3000
#读取的超时时间,单位为毫秒,默认5秒
ReadTimeout: 3000
# 实例配置
clientName:
ribbon:
MaxAutoRetries: 5
MaxAutoRetriesNextServer: 3
OkToRetryOnAllOperations: false
ConnectTimeout: 3000
ReadTimeout: 3000

超时时间关系

feign超时

feign可以设置自身超时,也可以设置ribbon超时,那么它们的关系是怎么样的?看feign代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class LoadBalancerFeignClient implements Client {

static final Request.Options DEFAULT_OPTIONS = new Request.Options();

IClientConfig getClientConfig(Request.Options options, String clientName) {
IClientConfig requestConfig;
if (options == DEFAULT_OPTIONS) {
requestConfig = this.clientFactory.getClientConfig(clientName);
}
else {
requestConfig = new FeignOptionsClientConfig(options);
}
return requestConfig;
}
}

如果没有设置过feign超时,也就是等于默认值的时候,就会读取ribbon的配置,使用ribbon的超时时间和重试设置。否则使用feign自身的设置。两者是二选一的,且feign优先。

  • 如果设置的feign的超时,则超时时间大概是Retryer.Default.maxAttempts*(ConnectTimeout+ReadTimeout)

  • 如果仅设置了ribbon,则超时时间大概是(ConnectTimeout+ReadTimeout)*(MaxAutoRetries+1)*(MaxAutoRetriesNextServer+1);

建议使用ribbon超时设置。

feign重试和ribbon重试

feign自身重试目前只有一个简单的实现Retryer.Default,包含三个属性:

  • maxAttempts:重试次数,包含第一次

  • period:重试初始间隔时间,单位毫秒

  • maxPeriod:重试最大间隔时间,单位毫秒

重试间隔算法如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public interface Retryer extends Cloneable {

class Default implements Retryer {

/**
* Calculates the time interval to a retry attempt. <br>
* The interval increases exponentially with each attempt, at a rate of nextInterval *= 1.5
* (where 1.5 is the backoff factor), to the maximum interval.
*
* @return time in nanoseconds from now until the next attempt.
*/
long nextMaxInterval() {
long interval = (long) (period * Math.pow(1.5, attempt - 1));
return interval > maxPeriod ? maxPeriod : interval;
}

}
}

第一次重试间隔period,第二次period*1.5,第三次period*1.5*1.5,…,最大值不超过maxPeriod。

和ribbon的重试相比:

  • 重试次数包含了首次;

  • 不能设置多实例服务切换;

  • 重试有一个延迟时间。

feign超时和hystrix超时

hystrix的超时时间要大于feign的,否则没有等到feign超时,hystrix就fallback了,特别是重试机制会无法起作用。

  • 本文链接: http://zhongpan.tech/2020/03/23/029-hystrix-ribbon-feign-relationship/


以上是关于深入理解Mysql 超时配置项的主要内容,如果未能解决你的问题,请参考以下文章

MySQL InnoDB加锁超时回滚机制(转)

mysql长时间不操作会不会连接超时?怎么改?

深入理解Mysql索引底层数据结构与算法

深入理解feignribbon和hystrix三者的关系及超时配置[转]

keepalived下,mysql连接超时

深入理解MySql事务