gpt4 book ai didi

java - Netty 客户端请求发送到多个服务器时超时

转载 作者:行者123 更新时间:2023-12-02 11:33:03 25 4
gpt4 key购买 nike

首先介绍一下背景:
我已经实现了 Netty 框架,并且有一个客户端向超过 44 个服务器发送 HTTP 请求。服务器正在响应该请求。
在我的客户端中,我通过覆盖 channelActive 函数并从 channelRead0 函数读取响应并将所有响应存储在数据结构中来发送请求。
因为,发送 HTTP 请求并从 44 个服务器获取响应需要时间。我正在使用超时值,结构如下所示:

      for (final InetAddress target : remoteIPAddresses.values()) {
httpClient.connect(target);
}
// wait for the timeout. Hoping client send request to all
// the targets and get response.
Uninterruptibles.sleepUninterruptibly(timeout, TimeUnit.MILLISECONDS);
httpClient.stop();
fetchResults();

fetchResults 从channelRead0中提到的数据结构中获取结果 connect 方法包含 netty 实现,如下所示:

 public void connect(final InetAddress remoteAddress){
new Bootstrap()
.option(ChannelOption.CONNECT_TIMEOUT_MILLIS, connectionTimeout)
.option(ChannelOption.ALLOCATOR, PooledByteBufAllocator.DEFAULT)
.group(eventLoopGroup)
.channel(NioSocketChannel.class)
.handler(httpNettyClientChannelInitializer)
.connect(remoteAddress, serverPort)
.addListener(new ChannelFutureListener() {
@Override
public void operationComplete(ChannelFuture future) {
future.cancel(!future.isSuccess());
}
});
}

Netty 中使用的参数

connectionTimeout = 100ms  
Timeout value = 400ms
Eventloop = 1 (Tried with 2 , 5 and 10)

问题
在 44 个目标中,我有多个目标超时。每次的目标都不同。使用线程 sleep 不是一个好的做法,我无法找出任何其他方法来完成该任务。有一个更好的方法吗?我已经看到了this视频。我被封锁了。任何线索都会非常有帮助。

最佳答案

您可以使用CountDownLatch,而不是 sleep 并希望获得所有必需的响应。 。将此锁存器传递给您的处理程序,该处理程序将在每次响应到达时进行倒计时(在 channelRead0 中)。然后,您的主线程可以使用 await()

等待全局超时的所有响应

您的处理程序可能如下所示:

@ChannelHandler.Sharable
public class HttpResponseHandler extends SimpleChannelInboundHandler<HttpObject> {

final CountDownLatch responseLatch;

public HttpResponseHandler(CountDownLatch responseLatch) {
this.responseLatch = responseLatch;
}

@Override
protected void channelRead0(ChannelHandlerContext ctx, HttpObject msg) throws Exception {
....
responseLatch.countDown();
}
}

在主线程中:

        CountDownLatch responseLatch = new CountDownLatch(remoteIpAddresses.size());
HttpResponseHandler handler = new HttpResponseHandler(responseLatch);
// your for loop to connect to servers here
responseLatch.await(timeout, TimeUnit.MILLISECONDS);

我没有考虑处理程序中的错误情况(套接字连接/读取超时、无效响应等),因此请确保处理这些情况。

关于java - Netty 客户端请求发送到多个服务器时超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49143681/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com