解决:HttpClient导致应用出现过多Close_Wait的问题
最近发现一个问题,在服务器上通过netstat命令发现有大量的Close_Wait长时间存在,甚至有时候数量接近1000:
查看服务器参数(etc/sysctl.conf):
net.ipv4.tcp_keepalive_time 网管已经修改成1200。
参数值还可以改小,但似乎是治标不治本,出现这种问题,肯定是某个地方的程序本身存在问题。
根据ip及端口信息,不难发现是什么地方除问题了,项目中有涉及到图片上传,于是找到图片上传的代码,结果发现代码非常简单,一行上传权限初始化代码,一行CDN官方提供的一个静态方法,之后就是处理响应结果的代码了。代码少且简单,上传调用代码没什么问题,那么问题可能出在CDN官方提供的jar包了,好在CDN有提供源码,于是查看源码,源码中使用apache 的是httpClient包,调用代码大致如下:
String response = "";
HttpPost httpPost = null;
CloseableHttpResponse ht = null;
String startTime = formatter.format(new Date());//请求时间
String endTime = "-";
String statusCode = "-";
String contentLength = "-";
String contentType = "-";
try {
httpPost = new HttpPost(url);
List<NameValuePair> paramsList = new ArrayList<NameValuePair>(); if (file != null) {
MultipartEntityBuilder mEntityBuilder = MultipartEntityBuilder.create(); BandwithLimiterFileBody fileBody = new BandwithLimiterFileBody(file, null, "application/octet-stream", null, BaseBlockUtil.maxRate, progressNotifier);
mEntityBuilder.addPart("file", fileBody);
mEntityBuilder.addTextBody("desc", file.getName()); if (params != null && params.size() > 0) {
for (String name : params.keySet()) {
mEntityBuilder.addTextBody(name, params.get(name), ContentType.create("text/plain", Charset.forName("UTF-8")));
}
} httpPost.setEntity(mEntityBuilder.build());
} else if (params != null && params.size() > 0) {
for (String name : params.keySet()) {
paramsList.add(new BasicNameValuePair(name, params.get(name)));
}
HttpEntity he = new UrlEncodedFormEntity(paramsList, "utf-8");
httpPost.setEntity(he);
} if (headMap != null && headMap.size() > 0) {
for (String name : headMap.keySet()) {
httpPost.addHeader(name, headMap.get(name));
}
}
if(!httpPost.containsHeader("User-Agent"))
httpPost.addHeader("User-Agent", Config.VERSION_NO);
CloseableHttpClient hc = HttpClients.createDefault();
RequestConfig requestConfig = RequestConfig.custom().setSocketTimeout(30000).setConnectTimeout(30000).build();//设置请求和传输超时时间
httpPost.setConfig(requestConfig);
ht = hc.execute(httpPost);
endTime = formatter.format(new Date()); Header[] headerArr = ht.getAllHeaders();
for (Header header : headerArr) {
BufferedHeader bh = (BufferedHeader) header;
if (bh.getBuffer().toString().contains("Content-Length")) {
contentLength = bh.getValue();
} else if (bh.getBuffer().toString().contains("Content-Type")) {
contentType = bh.getValue();
}
}
HttpEntity het = ht.getEntity();
InputStream is = het.getContent();
BufferedReader br = new BufferedReader(new InputStreamReader(is, "utf8"));
String readLine;
while ((readLine = br.readLine()) != null) {
response = response + readLine;
} is.close();
br.close();
int status = ht.getStatusLine().getStatusCode();
statusCode = String.valueOf(status);
if (status == 200) {
if (!new JsonValidator().validate(response)) {
response = EncodeUtils.urlsafeDecodeString(response);
}
}
return new HttpClientResult(status, response);
} catch (Exception e) {
statusCode = "500";
endTime = formatter.format(new Date());
throw new HttpClientException(e);
} finally {
if (httpPost != null) {
httpPost.releaseConnection();
}
if (ht != null) {
try {
ht.close();
} catch (IOException ignored) {
}
}
writeHttpLog(startTime, url, "-", (null != params ? params.get("token") : "-"), (null != file ? file.getName() : "-"), "-", "-", endTime, statusCode, contentType, contentLength, response);
}
查看TCP协议端口状态说明 , 如果一直保持在CLOSE_WAIT状态,那么只有一种情况,就是在对方关闭连接之后服务器程序自己没有进一步发出ack信号。因此要解决这个问题大致有以下几种方案:
a、实例化httpClient 时,使用alwaysClose 的SimpleHttpConnectionManager
通常默认情况实例化httpClient 的时候使用的是无参构造的SimpleHttpConnectionManager,因此可替换为带参构造:
new HttpClient(new SimpleHttpConnectionManager(true));
b、在method.releaseConnection() 之后 通过获取HttpConnectionManager,进行关闭(getConnectionManager方法在httpclient 4.3之后已经标记为过期,后期可能会移除该方法):
hc.getConnectionManager().shutdown();
c、在method.releaseConnection() 之后 通过获取HttpConnectionManager 调用closeIdleConnections方法进行关闭,(getConnectionManager方法在httpclient 4.3之后已经标记为过期,后期可能会移除该方法):
hc.getConnectionManager().releaseConnection(conn, validDuration, timeUnit);
d、通过设置header由服务端自动关闭.
method.setHeader("Connection", "close");
HTTP协议中有关于这个属性的定义:
HTTP/1.1 defines the "close" connection option for the sender to signal that the connection will be closed after completion of the response. For example:
Connection: close
e、使用MultiThreadedHttpConnectionManager 进行复用,但同时也必须在合适的地方进行关闭处理;
f、请求之后未收到响应信息时,调用method.abort()进行处理
可参考:http://wiki.apache.org/HttpComponents/FrequentlyAskedConnectionManagementQuestions
http://hc.apache.org/httpclient-legacy/tutorial.html
TCP/IP详解卷一
解决:HttpClient导致应用出现过多Close_Wait的问题的更多相关文章
- 解决httpclient设置代理ip之后请求无响应的问题
httpclient这个工具类对于大家来说应该都不陌生吧,最近在使用过程中出现了碰到一个棘手的问题,当请求的接口地址由http变成https之后,程序执行到 httpClient.execute(ht ...
- 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 数据库连接不释放测试 连接池 释放连接 关闭连接 有关 redis-py 连接池会导致服务器产生大量 CLOSE_WAIT 的再讨论以及一个解决方案
import pymysqlfrom redis import Redisimport time h, pt, u, p, db = '192.168.2.210', 3306, 'root', 'n ...
- springboot 解决Jackson导致Long型数据精度丢失问题
代码中注入一个bean即可: /** * 解决Jackson导致Long型数据精度丢失问题 * * @return */ @Bean("jackson2ObjectMapperBuilder ...
- 由于httpClient调用导致的ESTABLISHED过多和 Connection rest by peer 异常
问题描述: 生产环境突然之间出现了大量的Connection rest by peer.后来使用netstat -an | grep 服务端口号发现有大量来自A10服务器的ESTABLISHED连接, ...
- 解决: httpclient ssl 验证导致死锁问题
线上图片下载服务器平时运行正常,最近突然出现一种比较奇怪的现象,只接受请求,但却没有处理请求,最开始怀疑下载线程挂掉了,dump 项目线程后发现异常: "pool-2-thread-1&qu ...
- 解决Oracle 11gR2 空闲连接过多,导致连接数满的问题
今天又遇到了11gR2连接数满的问题,以前也遇到过,因为应用那边没有深入检查,没有找到具体原因,暂且认为是这个版本Oracle的BUG吧. 上次的处理办法是用Shell脚本定时在系统中kill v$ ...
- 高并发连接导致打开文件过多:java.io.IOException: Too many open files 解决方法
用 CentOS 做 API 接口服务器供其他终端调用时,并发量高会报错:java.io.IOException: Too many open files. 其原因是在 Linux 下默认的Socke ...
- 解决 httpclient 下 Address already in use: connect 的错误
最近做httpclient做转发服务,发现服务器上总是有很多close_wait状态的连接,而且这些连接都不会关闭,最后导致服务器没法建立新的网络连接,从而停止响应. 后来在网上搜索了一下,发现解决的 ...
- 如何解决代码中if…else 过多的问题
前言 if...else 是所有高级编程语言都有的必备功能.但现实中的代码往往存在着过多的 if...else.虽然 if...else 是必须的,但滥用 if...else 会对代码的可读性.可维护 ...
随机推荐
- 正确使用List.toArray()(转)
在程序中,往往得到一个List, 程序要求对应赋值给一个array, 可以这样写程序: for example: Long [] l = new Long[list.size()]; for(in ...
- c# winform 关闭窗体时同时结束线程实现思路
Thread th = new Thread(Excute); th.IsBackground = true;这样就解决问题了. 这个属性的意思就是把线程设置为后台线程. 然后关闭进程的同时,线程也会 ...
- 怎么使用jquery判断一个元素是否含有一个指定的类(class)
在jQuery中可以使用2种方法来判断一个元素是否包含一个确定的类(class).两种方法有着相同的功能.2种方法如下:(个人喜欢用hasClass()) 1. hasClass( ...
- Chronos
https://mesos.github.io/chronos/ https://github.com/mesos/chronos https://github.com/mesos/chronos/t ...
- 怎么 才能显示Eclipse中Console的全部内容
可以如下设置 preference->run/debug->console 设置limit console output 为false,方便调试时,查看全部console. 这个真是太有用 ...
- pt-kill使用
percona-toolkit-2.2.10使用举例 以pt-kill为例 --help,可以看到帮助信息 -------- 运行平稳的数据库,如果遇到CPU狂飙,到80%左右,那一定是开发写的烂SQ ...
- view
把view添加到某个视图的虾面 [self.superview insertSubview:smallCircle belowSubview:self]; // 返回两个数的根 return sqrt ...
- 通过dblink的方式查看表的结构
有dba权限: SELECT * FROM DBA_TAB_COLUMNS@DBLINK_TEST WHERE TABLE_NAME = '表名'; 没有dba权限:SELECT * FROM USE ...
- mybatis中当实体类的字段名和表结构中的字段名不一致的时候的处理
1.在sql语句中使用列的别名 比如:select order_id id,orderNo orderno ,order_price price from order where order_id = ...
- 使用php添加定时任务
1. php执行外部命令的函数: system(),exec(),passthru() 注意点: 1.调用的路径,相对路径有时候不是很靠谱. sys ...