ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » General IBM MQ Support » MQJExplore.............

Post new topic  Reply to topic
 MQJExplore............. « View previous topic :: View next topic » 
Author Message
amar
PostPosted: Thu Sep 12, 2002 12:00 am    Post subject: MQJExplore............. Reply with quote

Apprentice

Joined: 27 Jun 2002
Posts: 45

Hi
In MQJExplore We have some facility called..

1.Queue Statics...Using this how can mesaure put and get times??

2. i am not clear about PutAdvanceMessage and Consumemessge options also
pl can anyone explain regarding this

thanks in advance
amar
Back to top
View user's profile Send private message
kolban
PostPosted: Thu Sep 12, 2002 6:44 pm    Post subject: Reply with quote

Grand Master

Joined: 22 May 2001
Posts: 1072
Location: Fort Worth, TX, USA

Sure ... happy to explain.

Queue Statistics ... MQSeries itself captures stats on the number of messages put and got per stats interval. This is a VERY cheap accounting tool. MQJExplorer reports on this information and provides the number of messages put, number of messages got and high water mark over each interval.

The PutAdvancedMessage (really terrible name and looking for a better one), allows messages to be put to the queue from the screen, from a file or simply as unknown data of a specific size. Consume message grabs messages from a queue and throws them away ... as quickly as possible. Great for stress testing....
Back to top
View user's profile Send private message
amar
PostPosted: Thu Sep 12, 2002 11:01 pm    Post subject: Reply with quote

Apprentice

Joined: 27 Jun 2002
Posts: 45

Hi,

Thanks for reply

MQJExplore is generating reports.but it is looks like
Time,1.Q,2.Q,3.Q.4.Q
09:46:40,1,1,1,3
09:46:52,0,0,0,0
09:46:55,0,0,0,0
09:46:58,0,0,0,0
09:47:01,0,0,0,0
09:47:04,0,0,0,0
09:47:07,0,0,0,0
09:47:10,0,0,0,0
09:47:13,0,0,0,0
09:47:16,0,0,0,0
09:47:19,0,0,0,0
09:47:22,0,0,0,0
09:47:25,0,0,0,0
09:47:28,0,0,0,0
09:47:31,0,0,0,0
09:47:34,0,0,0,0
09:47:37,0,0,0,0
09:47:40,0,0,0,0
09:47:43,0,0,0,0
09:47:46,0,0,0,0
09:47:49,0,0,0,0
09:47:52,1,0,0,1
09:47:55,0,0,0,0
09:47:58,0,0,0,0
09:48:01,0,0,0,0
09:48:04,0,0,0,0
09:48:07,0,0,0,0
09:48:10,0,0,0,0
09:48:13,0,0,0,0
i am not able to understand the above what it showing..
and also how to find the put and get time from the above list.
PutAdvanceMessage also i am not clear..can u give some examples,be'z i am new this field.

regards
amar
Back to top
View user's profile Send private message
jhalstead
PostPosted: Thu Sep 12, 2002 11:43 pm    Post subject: Reply with quote

Master

Joined: 16 Aug 2001
Posts: 258
Location: London

That is comma delimited, if you open it up in Excel it'll give you a nice little spreadsheet. It is showing you the queue depth at each measurement interval, from this you can work out the growth of a queues depth. It does not show the gets or puts per second, these are only displayed on the screen... Unless there is some setting that I haven't discovered yet.

As for the "advanced put" just play around with it!

Let say in the course of your testing you want to put a message with specific data content on the queue, this provides a simple machanism.

Select the 'screen' radio button, and enter your text in the screen source field. On the left there is a count field enter the number of instances of the message you want to insert to the queue and then press the put button. Once you've done this you can go back to the previous screen and browse the queue you just added the message to and hava look (providing it's a local queue!)

If you've got your message content in a file select the 'file radio button' browse to the file location and then press put.

If you don't care about the message content (you just want a certain length chunk of message data) then you can use the 'size' radio button, fill in the size source field and press put, this will generate the message data for you, cycling through all the ascii characters.

Once you get more advanced with your mq usage / testing you may want to satrt amending the MQMD header (this is a structure attached to the top of all messages which the queue manager itself uses) by using the MQMD tab. Similarly the MQRFH tab allows you to add an MQRFH2 header which will be of use if you're using MQSI....

Hope that is some help, just have a bit of a play with it eh?

Jamie
Back to top
View user's profile Send private message Send e-mail
amar
PostPosted: Fri Sep 13, 2002 9:50 pm    Post subject: Reply with quote

Apprentice

Joined: 27 Jun 2002
Posts: 45

Hi

Thanks for ur reply,It is really helpfull ....
But my requirements is
i want to know gets and puts time for each Queue,can u suggest any other tool.
and also in MQJEXplore each Queue is haveing properties called OpenInputCount and OpenOutputCount can u explain....

Thanks in Advance
amar

[/quote]
Back to top
View user's profile Send private message
kolban
PostPosted: Mon Sep 16, 2002 4:18 am    Post subject: Reply with quote

Grand Master

Joined: 22 May 2001
Posts: 1072
Location: Fort Worth, TX, USA

The OpenInputCount and OpenOutputCount are attributes of MQ and are only reported by MQJExplorer. The OpenInputCount is the number of MQOPENs for input that are current on the queue across all applications. The OpenOutputCount is the number of MQOPENs for output that are current on the queue across all applications.
Back to top
View user's profile Send private message
amar
PostPosted: Tue Sep 17, 2002 11:21 pm    Post subject: Reply with quote

Apprentice

Joined: 27 Jun 2002
Posts: 45

Hi kolban

Thanks for reply, Now the problem is i want to know gets and puts time for each Queue,can u suggest ,How to find timing for each Queue?

thanks in advance
amar
Back to top
View user's profile Send private message
kolban
PostPosted: Wed Sep 18, 2002 4:52 am    Post subject: Reply with quote

Grand Master

Joined: 22 May 2001
Posts: 1072
Location: Fort Worth, TX, USA

What do you mean by "gets and puts time for each queue"? Please be as wordy as possible. Its my fault, but I'm not understanding.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » General IBM MQ Support » MQJExplore.............
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.