Author |
Message |
Topic: AMQ6119...it seems applications get stuck connecting to QM |
sc
Replies: 3 Views: 3648
|
Forum: General IBM MQ Support Posted: Sun Jun 06, 2004 6:07 pm Subject: AMQ6119...it seems applications get stuck connecting to QM |
Try ipcs to show the inter-process shared memory and semaphores.
On solaris, ipcsrm could be used do the cleanup based on identifiers. I think similar command exists on HPUX |
Topic: I can't run AMQSPUT, AMQSGET |
sc
Replies: 10 Views: 11729
|
Forum: General IBM MQ Support Posted: Fri May 21, 2004 8:14 pm Subject: I can't run AMQSPUT, AMQSGET |
About your another problem with gsk6ikm, make sure setup JAVA_HOME with JDK1.3 or above. Then you can using CMS key database type. |
Topic: Max Listener Connections |
sc
Replies: 2 Views: 2055
|
Forum: General IBM MQ Support Posted: Fri Apr 09, 2004 1:34 pm Subject: Max Listener Connections |
My understanding is that each time you try to connect to a listener, the listener will create a new thread to process your request and use new port number for that socket.
So the max possible paral ... |
Topic: Restrict number of input/output process on local queue |
sc
Replies: 7 Views: 5823
|
Forum: General IBM MQ Support Posted: Wed Mar 17, 2004 2:30 pm Subject: Restrict number of input/output process on local queue |
We like to restrict the number of process which open a local queue to do input/output. The reason is that we like to dequeue and process the messages in the strict order, one finished, then anthoer. A ... |
Topic: connect two local queues on the same qmgr |
sc
Replies: 18 Views: 10208
|
Forum: General IBM MQ Support Posted: Wed Mar 10, 2004 8:05 am Subject: connect two local queues on the same qmgr |
Thanks Peter and all others for replying my post.
Just recap:
1. Upgrade MQ to V5.3 from 5.2
2. Set MAXDEPTH to 999 999 999
3. Set MRRTR and MRTMR to proper value on RECV channle |
Topic: connect two local queues on the same qmgr |
sc
Replies: 18 Views: 10208
|
Forum: General IBM MQ Support Posted: Tue Mar 09, 2004 2:51 pm Subject: connect two local queues on the same qmgr |
Thanks for all the replies.
We are planning to upgrade to V5.3 and will set maxdepth to 999 999 999.
Another question:
When sometimes RECV application is slower SEND applicaiton, the message ... |
Topic: connect two local queues on the same qmgr |
sc
Replies: 18 Views: 10208
|
Forum: General IBM MQ Support Posted: Fri Feb 27, 2004 12:48 pm Subject: connect two local queues on the same qmgr |
We cannot start another application to consume messages becasue the order of the messages is very important. The messages need be retrieved then applied to database. Two concurrent applcation could me ... |
Topic: connect two local queues on the same qmgr |
sc
Replies: 18 Views: 10208
|
Forum: General IBM MQ Support Posted: Thu Feb 26, 2004 12:53 pm Subject: connect two local queues on the same qmgr |
Thanks for the reply.
Currently we used Queue Alias for Application A putting messages then Application B retrieving from there. Sometimes the receiving is slower than then sending so it could fill ... |
Topic: connect two local queues on the same qmgr |
sc
Replies: 18 Views: 10208
|
Forum: General IBM MQ Support Posted: Thu Feb 26, 2004 12:47 pm Subject: connect two local queues on the same qmgr |
On solaris, the max depth you can set for the local queue is 640K. It is MQ-specified limit. |
Topic: connect two local queues on the same qmgr |
sc
Replies: 18 Views: 10208
|
Forum: General IBM MQ Support Posted: Thu Feb 26, 2004 11:38 am Subject: connect two local queues on the same qmgr |
Can I define two local queues on the same QMgr then connect them together? Say if I put message on local Queue A it will then automatically send to another local Queue B.
The reason is that the max ... |
Topic: Another question about MQ monitoring tools |
sc
Replies: 7 Views: 14080
|
Forum: IBM MQ Performance Monitoring Posted: Tue Oct 21, 2003 1:18 pm Subject: Another question about MQ monitoring tools |
zpat,
I checked the MQ update site but cannot find the code that mentioned in your reply. Could you post the link again?
Thank you very much. |
Topic: How NOT to use DLQ for the local queue? |
sc
Replies: 6 Views: 4407
|
Forum: General IBM MQ Support Posted: Mon Oct 13, 2003 7:49 am Subject: How NOT to use DLQ for the local queue? |
mathew,
Does your solution of using OAM require the principal that had permission to put messages into local recv queue but cannot put into DLQ? If that is the case, Does it mean that I need explic ... |
Topic: How NOT to use DLQ for the local queue? |
sc
Replies: 6 Views: 4407
|
Forum: General IBM MQ Support Posted: Sun Oct 12, 2003 6:09 pm Subject: How NOT to use DLQ for the local queue? |
Thanks for the reply.
Actually there are some local queues which need the DLQ setting for the QMgr. So I cannot just set DLQ of Qmgr to NULL as other may use it.
But for my local queue, I don't ... |
Topic: How NOT to use DLQ for the local queue? |
sc
Replies: 6 Views: 4407
|
Forum: General IBM MQ Support Posted: Sat Oct 11, 2003 6:27 pm Subject: How NOT to use DLQ for the local queue? |
There is Dead Letter Queue defined for the QueueManager. We had a local queue which receives messages from remote QueueManager. We don't want messages moved to DLQ after that recv queue reached maximu ... |
Topic: Poison message |
sc
Replies: 3 Views: 2857
|
Forum: IBM MQ Java / JMS Posted: Wed Oct 08, 2003 8:03 pm Subject: Poison message |
Actually you could use Message.getLongProperty("JMSXDeliveryCount") to find the backout count for specified message. Use another property name to find the value of backout queue name. |