WebSphere MQ High Connection Count Issue

后端 未结 3 1324
执笔经年
执笔经年 2021-01-22 18:47

As per our configuration, we have WAS version is 8.5.5.1, IBM MQ version 7.5.0.3. We are using 2 channels to connect to WMQ, one with MAXINST set to 250 and one with 500. SHAREC

3条回答
  •  迷失自我
    2021-01-22 19:48

    We had a similar problem where the connection count used to reach its limit once the application was kept active for hours.

    Our catch was to call disconnect() of the queue manager post enqueue or dequeue rather than close(). So make sure your finally block looks something like this.

    finally 
    {
        queue.close();
        qMgr.disconnect();     //rather than qMgr.close();      
    }
    

提交回复
热议问题