一、背景
http协议是无状态的协议,即每一次请求都是互相独立的。因此它的最初实现是,每一个http请求都会打开一个tcp socket连接,当交互完毕后会关闭这个连接。
http协议是全双工的协议,所以建立连接与断开连接是要经过三次握手与四次挥手的。显然在这种设计中,每次发送http请求都会消耗很多的额外资源,即连接的建立与销毁。
于是,http协议的也进行了发展,通过持久连接的方法来进行socket连接复用。
从图中可以看到:
- 在串行连接中,每次交互都要打开关闭连接
- 在持久连接中,第一次交互会打开连接,交互结束后连接并不关闭,下次交互就省去了建立连接的过程。
持久连接的实现有两种:http/1.0+的keep-alive与http/1.1的持久连接。
二、http/1.0+的keep-alive
从1996年开始,很多http/1.0浏览器与服务器都对协议进行了扩展,那就是“keep-alive”扩展协议。
注意,这个扩展协议是作为1.0的补充的“实验型持久连接”出现的。keep-alive已经不再使用了,最新的http/1.1规范中也没有对它进行说明,只是很多应用延续了下来。
使用http/1.0的客户端在首部中加上"connection:keep-alive",请求服务端将一条连接保持在打开状态。服务端如果愿意将这条连接保持在打开状态,就会在响应中包含同样的首部。如果响应中没有包含"connection:keep-alive"首部,则客户端会认为服务端不支持keep-alive,会在发送完响应报文之后关闭掉当前连接。
通过keep-alive补充协议,客户端与服务器之间完成了持久连接,然而仍然存在着一些问题:
- 在http/1.0中keep-alive不是标准协议,客户端必须发送connection:keep-alive来激活keep-alive连接。
- 代理服务器可能无法支持keep-alive,因为一些代理是"盲中继",无法理解首部的含义,只是将首部逐跳转发。所以可能造成客户端与服务端都保持了连接,但是代理不接受该连接上的数据。
三、http/1.1的持久连接
http/1.1采取持久连接的方式替代了keep-alive。
http/1.1的连接默认情况下都是持久连接。如果要显式关闭,需要在报文中加上connection:close首部。即在http/1.1中,所有的连接都进行了复用。
然而如同keep-alive一样,空闲的持久连接也可以随时被客户端与服务端关闭。不发送connection:close不意味着服务器承诺连接永远保持打开。
四、httpclient如何生成持久连接
httpclien中使用了连接池来管理持有连接,同一条tcp链路上,连接是可以复用的。httpclient通过连接池的方式进行连接持久化。
其实“池”技术是一种通用的设计,其设计思想并不复杂:
- 当有连接第一次使用的时候建立连接
- 结束时对应连接不关闭,归还到池中
- 下次同个目的的连接可从池中获取一个可用连接
- 定期清理过期连接
所有的连接池都是这个思路,不过我们看httpclient源码主要关注两点:
- 连接池的具体设计方案,以供以后自定义连接池参考
- 如何与http协议对应上,即理论抽象转为代码的实现
4.1 httpclient连接池的实现
httpclient关于持久连接的处理在下面的代码中可以集中体现,下面从mainclientexec摘取了和连接池相关的部分,去掉了其他部分:
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
32
33
34
35
36
37
38
39
40
41
|
public class mainclientexec implements clientexecchain { @override public closeablehttpresponse execute( final httproute route, final httprequestwrapper request, final httpclientcontext context, final httpexecutionaware execaware) throws ioexception, httpexception { //从连接管理器httpclientconnectionmanager中获取一个连接请求connectionrequest final connectionrequest connrequest = connmanager.requestconnection(route, usertoken); final httpclientconnection managedconn; final int timeout = config.getconnectionrequesttimeout(); //从连接请求connectionrequest中获取一个被管理的连接httpclientconnection managedconn = connrequest.get(timeout > 0 ? timeout : 0 , timeunit.milliseconds); //将连接管理器httpclientconnectionmanager与被管理的连接httpclientconnection交给一个connectionholder持有 final connectionholder connholder = new connectionholder( this .log, this .connmanager, managedconn); try { httpresponse response; if (!managedconn.isopen()) { //如果当前被管理的连接不是出于打开状态,需要重新建立连接 establishroute(proxyauthstate, managedconn, route, request, context); } //通过连接httpclientconnection发送请求 response = requestexecutor.execute(request, managedconn, context); //通过连接重用策略判断是否连接可重用 if (reusestrategy.keepalive(response, context)) { //获得连接有效期 final long duration = keepalivestrategy.getkeepaliveduration(response, context); //设置连接有效期 connholder.setvalidfor(duration, timeunit.milliseconds); //将当前连接标记为可重用状态 connholder.markreusable(); } else { connholder.marknonreusable(); } } final httpentity entity = response.getentity(); if (entity == null || !entity.isstreaming()) { //将当前连接释放到池中,供下次调用 connholder.releaseconnection(); return new httpresponseproxy(response, null ); } else { return new httpresponseproxy(response, connholder); } } |
这里看到了在http请求过程中对连接的处理是和协议规范是一致的,这里要展开讲一下具体实现。
poolinghttpclientconnectionmanager是httpclient默认的连接管理器,首先通过requestconnection()获得一个连接的请求,注意这里不是连接。
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
|
public connectionrequest requestconnection( final httproute route, final object state) { final future<cpoolentry> future = this .pool.lease(route, state, null ); return new connectionrequest() { @override public boolean cancel() { return future.cancel( true ); } @override public httpclientconnection get( final long timeout, final timeunit tunit) throws interruptedexception, executionexception, connectionpooltimeoutexception { final httpclientconnection conn = leaseconnection(future, timeout, tunit); if (conn.isopen()) { final httphost host; if (route.getproxyhost() != null ) { host = route.getproxyhost(); } else { host = route.gettargethost(); } final socketconfig socketconfig = resolvesocketconfig(host); conn.setsockettimeout(socketconfig.getsotimeout()); } return conn; } }; } |
可以看到返回的connectionrequest对象实际上是一个持有了future<cpoolentry>,cpoolentry是被连接池管理的真正连接实例。
从上面的代码我们应该关注的是:
future<cpoolentry> future = this.pool.lease(route, state, null)
如何从连接池cpool中获得一个异步的连接,future<cpoolentry>
httpclientconnection conn = leaseconnection(future, timeout, tunit)
如何通过异步连接future<cpoolentry>获得一个真正的连接httpclientconnection
4.2 future<cpoolentry>
看一下cpool是如何释放一个future<cpoolentry>的,abstractconnpool核心代码如下:
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
private e getpoolentryblocking( final t route, final object state, final long timeout, final timeunit tunit, final future<e> future) throws ioexception, interruptedexception, timeoutexception { //首先对当前连接池加锁,当前锁是可重入锁reentrantlockthis.lock.lock(); try { //获得一个当前httproute对应的连接池,对于httpclient的连接池而言,总池有个大小,每个route对应的连接也是个池,所以是“池中池” final routespecificpool<t, c, e> pool = getpool(route); e entry; for (;;) { asserts.check(! this .isshutdown, "connection pool shut down" ); //死循环获得连接 for (;;) { //从route对应的池中拿连接,可能是null,也可能是有效连接 entry = pool.getfree(state); //如果拿到null,就退出循环 if (entry == null ) { break ; } //如果拿到过期连接或者已关闭连接,就释放资源,继续循环获取 if (entry.isexpired(system.currenttimemillis())) { entry.close(); } if (entry.isclosed()) { this .available.remove(entry); pool.free(entry, false ); } else { //如果拿到有效连接就退出循环 break ; } } //拿到有效连接就退出 if (entry != null ) { this .available.remove(entry); this .leased.add(entry); onreuse(entry); return entry; } //到这里证明没有拿到有效连接,需要自己生成一个 final int maxperroute = getmax(route); //每个route对应的连接最大数量是可配置的,如果超过了,就需要通过lru清理掉一些连接 final int excess = math.max( 0 , pool.getallocatedcount() + 1 - maxperroute); if (excess > 0 ) { for ( int i = 0 ; i < excess; i++) { final e lastused = pool.getlastused(); if (lastused == null ) { break ; } lastused.close(); this .available.remove(lastused); pool.remove(lastused); } } //当前route池中的连接数,没有达到上线 if (pool.getallocatedcount() < maxperroute) { final int totalused = this .leased.size(); final int freecapacity = math.max( this .maxtotal - totalused, 0 ); //判断连接池是否超过上线,如果超过了,需要通过lru清理掉一些连接 if (freecapacity > 0 ) { final int totalavailable = this .available.size(); //如果空闲连接数已经大于剩余可用空间,则需要清理下空闲连接 if (totalavailable > freecapacity - 1 ) { if (! this .available.isempty()) { final e lastused = this .available.removelast(); lastused.close(); final routespecificpool<t, c, e> otherpool = getpool(lastused.getroute()); otherpool.remove(lastused); } } //根据route建立一个连接 final c conn = this .connfactory.create(route); //将这个连接放入route对应的“小池”中 entry = pool.add(conn); //将这个连接放入“大池”中 this .leased.add(entry); return entry; } } //到这里证明没有从获得route池中获得有效连接,并且想要自己建立连接时当前route连接池已经到达最大值,即已经有连接在使用,但是对当前线程不可用 boolean success = false ; try { if (future.iscancelled()) { throw new interruptedexception( "operation interrupted" ); } //将future放入route池中等待 pool.queue(future); //将future放入大连接池中等待 this .pending.add(future); //如果等待到了信号量的通知,success为true if (deadline != null ) { success = this .condition.awaituntil(deadline); } else { this .condition.await(); success = true ; } if (future.iscancelled()) { throw new interruptedexception( "operation interrupted" ); } } finally { //从等待队列中移除 pool.unqueue(future); this .pending.remove(future); } //如果没有等到信号量通知并且当前时间已经超时,则退出循环 if (!success && (deadline != null && deadline.gettime() <= system.currenttimemillis())) { break ; } } //最终也没有等到信号量通知,没有拿到可用连接,则抛异常 throw new timeoutexception( "timeout waiting for connection" ); } finally { //释放对大连接池的锁 this .lock.unlock(); } } |
上面的代码逻辑有几个重要点:
- 连接池有个最大连接数,每个route对应一个小连接池,也有个最大连接数
- 不论是大连接池还是小连接池,当超过数量的时候,都要通过lru释放一些连接
- 如果拿到了可用连接,则返回给上层使用
- 如果没有拿到可用连接,httpclient会判断当前route连接池是否已经超过了最大数量,没有到上限就会新建一个连接,并放入池中
- 如果到达了上限,就排队等待,等到了信号量,就重新获得一次,等待不到就抛超时异常
- 通过线程池获取连接要通过reetrantlock加锁,保证线程安全
到这里为止,程序已经拿到了一个可用的cpoolentry实例,或者抛异常终止了程序。
4.3 httpclientconnection
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
protected httpclientconnection leaseconnection( final future<cpoolentry> future, final long timeout, final timeunit tunit) throws interruptedexception, executionexception, connectionpooltimeoutexception { final cpoolentry entry; try { //从异步操作future<cpoolentry>中获得cpoolentry entry = future.get(timeout, tunit); if (entry == null || future.iscancelled()) { throw new interruptedexception(); } asserts.check(entry.getconnection() != null , "pool entry with no connection" ); if ( this .log.isdebugenabled()) { this .log.debug( "connection leased: " + format(entry) + formatstats(entry.getroute())); } //获得一个cpoolentry的代理对象,对其操作都是使用同一个底层的httpclientconnection return cpoolproxy.newproxy(entry); } catch ( final timeoutexception ex) { throw new connectionpooltimeoutexception( "timeout waiting for connection from pool" ); } } |
五、httpclient如何复用持久连接?
在上一章中,我们看到了httpclient通过连接池来获得连接,当需要使用连接的时候从池中获得。
对应着第三章的问题:
- 当有连接第一次使用的时候建立连接
- 结束时对应连接不关闭,归还到池中
- 下次同个目的的连接可从池中获取一个可用连接
- 定期清理过期连接
我们在第四章中看到了httpclient是如何处理1、3的问题的,那么第2个问题是怎么处理的呢?
即httpclient如何判断一个连接在使用完毕后是要关闭,还是要放入池中供他人复用?再看一下mainclientexec的代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//发送http连接 response = requestexecutor.execute(request, managedconn, context); //根据重用策略判断当前连接是否要复用 if (reusestrategy.keepalive(response, context)) { //需要复用的连接,获取连接超时时间,以response中的timeout为准 final long duration = keepalivestrategy.getkeepaliveduration(response, context); if ( this .log.isdebugenabled()) { final string s; //timeout的是毫秒数,如果没有设置则为-1,即没有超时时间 if (duration > 0 ) { s = "for " + duration + " " + timeunit.milliseconds; } else { s = "indefinitely" ; } this .log.debug( "connection can be kept alive " + s); } //设置超时时间,当请求结束时连接管理器会根据超时时间决定是关闭还是放回到池中 connholder.setvalidfor(duration, timeunit.milliseconds); //将连接标记为可重用 connholder.markreusable(); } else { //将连接标记为不可重用 connholder.marknonreusable(); } |
可以看到,当使用连接发生过请求之后,有连接重试策略来决定该连接是否要重用,如果要重用就会在结束后交给httpclientconnectionmanager放入池中。
那么连接复用策略的逻辑是怎么样的呢?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
public class defaultclientconnectionreusestrategy extends defaultconnectionreusestrategy { public static final defaultclientconnectionreusestrategy instance = new defaultclientconnectionreusestrategy(); @override public boolean keepalive( final httpresponse response, final httpcontext context) { //从上下文中拿到request final httprequest request = (httprequest) context.getattribute(httpcorecontext.http_request); if (request != null ) { //获得connection的header final header[] connheaders = request.getheaders(httpheaders.connection); if (connheaders.length != 0 ) { final tokeniterator ti = new basictokeniterator( new basicheaderiterator(connheaders, null )); while (ti.hasnext()) { final string token = ti.nexttoken(); //如果包含connection:close首部,则代表请求不打算保持连接,会忽略response的意愿,该头部这是http/1.1的规范 if (http.conn_close.equalsignorecase(token)) { return false ; } } } } //使用父类的的复用策略 return super .keepalive(response, context); } } |
看一下父类的复用策略
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
32
33
34
35
36
37
38
|
if (canresponsehavebody(request, response)) { final header[] clhs = response.getheaders(http.content_len); //如果reponse的content-length没有正确设置,则不复用连接 //因为对于持久化连接,两次传输之间不需要重新建立连接,则需要根据content-length确认内容属于哪次请求,以正确处理“粘包”现象 //所以,没有正确设置content-length的response连接不能复用 if (clhs.length == 1 ) { final header clh = clhs[ 0 ]; try { final int contentlen = integer.parseint(clh.getvalue()); if (contentlen < 0 ) { return false ; } } catch ( final numberformatexception ex) { return false ; } } else { return false ; } } if (headeriterator.hasnext()) { try { final tokeniterator ti = new basictokeniterator(headeriterator); boolean keepalive = false ; while (ti.hasnext()) { final string token = ti.nexttoken(); //如果response有connection:close首部,则明确表示要关闭,则不复用 if (http.conn_close.equalsignorecase(token)) { return false ; //如果response有connection:keep-alive首部,则明确表示要持久化,则复用 } else if (http.conn_keep_alive.equalsignorecase(token)) { keepalive = true ; } } if (keepalive) { return true ; } } catch ( final parseexception px) { return false ; } } //如果response中没有相关的connection首部说明,则高于http/1.0版本的都复用连接 return !ver.lessequals(httpversion.http_1_0); |
总结一下:
- 如果request首部中包含connection:close,不复用
- 如果response中content-length长度设置不正确,不复用
- 如果response首部包含connection:close,不复用
- 如果reponse首部包含connection:keep-alive,复用
- 都没命中的情况下,如果http版本高于1.0则复用
从代码中可以看到,其实现策略与我们第二、三章协议层的约束是一致的。
六、httpclient如何清理过期连接
在httpclient4.4版本之前,在从连接池中获取重用连接的时候会检查下是否过期,过期则清理。
之后的版本则不同,会有一个单独的线程来扫描连接池中的连接,发现有离最近一次使用超过设置的时间后,就会清理。默认的超时时间是2秒钟。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
public closeablehttpclient build() { //如果指定了要清理过期连接与空闲连接,才会启动清理线程,默认是不启动的 if (evictexpiredconnections || evictidleconnections) { //创造一个连接池的清理线程 final idleconnectionevictor connectionevictor = new idleconnectionevictor(cm, maxidletime > 0 ? maxidletime : 10 , maxidletimeunit != null ? maxidletimeunit : timeunit.seconds, maxidletime, maxidletimeunit); closeablescopy.add( new closeable() { @override public void close() throws ioexception { connectionevictor.shutdown(); try { connectionevictor.awaittermination(1l, timeunit.seconds); } catch ( final interruptedexception interrupted) { thread.currentthread().interrupt(); } } }); //执行该清理线程 connectionevictor.start(); } |
可以看到在httpclientbuilder进行build的时候,如果指定了开启清理功能,会创建一个连接池清理线程并运行它。
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
|
public idleconnectionevictor( final httpclientconnectionmanager connectionmanager, final threadfactory threadfactory, final long sleeptime, final timeunit sleeptimeunit, final long maxidletime, final timeunit maxidletimeunit) { this .connectionmanager = args.notnull(connectionmanager, "connection manager" ); this .threadfactory = threadfactory != null ? threadfactory : new defaultthreadfactory(); this .sleeptimems = sleeptimeunit != null ? sleeptimeunit.tomillis(sleeptime) : sleeptime; this .maxidletimems = maxidletimeunit != null ? maxidletimeunit.tomillis(maxidletime) : maxidletime; this .thread = this .threadfactory.newthread( new runnable() { @override public void run() { try { //死循环,线程一直执行 while (!thread.currentthread().isinterrupted()) { //休息若干秒后执行,默认10秒 thread.sleep(sleeptimems); //清理过期连接 connectionmanager.closeexpiredconnections(); //如果指定了最大空闲时间,则清理空闲连接 if (maxidletimems > 0 ) { connectionmanager.closeidleconnections(maxidletimems, timeunit.milliseconds); } } } catch ( final exception ex) { exception = ex; } } }); } |
总结一下:
- 只有在httpclientbuilder手动设置后,才会开启清理过期与空闲连接
- 手动设置后,会启动一个线程死循环执行,每次执行sleep一定时间,调用httpclientconnectionmanager的清理方法清理过期与空闲连接。
七、本文总结
- http协议通过持久连接的方式,减轻了早期设计中的过多连接问题
- 持久连接有两种方式:http/1.0+的keep-avlive与http/1.1的默认持久连接
- httpclient通过连接池来管理持久连接,连接池分为两个,一个是总连接池,一个是每个route对应的连接池
- httpclient通过异步的future<cpoolentry>来获取一个池化的连接
- 默认连接重用策略与http协议约束一致,根据response先判断connection:close则关闭,在判断connection:keep-alive则开启,最后版本大于1.0则开启
- 只有在httpclientbuilder中手动开启了清理过期与空闲连接的开关后,才会清理连接池中的连接
- httpclient4.4之后的版本通过一个死循环线程清理过期与空闲连接,该线程每次执行都sleep一会,以达到定期执行的效果
上面的研究是基于httpclient源码的个人理解,如果有误,希望大家积极留言讨论。
好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://www.cnblogs.com/kingszelda/p/8988505.html