我很困惑这种奇怪的情况,有时候我的HTTP请求不会出去,或者我偶尔也没有得到我的请求的HTTP响应。我的应用程序定期向其他第三方服务发出几个(100s)http请求,其中大部分工作都非常好。 我使用CloseableHttpAsyncClient(版本4.0)与自定义HttpRequestIntercerptor和HttpResponseInterceptor。这些主要是为调试目的而添加的,RequestInterceptor是链中的最后一个拦截器,而ResponseInterceptor是第一个。我们的想法是在发送实际请求之前在最后阶段记录每个http请求,并在第一次接收时记录每个http响应。
我有以下模式来设置异步客户端:
HttpAsyncClientBuilder asyncClientBuilder = HttpAsyncClientBuilder.create();
asyncClientBuilder.addInterceptorLast(new MyHttpRequestInterceptor());
asyncClientBuilder.addInterceptorFirst(new MyHttpResponseInterceptor());
IOReactorConfig reactorConfig = IOReactorConfig.DEFAULT;
reactorConfig.setConnectTimeout(5 * 60 * 1000); // 5 mins
reactorConfig.setSoTimeout(5 * 60 * 1000); // 5 mins
asyncClientBuilder.setDefaultIOReactorConfig(reactorConfig);
System.setProperty("http.maxConnections", "100");
this.asyncHttpClient = asyncClientBuilder.useSystemProperties().build();
this.asyncHttpClient.start();
要发出请求:
HttpGet httpGet = new HttpGet("some url");
asyncHttpClient.execute(httpGet, new AsyncHTTPResponseHandler(requestMetadata));
这是我的AsyncHTTPResponseHandler类:
class AsyncHTTPResponseHandler implements FutureCallback<HttpResponse> {
// local copy of the request for reference while processing the response.
private RequestMetadata requestMetadata;
public AsyncHTTPResponseHandler(final RequestMetadata requestMetadata) {
this.setRequestMetadata(requestMetadata);
Thread.currentThread().setUncaughtExceptionHandler(new HttpUncaughtExceptionHandler(requestMetadata));
}
@Override
public void cancelled() {
logger.error("AsyncHTTPResponseHandler#Http request id: {} cancelled",
requestMetadata.getRequestId()));
}
@Override
public void completed(HttpResponse response) {
logger.debug("Received HTTP Response for request id: {}",
requestMetadata.getRequestId());
//handleHttpResponse(requestMetadata, response);
}
@Override
public void failed(Exception e) {
logger.error("AsyncHTTPResponseHandler#Error in Http request id: " + requestMetadata.getRequestId(), e);
}
}
根据此设置,我会根据拦截器日志看到以下情况: 1.我的应用程序http请求触发了一个asyncclient HttpRequest,我得到了HttpResponse - Success。 2.我的应用程序http请求触发asyncclient HttpRequest(拦截器记录它),我没有得到HttpResponse这个请求---不知道为什么? 3.我的应用程序http请求不会触发asyncclient HttpRequest(拦截器不会记录它)而且我没有得到此请求的HttpResponse ---不知道为什么?
有关我可以做什么的任何提示或建议可以解决此问题或进一步调试此问题?
谢谢!
答案 0 :(得分:0)
所以,我想我会在这里分享我的发现和解决方案。
我们遇到了类似于此错误的症状:https://issues.apache.org/jira/browse/HTTPASYNC-79
如果为“org.apache.http.impl.nio”包启用DEBUG日志记录,则可以查看交换。注意:日志非常详细。
通过将HttpAsyncClient库从4.0升级到4.0.2解决了该问题。我还启用了套接字和连接超时。您应该在日志文件中看到超时异常。
以下是我的HttpAsyncClient实例现在的样子:
HttpAsyncClientBuilder asyncClientBuilder = HttpAsyncClientBuilder.create();
asyncClientBuilder.addInterceptorLast(new MyHttpRequestInterceptor());
asyncClientBuilder.addInterceptorFirst(new MyHttpResponseInterceptor());
// reactor config
IOReactorConfig reactorConfig = IOReactorConfig.custom()
.setConnectTimeout(TIMEOUT_5_MINS_IN_MILLIS)
.setSoTimeout(TIMEOUT_5_MINS_IN_MILLIS).build();
asyncClientBuilder.setDefaultIOReactorConfig(reactorConfig);
// request config
RequestConfig requestConfig = RequestConfig.custom()
.setConnectTimeout(TIMEOUT_5_MINS_IN_MILLIS)
.setConnectionRequestTimeout(TIMEOUT_5_MINS_IN_MILLIS)
.setSocketTimeout(TIMEOUT_5_MINS_IN_MILLIS).build();
asyncClientBuilder.setDefaultRequestConfig(requestConfig);
// connection config
ConnectionConfig connectionConfig = ConnectionConfig.custom()
.setMalformedInputAction(CodingErrorAction.IGNORE)
.setUnmappableInputAction(CodingErrorAction.IGNORE)
.build();
asyncClientBuilder.setDefaultConnectionConfig(connectionConfig);
System.setProperty("http.maxConnections", "100");
System.setProperty("http.conn-manager.timeout", "300000"); // 5 mins
this.asyncHttpClient = asyncClientBuilder.useSystemProperties().build();