Author |
Message
|
chango |
Posted: Mon Jan 12, 2009 10:45 am Post subject: IPPROCS and OPPROCS |
|
|
Newbie
Joined: 08 Jan 2009 Posts: 7
|
what is the use and what is meant by IPPROCS and OPPROCS.
Is there a way to see what are the process related to them. |
|
Back to top |
|
 |
Vitor |
Posted: Mon Jan 12, 2009 10:57 am Post subject: Re: IPPROCS and OPPROCS |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
chango wrote: |
what is the use and what is meant by IPPROCS and OPPROCS. |
They're the number of open input and output handles on the queue.
chango wrote: |
Is there a way to see what are the process related to them. |
The DISPLAY command will give you the ids.
 _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
chango |
Posted: Mon Jan 12, 2009 11:09 am Post subject: |
|
|
Newbie
Joined: 08 Jan 2009 Posts: 7
|
what can be understood by an Input handle (Is it reading or writing on a queue).
Similarly what about Outputr handle..
By doing a display queue command we can know the number of IPPROCS and OPPROCS on that queue but to know which is the process what is the command..
Can we know that or is it the application guys can know about the process |
|
Back to top |
|
 |
Vitor |
Posted: Mon Jan 12, 2009 11:14 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
chango wrote: |
what can be understood by an Input handle (Is it reading or writing on a queue). |
It's an input handle. Guess.
chango wrote: |
Similarly what about Outputr handle.. |
Likewise guess. Or try looking them up in the documentation.
chango wrote: |
By doing a display queue command we can know the number of IPPROCS and OPPROCS on that queue but to know which is the process what is the command.. |
If you're not going to believe me when I tell you it's the DISPLAY command, why bother to ask?
chango wrote: |
Can we know that or is it the application guys can know about the process |
You can find the process. What it's doing is a question for the application developers. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
PeterPotkay |
Posted: Mon Jan 12, 2009 12:39 pm Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
Vitor wrote: |
chango wrote: |
what can be understood by an Input handle (Is it reading or writing on a queue). |
It's an input handle. Guess.
|
Maybe not so obvious to someone new and guessing. Into the q? Or into the program?
But the MQ InfoCenter will keep you from guessing. Do a search for IPROCS here:
http://publib.boulder.ibm.com/infocenter/wmqv6/v6r0/index.jsp _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
Sam Uppu |
Posted: Wed Jan 21, 2009 7:51 am Post subject: Re: IPPROCS and OPPROCS |
|
|
 Yatiri
Joined: 11 Nov 2008 Posts: 610
|
chango wrote: |
what is the use and what is meant by IPPROCS and OPPROCS.
Is there a way to see what are the process related to them. |
DISPLAY QSTATUS(QName) will give you the number of threads opened that particular queue for reading or writing msgs.
IPPROCS - will tell you how many threads are pulling(reading) the msgs from that queue.
OPPROCS - will tell you how many threads are writing the msgs onto that queue.
If you want to know which PIDs are reading/ writing msgs to that particular queue, you can use the below command:
DISPLAY QSTATUS(QName) TYPE(HANDLE) ALL
you can look for the PID and grep for that PID to know which application is using that queue. You need to look for the APPLTYPE(USER) and not the APPLTYPE(SYSTEM) . |
|
Back to top |
|
 |
gbaddeley |
Posted: Wed Jan 21, 2009 5:50 pm Post subject: |
|
|
 Jedi Knight
Joined: 25 Mar 2003 Posts: 2538 Location: Melbourne, Australia
|
chango wrote: |
what can be understood by an Input handle (Is it reading or writing on a queue). |
Think of a queue being like a file from an app point of view. The app will have it open for INPUT to get messages. The app will have it open for OUTPUT to put messages. _________________ Glenn |
|
Back to top |
|
 |
mgk |
Posted: Sun Dec 11, 2022 1:51 am Post subject: |
|
|
 Padawan
Joined: 31 Jul 2003 Posts: 1642
|
Hi bruce2359, I think Jackson32 is a bot - their reply is an identical copy on an earlier post by Sam Uppu to this thread. It should be deleted, and they should be removed. All their other posts are odd or a copy as well... _________________ MGK
The postings I make on this site are my own and don't necessarily represent IBM's positions, strategies or opinions. |
|
Back to top |
|
 |
|