0

我是 IBM MQ 的新手,我的队列管理器使用 tcp 通道连接并且 tcp 连接广泛增加,这是正在使用的代码。如何以可重用的方式处理通道内的连接?

我正在使用 7.5 MQ 客户端,与 6.0.5.2 MQ 远程服务器通信。我正确关闭了连接,但是当我运行 netstat 时,它显示 tcp 连接处于 time_wait 状态。这些是连接/套接字泄漏吗?

MQQueue mqQueue = null; 
MQQueueManager mqQMgr=null;  
try
{
  //Create connection to queue manager
   mqQMgr = new MQQueueManager("Queue Manager name", properties);
  //Access the queue
    mqQueue = mqQMgr.AccessQueue(QueueName, MQC.MQOO_FAIL_IF_QUIESCING | MQC.MQOO_INPUT_SHARED | MQC.MQOO_BROWSE);
   for(int i=1;i<2000;i++)
  {
    //read the messages
    mqMsg=new MQMessage();
    mqQueue.Get(mqMsg);
  }
}
catch(MQException mqe)
{  
  //If no messages in the queue , break. (if not, catch any error)
}
finally
{
     mqQueue.Close(); //Close the MQ Queue
     mqQMgr.Disconnect(); //Disconnect the MQ Manager
}

当我运行 netstat 时,它显示

TCP x.x.x.x:59092    x.x.x.x:1400  TIME_WAIT 
TCP x.x.x.x:59093    x.x.x.x:1400  TIME_WAIT
TCP x.x.x.x:59094    x.x.x.x:1400  TIME_WAIT
TCP x.x.x.x:59095    x.x.x.x:1400  TIME_WAIT
TCP x.x.x.x:59096    x.x.x.x:1400  TIME_WAIT
TCP x.x.x.x:59097    x.x.x.x:1400  TIME_WAIT
TCP x.x.x.x:59098    x.x.x.x:1400  TIME_WAIT
TCP x.x.x.x:59099    x.x.x.x:1400  TIME_WAIT
4

1 回答 1

3

这不是泄漏。套接字在关闭后进入 TIME_WAIT 状态。套接字处于 TIME_WAIT 较长时间(大约 4 分钟)是正常的,具体取决于操作系统。

于 2013-04-16T05:09:57.537 回答