我正在构建一个连接到MQQueueManager的java应用程序,并提取有关队列的信息。我可以获得QueueType
,MaximumMessageLength
等数据。但是,我还想要队列可能所在的集群的名称.MQQueue没有提供此信息的函数。在搜索互联网后,我发现了几个指向这个方向的东西,但没有例子。
我的函数的一部分给了我MaximumDepth
:
queueManager = makeConnection(host, portNo, qMgr, channelName);
queue = queueManager.accessQueue(queueName, CMQC.MQOO_INQUIRE);
maxQueueDepth = queue.getMaximumDepth();
(此处未显示makeConnection
,它是与QueueManager实际连接的函数;我也省略了try / catch / finally以减少混乱)
如何获取ClusterName
以及其他没有queue.getMaximumDepth()
功能的数据?
答案 0 :(得分:2)
有两种方法可以获取有关队列的信息。
API查询调用获取队列的运行状态。这包括MQOpen
调用解析到的名称或队列是本地的深度。大多数q.inquire
功能已被队列中的getter和setter函数取代。如果您没有使用具有最新功能的v8.0 client,强烈建议您升级。它可以访问所有版本的QMgr。
以下代码来自 Getting and setting attribute values in WebSphere MQ classes for Java
// inquire on a queue
final static int MQIA_DEF_PRIORITY = 6;
final static int MQCA_Q_DESC = 2013;
final static int MQ_Q_DESC_LENGTH = 64;
int[] selectors = new int[2];
int[] intAttrs = new int[1];
byte[] charAttrs = new byte[MQ_Q_DESC_LENGTH]
selectors[0] = MQIA_DEF_PRIORITY;
selectors[1] = MQCA_Q_DESC;
queue.inquire(selectors,intAttrs,charAttrs);
System.out.println("Default Priority = " + intAttrs[0]);
System.out.println("Description : " + new String(charAttrs,0));
对于不属于API Inquire调用的内容,需要一个PCF命令。可编程命令格式,通常缩写为PCF,是一种消息格式,用于将消息传递到命令队列以及从命令队列,事件队列等中读取消息。
要使用PCF命令,调用应用程序必须通过+put
上的SYSTEM.ADMIN.COMMAND.QUEUE
和查询对象上的+dsp
进行授权。
IBM提供示例代码
在Windows上,请参阅:%MQ_FILE_PATH%\Tools\pcf\samples
在UNIX版本中,请参阅:/opt/mqm/samp/pcf/samples
位置可能因MQ的安装位置而异。
请参阅:Handling PCF messages with IBM MQ classes for Java。以下代码段来自PCF_DisplayActiveLocalQueues.java
示例程序。
public static void DisplayActiveLocalQueues(PCF_CommonMethods pcfCM) throws PCFException,
MQDataException, IOException {
// Create the PCF message type for the inquire.
PCFMessage pcfCmd = new PCFMessage(MQConstants.MQCMD_INQUIRE_Q);
// Add the inquire rules.
// Queue name = wildcard.
pcfCmd.addParameter(MQConstants.MQCA_Q_NAME, "*");
// Queue type = LOCAL.
pcfCmd.addParameter(MQConstants.MQIA_Q_TYPE, MQConstants.MQQT_LOCAL);
// Queue depth filter = "WHERE depth > 0".
pcfCmd.addFilterParameter(MQConstants.MQIA_CURRENT_Q_DEPTH, MQConstants.MQCFOP_GREATER, 0);
// Execute the command. The returned object is an array of PCF messages.
PCFMessage[] pcfResponse = pcfCM.agent.send(pcfCmd);
// For each returned message, extract the message from the array and display the
// required information.
System.out.println("+-----+------------------------------------------------+-----+");
System.out.println("|Index| Queue Name |Depth|");
System.out.println("+-----+------------------------------------------------+-----+");
for (int index = 0; index < pcfResponse.length; index++) {
PCFMessage response = pcfResponse[index];
System.out.println("|"
+ (index + pcfCM.padding).substring(0, 5)
+ "|"
+ (response.getParameterValue(MQConstants.MQCA_Q_NAME) + pcfCM.padding).substring(0, 48)
+ "|"
+ (response.getParameterValue(MQConstants.MQIA_CURRENT_Q_DEPTH) + pcfCM.padding)
.substring(0, 5) + "|");
}
System.out.println("+-----+------------------------------------------------+-----+");
return;
}
}
答案 1 :(得分:0)
经过更多的研究,我终于找到了我想要的东西。 这个IBM的例子:Getting and setting attribute values in WebSphere MQ classes帮助我建立了调查。
我在此列表中找到的必要值:Constant Field Values。
我还需要展开{{1}}的{{1}},否则无法查询群集队列。
最终结果:
(没有openOptionsArg
)
accessQueue()