JMS连接器中默认是MQ Fastpath吗

时间:2018-12-26 10:12:54

标签: jms mule ibm-mq spring-jms mule-esb

我正在使用Mule JMS连接器连接到MQ-9.x,最近几天我观察到队列管理器频繁关闭,它说FAST路径应用程序已结束QM日志错误,而且即使我关闭了,OPPROCS连接也没有减少我的M子引擎。解决方法是,我重新启动队列管理器实例:(

所以现在我的问题是,IBM JMS客户端jar是否包含Fastpath绑定连接是默认的,还是在Mule本身中处理的(我不这么认为),并且没有编写用于处理此问题的代码。

Maven依赖项

<dependency>
    <groupId>com.ibm.mq</groupId>
    <artifactId>com.ibm.mq.allclient</artifactId>
    <version>RELEASE</version>
</dependency>
<dependency>
    <groupId>javax.jms</groupId>
    <artifactId>javax.jms-api</artifactId>
    <version>RELEASE</version>
</dependency>

QM.INI

#*******************************************************************#
#* Module Name: qm.ini                                             *#
#* Type       : WebSphere MQ queue manager configuration file      *#
#  Function   : Define the configuration of a single queue manager *#
#*                                                                 *#
#*******************************************************************#
#* Notes      :                                                    *#
#* 1) This file defines the configuration of the queue manager     *#
#*                                                                 *#
#*******************************************************************#
ExitPath:
   ExitsDefaultPath=/var/mqm/exits
   ExitsDefaultPath64=/var/mqm/exits64
#*                                                                 *#
#*                                                                 *#
Log:
   LogPrimaryFiles=5
   LogSecondaryFiles=2
   LogFilePages=1024
   LogType=CIRCULAR
   LogBufferPages=0
   LogPath=/mqha/Local/log/XXXXX/XXXXX/
   LogWriteIntegrity=TripleWrite
Service:
   Name=AuthorizationService
   EntryPoints=14
ServiceComponent:
   Service=XXXXXService
   Name=XXXXXX.service
   Module=amqzfu
   ComponentDataSize=0
TCP:
   SndBuffSize=0
   RcvBuffSize=0
   RcvSndBuffSize=0
   RcvRcvBuffSize=0
   ClntSndBuffSize=0
   ClntRcvBuffSize=0
   SvrSndBuffSize=0
   SvrRcvBuffSize=0

错误日志

Probe Severity    :- 3                                                      |
| Probe Description :- AMQ7159W: A FASTPATH application has ended             |
|   unexpectedly

有人可以建议吗?

0 个答案:

没有答案