SlideShare una empresa de Scribd logo
1 de 42
Descargar para leer sin conexión
© 2014 IBM Corporation
AMC-1877
IBM WebSphere MQ for z/OS
Performance & Accounting
Paul S Dennis
WebSphere MQ for z/OS Development
Agenda
• What are you trying to achieve?
• What is my Queue Manager doing?
• What are my channels doing?
What are you trying to achieve?
• Understand what you are using
• Use what you have efficiently
• Understanding what you are going to use
• Save MIPS and money!!
What is my Queue Manager doing?
• Queue Manager STAT trace (SMF115) can give a lot of
information about what is going on
• Insignificant cost to have this on all the time
• Keep historical data to see trends
• Easy to see a high level view of activity
• How many API calls are happening?
• How much logging is happening?
• How are my bufferpools behaving?
How many API calls are happening?
• Message manager data (QMST) gives counts of APIs
during SMF interval
• Includes successful and failed API calls
• Counts both MQGETs that returned a message and those
that didn’t!
• Written to MSGM and MSGMCSV DD by MQSMF
• Do you know what your daily profile looks like?
• Do you have busy days each month? What is the trend?
169326314702392401:00:0031/03/2014MQ1AMVSA
227198429142721200:30:0031/03/2014MQ1AMVSA
306587541205397900:00:0031/03/2014MQ1AMVSA
GetsPut1sPutsTimeDateQMMVS
Do you know what your daily profile looks like?
0
200000
400000
600000
800000
1000000
1200000
1400000
1600000
00:00:0001:30:0003:00:0004:30:0006:00:0007:30:0009:00:0010:30:0012:00:0013:30:0015:00:0016:30:0018:00:0019:30:0021:00:0022:30:00
APICallsper30mins
MQPUT
MQPUT1
MQGET
How much logging is happening?
• Constraint for persistent messages is normally logging rate
• All persistent data changes are logged
• Mainly MQPUTs and MQGETs of persistent messages
• Also object changes etc
• Primary reporting is on CIs (Control Intervals)
• 4KB Pages
• If using Dual Logging – 2 CIs written per 4KB page
• Do you have I/O issues?
• Are you checkpointing more than you should?
• Are you backing out more than you should?
Logging Statistics
Write_Wait 0, Write_Nowait 538306, Write_Force 193
Read_Stor 0, Read_Active 0, Read_Archive 0
BSDS_Reqs 703, CIs_Created 61037, BFWR 7478
ALW 6, CIs_Offload 60480, Checkpoints 0
Read delayed 0, Tape Lookahead 0, Lookahead Mount 0
Write_Susp 7430, Write_Reqs 12007, CI_Writes 64629
Write_Serl 0, Write_Thrsh 48, Buff_Pagein 0
WTB 0
TVC 0
ALR 0
_____,__ write requests, CIs, Average I/O , After I/O , pages/IO
uSec , uSec ,
Log 1, 1 page 7500, 7500, 312, 5, 1
Log 1,>1 page 4507, 57129, 617, 6, 13
Standard deviation of first log, 1 page per I/O, response time +- 3
Log 1, 1 page Longest I/O 3914 at 2014/04/10,08:55:57.429543 UTC
Log 1, 1 page Longest Request 3918 at 2014/04/10,08:55:57.429543 UTC
Log 1,>1 page Longest I/O 34352 at 2014/04/10,08:55:57.392493 UTC
Log 1,>1 page Longest Request 34361 at 2014/04/10,08:55:57.392493 UTC
Log write rate 2MB/s per copy
Logger busy:
Interval: 121 Idle: 115206421 (us)( 95%) LogIOSusp: 5193950 (us)( 4%)
Logging Statistics
• If WTB > 0 indicates waits for buffers to be written
• OUTBUFF might need to be increased
• Or might be slow DASD
• Checkpoints value is only incremented when LOGLOAD causes
checkpoint, not a log switch
• CI_Writes shows 64629 4KB pages have been written
• 2.1MB/Sec avg because SMF interval is 2 mins = VERY LOW!
• QMGR was using single logging
• If Read_ values > 0 indicates applications had been backing out
• Expect if QMGR has just been started up
• Longest page I/O took 3.9ms
• Useful if investigating performance issues, disk issues?
• For 1 page I/O, time should be fairly stable
• Logger with 95% idle in this test!
How are my bufferpools behaving?
• All private queue messages that are put or got will be using
buffers in the bufferpool
• A badly configured bufferpool may have a significant
impact on performance
• Or waste a lot of storage!
• Configuration of bufferpools depends on how they are
going to be used
• Short-lived messages - keeping whole working set of
messages in bufferpool
• long-lived messages – More messages than can be contained
in memory, will always hit disk before being got
Bufferpool Statistics
= BPool 1, Size 5000,%full now 80, Highest %full 92, Disk reads 27019
> 01 Buffs 5000 Low 390 Now 979 Getp 1408819 Getn 137508
01 Rio 27019 STW 648745 TPW 26587 WIO 2417 IMW 12
01 DWT 1236 DMC 0 STL 72300 STLA 8 SOS 0
01 Above the bar PAGECLAS 4KB
Bufferpool Statistics (QPST)
• SOS, STLA and DMC should be 0
• Consider increasing bufferpool size if not
• Asynchronous write threshold (DWT) reached 1236 times
• number of 'dirty' pages >= 85% total pages
• Synchronous write threshold (DMC) not reached
• number of 'dirty' pages >= 95% total pages
• For MQ v8, shows if bufferpool is above the bar, and also if
page-fixed or not
Bufferpools for short-lived messages
• Aiming to keep the full working set of message in memory
• DWT should be zero
• Always at least 15% buffers free
• TPW (Pages Written) might be greater than zero due to
checkpointing activity
• But we shouldn’t be writing because of bufferpool getting full!
• RIO (Read operations) should be zero
• If we have everything in memory, we shouldn’t need to read
from the pageset!
• unless messages are being read from a page set after the
queue manager is restarted
• You are recommended to have sufficient buffers to handle
your peak message rate.
Bufferpools for long-lived messages
• Expecting messages to be written to and read from page
set
• (RIO+TPW)/Statistics interval is the I/O rate to page sets
• During period that messages are processed (eg written
during day and processed overnight)
• Number of read I/Os (RIO) should be approximately the total
number of pages written (TPW).
• Shows that one page is read for every page written.
• If RIO is much larger than TPW, pages are being read in
multiple times.
• Might be a result of the application get by id when queue not
indexed
Application Activity
• Detailed application activity captured in SMF116 records
• START TRACE(ACCTG) CLASS(3)
• Can control at queue level using ACCTQ
• Costs 5-10% CPU overhead
• Heavyweight – multiple records may be cut for each transaction, and at
SMF intervals for long running UoWs
• Turning this on has been known to swamp an SMF environment
• But you get lots of useful information about what is being done!
• Task/thread and queue statistics
• Even though they are prolific:
• Turn on for a few minutes each month to get view of activity
• Become familiar with the data and with the patterns of WMQ usage
Application Activity
Open name AP01_REP_MQ20_DC_0_0007 Object type:Local Queue
Base name AP01_REP_MQ20_DC_0_0007 Base type :Queue
Queue indexed by NONE
First opened 10-04-2014 08:52:48.62
Last closed 10-04-2014 08:52:49.69
Page set ID 4, Buffer pool 1
Current opens 0, Total requests 158
Generated messages : 0
Persistent messages: GETs 37, PUTs 0, PUT1s 0
Put to waiting getter: PUT 0, PUT1 0
Put direct to shared queue: 0
GETs: Valid 78, Max size 9824, Min size 75, Total bytes 151197
GETs: Dest-S 156, Dest-G 0, Brow-S 0, Brow-G 0,
Successful destructive 78
Time on queue : Max 0.348850, Min 0.118915, Avg 0.231072 seconds
-MQ call- N ET CT Susp LOGW PSET Epages skip expire
Open : 1 20 20 0
Close : 1 6 6 0
Get : 156 43 38 0 0 0 0 570 0
Maximum depth encountered 154
Application Activity
• For GET operations, non-zero skip value indicates we
should consider indexing queue
• Dest-S shows get for specific message
• Can see a single open/close for queue with multiple gets
• This is good!
• Look for applications repeatedly opening and closing queues
• Can use output to identify busy queues etc
• Pageset/bufferpool allocation
Chinit SMF
V8.0
Chinit SMF - Overview
• Additional SMF data for Chinit address space and channel
activity to enable:
• Monitoring
• Capacity planning
• Tuning
• Separate controls from queue manager SMF allows 'opt in'
• Updated MP1B SupportPac will format the data and
introduces rule based reporting
Chinit SMF - Controls
• You can START Chinit STAT trace by:
• You can START Chinit ACCTG trace by:
• You can display trace by:
• ALTER and STOP TRACE commands have also been updated
!MQ08 START TRACE(STAT) CLASS(4)
CSQW130I !MQ08 'STAT' TRACE STARTED, ASSIGNED TRACE NUMBER 05
CSQ9022I !MQ08 CSQWVCM1 ' START TRACE' NORMAL COMPLETION
!MQ08 DISPLAY TRACE(*)
CSQW127I !MQ08 CURRENT TRACE ACTIVITY IS -
TNO TYPE CLASS DEST USERID RMID
02 STAT 01 SMF * *
05 STAT 04 SMF * *
06 ACCTG 04 SMF * *
END OF TRACE REPORT
!MQ08 START TRACE(ACCTG) CLASS(4)
CSQW130I !MQ08 ‘ACCTG' TRACE STARTED, ASSIGNED TRACE NUMBER 06
CSQ9022I !MQ08 CSQWVCM1 ' START TRACE' NORMAL COMPLETION
Chinit SMF - Controls
• SMF data collected on SMF interval of QMGR
• Can be same as z/OS SMF interval
• Chinit STAT trace allows high level view of activity
• Chinit ACCTG trace allows detailed view at channel level
• STATCHL attribute on channel to control granularity
• Data collected is a superset of that collected on distributed
with STATCHL message
Chinit SMF: New record subtypes and DSECTs
• SMF 115
• Subtype 231 (0xE7=‘X’) for CHINIT control information
• e.g. adapter and dispatcher CPU time etc. to help with tuning
numbers of tasks configured
• DNS resolution times
• SMF 116
• Subtype 10 for per channel 'accounting' data
• Bytes sent, achieved batch size etc.
• New DSECTs
• CSQDQWSX (QWSX) : Self defining section for subtype 231 which
consists of:
• CSQDQWHS (QWHS) : Standard header
• CSQDQCCT (QCCT) : Definition for CHINIT control information
• CSQDQWS5 (QWS5) : Self defining section for subtype 10 which
consists of:
• CSQDQWHS (QWHS) : Standard header
• CSQDQCST (QCST) : Definition for channel status data
Statistics vs Accounting
• Statistics
• Information about number of channels and TCB usage
• Dispatchers, Adapters, SSL, DNS
• Do I need more dispatchers? Adapters?
• Do I have spare capacity?
• Accounting
• What have the channels done?
• What are the high use channels?
CHINIT Summary
MV45,MQ20,2014/04/08,20:43:57,VRM:800,
From 2014/04/08,20:41:54.984681 to 2014/04/08,20:43:57.237939
duration 122.253258 seconds
Number of current channels..................... 20
Number of active channels .... ................ 20
MAXCHL. Max allowed current channels........... 602
ACTCHL. Max allowed active channels............ 602
TCPCHL. Max allowed TCP/IP channels............ 602
LU62CHL. Max allowed LU62 channels............. 602
Storage used by Chinit......................... 22MB
CHINIT Summary
• Number of current and active channels
• How close are you getting to the maximums?
• CHINIT Storage Usage
• 31-bit usage, but not much in 64-bit for CHINIT
• Are these trending upwards?
• Monitor over time
1 2 3 4 5 6 7 8 9 10 11 12 13 14
0
500
1000
1500
2000
2500
3000
Number of current channels
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
0
50
100
150
200
250
300
350
400
450
500
STG used in MB
Dispatchers
MV45,MQ20,2014/04/08,20:43:57,VRM:800,
From 2014/04/08,20:41:54.984681 to 2014/04/08,20:43:57.237939
duration 122.253258 seconds
Task,Type,Requests,Busy %, CPU used, CPU %,"avg CPU","avg ET"
, , , , Seconds, , uSeconds,uSeconds
0,DISP, 46, 0.0, 0.000000, 0.0, 12, 14
1,DISP, 168912, 1.4, 0.028218, 0.0, 8, 10
2,DISP, 168656, 1.3, 0.025142, 0.0, 7, 10
3,DISP, 0, 0.0, 0.000000, 0.0, 0, 0
4,DISP, 0, 0.0, 0.000000, 0.0, 0, 0
Summ,DISP, 337614, 0.6, 0.053360, 0.0, 9, 10
0,DISP, number of channels on this TCB, 0
1,DISP, number of channels on this TCB, 10
2,DISP, number of channels on this TCB, 10
3,DISP, number of channels on this TCB, 0
4,DISP, number of channels on this TCB, 0
Summ,DISP, number of channels on all TCBs, 20
Dispatchers
• Dispatcher requests are TCP Send/Receive – few waits
• Average ET/CPU should be close
• If not, might show short of CPU
• Adding more dispatchers might not speed things up if you
have more dispatchers than number of CPs available
• Busy% shows if dispatcher has spare capacity
• Requests spread across channels
• Channel has affinity with dispatcher until it restarts
Adapters
MV45,MQ20,2014/04/08,20:43:57,VRM:800,
From 2014/04/08,20:41:54.984681 to 2014/04/08,20:43:57.237939
duration 122.253258 seconds
Task,Type,Requests,Busy %, CPU used, CPU %,"avg CPU","avg ET"
, , , , Seconds, , uSeconds,uSeconds
0,ADAP, 127599, 16.5, 0.953615, 0.8, 7, 158
1,ADAP, 46790, 7.6, 0.309678, 0.3, 7, 199
2,ADAP, 13702, 3.2, 0.065380, 0.1, 5, 284
3,ADAP, 2909, 0.7, 0.029541, 0.0, 10, 279
4,ADAP, 395, 0.1, 0.003179, 0.0, 8, 392
5,ADAP, 37, 0.0, 0.000241, 0.0, 7, 149
6,ADAP, 10, 0.0, 0.000175, 0.0, 17, 111
7,ADAP, 0, 0.0, 0.000000, 0.0, 0, 0
Summ,ADAP, 191442, 3.5, 1.361809, 0.1, 7, 179
Adapters
• MQ request uses first free adapter
• Expect to see decreasing busyness
• We have never used all the adapters at the same time
• No need to add more adapters
• If last adapter has been busy, look at adding more!
• Elapsed time can include disk waits – eg commit
DNS
MV45,MQ20,2014/04/08,20:41:54,VRM:800,
From 2014/04/08,20:40:07.101220 to 2014/04/08,20:41:54.984681
duration 107.883460 seconds
Task,Type,Requests,Busy %, CPU used, CPU %,
, , , , Seconds, ,
0,DNS , 24, 0.0, 0.007980, 0.0,
Summ,DNS , 24, 0.0, 0.007980, 0.0,
"avg CPU","avg ET",longest ,date ,time
uSeconds,uSeconds,uSeconds, ,
332, 1031, 24284,2014/04/08,20:41:49.573730
332, 1031, 24284,2014/04/08,20:41:49.573730
DNS
• One DNS task
• If this task is very busy, let IBM know!
• Longest request was 24284 micro second
• Date and time fields show when this happened
• Message CSQX788I DNS lookup for address … took xx
seconds
• If more than 3 seconds
SSL
MV45,SS09,2014/04/10,23:22:24,VRM:800,
From 2014/04/10,22:53:26.883960 to 2014/04/10,23:22:24.204176 duration
1737.320215 seconds
Task,Type,Requests,Busy %, CPU used, CPU %,"avg CPU","avg ET"
, , , , Seconds, , uSeconds,uSeconds
0,SSL , 109843, 0.3, 0.594580, 0.0, 5, 42,
1,SSL , 130180, 0.3, 0.713966, 0.0, 5, 41,
2,SSL , 117544, 0.3, 0.703146, 0.0, 6, 42,
3,SSL , 145944, 0.4, 0.830535, 0.0, 6, 43,
4,SSL , 123825, 0.3, 0.679656, 0.0, 5, 43,
longest ,date ,time
uSeconds, ,
229638,2014/04/10,22:54:34.264949
255082,2014/04/10,22:54:54.302855
230501,2014/04/10,22:54:43.958105
280241,2014/04/10,22:54:53.499979
361212,2014/04/10,22:54:53.599940
SSL
• CPU time expected to be less than Elapsed Time due to
offload of crypto operations
• Long busy times seen in example were due to lots of
channels starting up at the same time
• Adding more SSL tasks might not speed things up if waiting
for external hardware
Accounting Information
• Using the ACCTG trace CLASS(4) enables collection of
individual channel information
• Channels can be included/excluded from collection
• STATCHL for predefined channels – per channel basis
• QMGR STATACLS for auto-defined (cluster) channels
• Controls all auto-defined channels, not individually
• QMGR STATCHL for client channels
• Generally low cost as most channels are long lived
• Consider if you have lot of short lived client connections
• Gives detailed information for each channel
• What has the channel done?
• What are my busy channels?
Channel Information (1)
127.0.0.1 MQ89_1 Connection name 127.0.0.1
127.0.0.1 MQ89_1 Remote qmgr/app MQ89
127.0.0.1 MQ89_1 Channel disp PRIVATE
127.0.0.1 MQ89_1 Channel type SENDER
127.0.0.1 MQ89_1 Channel status RUNNING
127.0.0.1 MQ89_1 Channel STATCHL HIGH
127.0.0.1 MQ89_1 Channel started date & time 2014/04/08,19:41:48
127.0.0.1 MQ89_1 Channel stopped time
127.0.0.1 MQ89_1 Channel status collect time 2014/04/08,19:43:57
127.0.0.1 MQ89_1 Last msg time 2014/04/08,19:43:52
127.0.0.1 MQ89_1 Active for 122 seconds
127.0.0.1 MQ89_1 Batch size 50
127.0.0.1 MQ89_1 Messages/batch 38.9
127.0.0.1 MQ89_1 Number of messages 2,998
127.0.0.1 MQ89_1 Number of persistent messages 1,506
127.0.0.1 MQ89_1 Number of batches 77
127.0.0.1 MQ89_1 Number of full batches 42
127.0.0.1 MQ89_1 Number of partial batches 35
127.0.0.1 MQ89_1 Buffers sent 3,319
127.0.0.1 MQ89_1 Buffers received 109
127.0.0.1 MQ89_1 Xmitq empty count 13
Channel Information (2)
127.0.0.1 MQ89_1 Message data 17,198,653 16 MB
127.0.0.1 MQ89_1 Persistent message data 4,251,780 4 MB
127.0.0.1 MQ89_1 Non persistent message data 12,946,873 12 MB
127.0.0.1 MQ89_1 Total bytes sent 17,200,221 16 MB
127.0.0.1 MQ89_1 Total bytes received 3,052 2 KB
127.0.0.1 MQ89_1 Bytes received/Batch 39 39 B
127.0.0.1 MQ89_1 Bytes sent/Batch 223,379 218 KB
127.0.0.1 MQ89_1 Batches/Second 0
127.0.0.1 MQ89_1 Bytes received/message 1 1 B
127.0.0.1 MQ89_1 Bytes sent/message 5,737 5 KB
127.0.0.1 MQ89_1 Bytes received/second 25 25 B/sec
127.0.0.1 MQ89_1 Bytes sent/second 140,985 137 KB/sec
127.0.0.1 MQ89_1 Compression rate 0
127.0.0.1 MQ89_1 Exit time average 0 uSec
127.0.0.1 MQ89_1 DNS resolution time 0 uSec
127.0.0.1 MQ89_1 Net time average 312 uSec
127.0.0.1 MQ89_1 Net time min 43 uSec
127.0.0.1 MQ89_1 Net time max 4,998 uSec
127.0.0.1 MQ89_1 Net time max date&time 2014/04/08,19:43:52
Channel Information
• Uniquely identify channel with connection name, channel
name and remote qmgr name
• Not all of the batches were full
• BATCHSZ, BATCHLIM and arrival of message impacts this
• About half messages send were persistent
• Total message data of about 16MB sent during interval
• Average message size about 5KB
• Bytes sent/received per sec as average over interval
• Monitor channel usage over time
• MP1B outputs data to CSV files
• Look for trends
http://www.ibm.com/software/integration/support/supportpacs/
For more information
MP1B Interpreting Accounting and Statistics Data
MP1H
WebSphere MQ for z/OS V7.1
Performance Report
MP1G
WebSphere MQ for z/OS V7.0.1
Performance Report
MP15 Program to Print SMF Statistics
MP16 Capacity Planning and Tuning
© 2014 IBM Corporation
Questions?
We Value Your Feedback
• Don’t forget to submit your Impact session and speaker
feedback! Your feedback is very important to us – we use
it to continually improve the conference.
• Use the Conference Mobile App or the online Agenda
Builder to quickly submit your survey
• Navigate to “Surveys” to see a view of surveys for
sessions you’ve attended
40
Thank You
Legal Disclaimer
• © IBM Corporation 2014. All Rights Reserved.
• The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained
in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are
subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing
contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and
conditions of the applicable license agreement governing the use of IBM software.
• References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or
capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to
future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by
you will result in any specific sales, revenue growth or other results.
• Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will
experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user's job stream, the I/O configuration, the storage
configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here.
• IBM, the IBM logo and WebSphere are trademarks of International Business Machines Corporation in the United States, other countries, or both.

Más contenido relacionado

Similar a IBM Impact 2014 AMC-1877: IBM WebSphere MQ for z/OS: Performance & Accounting

Similar a IBM Impact 2014 AMC-1877: IBM WebSphere MQ for z/OS: Performance & Accounting (20)

Metrics driven development with dedicated Observability Team
Metrics driven development with dedicated Observability TeamMetrics driven development with dedicated Observability Team
Metrics driven development with dedicated Observability Team
 
(WEB401) Optimizing Your Web Server on AWS | AWS re:Invent 2014
(WEB401) Optimizing Your Web Server on AWS | AWS re:Invent 2014(WEB401) Optimizing Your Web Server on AWS | AWS re:Invent 2014
(WEB401) Optimizing Your Web Server on AWS | AWS re:Invent 2014
 
Rate limits and all about
Rate limits and all aboutRate limits and all about
Rate limits and all about
 
16aug06.ppt
16aug06.ppt16aug06.ppt
16aug06.ppt
 
Flow Tuning: Mule 3 vs. Mule 4 - MuleSoft Chicago CONNECT
Flow Tuning: Mule 3 vs. Mule 4 - MuleSoft Chicago CONNECTFlow Tuning: Mule 3 vs. Mule 4 - MuleSoft Chicago CONNECT
Flow Tuning: Mule 3 vs. Mule 4 - MuleSoft Chicago CONNECT
 
Taking Full Advantage of Galera Multi Master Cluster
Taking Full Advantage of Galera Multi Master ClusterTaking Full Advantage of Galera Multi Master Cluster
Taking Full Advantage of Galera Multi Master Cluster
 
Analyzing and Interpreting AWR
Analyzing and Interpreting AWRAnalyzing and Interpreting AWR
Analyzing and Interpreting AWR
 
z/VM Performance Analysis
z/VM Performance Analysisz/VM Performance Analysis
z/VM Performance Analysis
 
Amazon RDS for MySQL – Diagnostics, Security, and Data Migration (DAT302) | A...
Amazon RDS for MySQL – Diagnostics, Security, and Data Migration (DAT302) | A...Amazon RDS for MySQL – Diagnostics, Security, and Data Migration (DAT302) | A...
Amazon RDS for MySQL – Diagnostics, Security, and Data Migration (DAT302) | A...
 
Resolving Firebird performance problems
Resolving Firebird performance problemsResolving Firebird performance problems
Resolving Firebird performance problems
 
Full scan frenzy at amadeus
Full scan frenzy at amadeusFull scan frenzy at amadeus
Full scan frenzy at amadeus
 
Otimizando servidores web
Otimizando servidores webOtimizando servidores web
Otimizando servidores web
 
Cassandra in xPatterns
Cassandra in xPatternsCassandra in xPatterns
Cassandra in xPatterns
 
Scaling FreeSWITCH Performance
Scaling FreeSWITCH PerformanceScaling FreeSWITCH Performance
Scaling FreeSWITCH Performance
 
Aerospike Go Language Client
Aerospike Go Language ClientAerospike Go Language Client
Aerospike Go Language Client
 
Clock-8086 bus cycle
Clock-8086 bus cycleClock-8086 bus cycle
Clock-8086 bus cycle
 
Mule Runtime: Performance Tuning
Mule Runtime: Performance Tuning Mule Runtime: Performance Tuning
Mule Runtime: Performance Tuning
 
SVC / Storwize: cache partition analysis (BVQ howto)
SVC / Storwize: cache partition analysis  (BVQ howto)   SVC / Storwize: cache partition analysis  (BVQ howto)
SVC / Storwize: cache partition analysis (BVQ howto)
 
Objects? No thanks!
Objects? No thanks!Objects? No thanks!
Objects? No thanks!
 
Big Data Warehousing Meetup: Real-time Trade Data Monitoring with Storm & Cas...
Big Data Warehousing Meetup: Real-time Trade Data Monitoring with Storm & Cas...Big Data Warehousing Meetup: Real-time Trade Data Monitoring with Storm & Cas...
Big Data Warehousing Meetup: Real-time Trade Data Monitoring with Storm & Cas...
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 

Último (20)

Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 

IBM Impact 2014 AMC-1877: IBM WebSphere MQ for z/OS: Performance & Accounting

  • 1. © 2014 IBM Corporation AMC-1877 IBM WebSphere MQ for z/OS Performance & Accounting Paul S Dennis WebSphere MQ for z/OS Development
  • 2. Agenda • What are you trying to achieve? • What is my Queue Manager doing? • What are my channels doing?
  • 3. What are you trying to achieve? • Understand what you are using • Use what you have efficiently • Understanding what you are going to use • Save MIPS and money!!
  • 4. What is my Queue Manager doing? • Queue Manager STAT trace (SMF115) can give a lot of information about what is going on • Insignificant cost to have this on all the time • Keep historical data to see trends • Easy to see a high level view of activity • How many API calls are happening? • How much logging is happening? • How are my bufferpools behaving?
  • 5. How many API calls are happening? • Message manager data (QMST) gives counts of APIs during SMF interval • Includes successful and failed API calls • Counts both MQGETs that returned a message and those that didn’t! • Written to MSGM and MSGMCSV DD by MQSMF • Do you know what your daily profile looks like? • Do you have busy days each month? What is the trend? 169326314702392401:00:0031/03/2014MQ1AMVSA 227198429142721200:30:0031/03/2014MQ1AMVSA 306587541205397900:00:0031/03/2014MQ1AMVSA GetsPut1sPutsTimeDateQMMVS
  • 6. Do you know what your daily profile looks like? 0 200000 400000 600000 800000 1000000 1200000 1400000 1600000 00:00:0001:30:0003:00:0004:30:0006:00:0007:30:0009:00:0010:30:0012:00:0013:30:0015:00:0016:30:0018:00:0019:30:0021:00:0022:30:00 APICallsper30mins MQPUT MQPUT1 MQGET
  • 7. How much logging is happening? • Constraint for persistent messages is normally logging rate • All persistent data changes are logged • Mainly MQPUTs and MQGETs of persistent messages • Also object changes etc • Primary reporting is on CIs (Control Intervals) • 4KB Pages • If using Dual Logging – 2 CIs written per 4KB page • Do you have I/O issues? • Are you checkpointing more than you should? • Are you backing out more than you should?
  • 8. Logging Statistics Write_Wait 0, Write_Nowait 538306, Write_Force 193 Read_Stor 0, Read_Active 0, Read_Archive 0 BSDS_Reqs 703, CIs_Created 61037, BFWR 7478 ALW 6, CIs_Offload 60480, Checkpoints 0 Read delayed 0, Tape Lookahead 0, Lookahead Mount 0 Write_Susp 7430, Write_Reqs 12007, CI_Writes 64629 Write_Serl 0, Write_Thrsh 48, Buff_Pagein 0 WTB 0 TVC 0 ALR 0 _____,__ write requests, CIs, Average I/O , After I/O , pages/IO uSec , uSec , Log 1, 1 page 7500, 7500, 312, 5, 1 Log 1,>1 page 4507, 57129, 617, 6, 13 Standard deviation of first log, 1 page per I/O, response time +- 3 Log 1, 1 page Longest I/O 3914 at 2014/04/10,08:55:57.429543 UTC Log 1, 1 page Longest Request 3918 at 2014/04/10,08:55:57.429543 UTC Log 1,>1 page Longest I/O 34352 at 2014/04/10,08:55:57.392493 UTC Log 1,>1 page Longest Request 34361 at 2014/04/10,08:55:57.392493 UTC Log write rate 2MB/s per copy Logger busy: Interval: 121 Idle: 115206421 (us)( 95%) LogIOSusp: 5193950 (us)( 4%)
  • 9. Logging Statistics • If WTB > 0 indicates waits for buffers to be written • OUTBUFF might need to be increased • Or might be slow DASD • Checkpoints value is only incremented when LOGLOAD causes checkpoint, not a log switch • CI_Writes shows 64629 4KB pages have been written • 2.1MB/Sec avg because SMF interval is 2 mins = VERY LOW! • QMGR was using single logging • If Read_ values > 0 indicates applications had been backing out • Expect if QMGR has just been started up • Longest page I/O took 3.9ms • Useful if investigating performance issues, disk issues? • For 1 page I/O, time should be fairly stable • Logger with 95% idle in this test!
  • 10. How are my bufferpools behaving? • All private queue messages that are put or got will be using buffers in the bufferpool • A badly configured bufferpool may have a significant impact on performance • Or waste a lot of storage! • Configuration of bufferpools depends on how they are going to be used • Short-lived messages - keeping whole working set of messages in bufferpool • long-lived messages – More messages than can be contained in memory, will always hit disk before being got
  • 11. Bufferpool Statistics = BPool 1, Size 5000,%full now 80, Highest %full 92, Disk reads 27019 > 01 Buffs 5000 Low 390 Now 979 Getp 1408819 Getn 137508 01 Rio 27019 STW 648745 TPW 26587 WIO 2417 IMW 12 01 DWT 1236 DMC 0 STL 72300 STLA 8 SOS 0 01 Above the bar PAGECLAS 4KB
  • 12. Bufferpool Statistics (QPST) • SOS, STLA and DMC should be 0 • Consider increasing bufferpool size if not • Asynchronous write threshold (DWT) reached 1236 times • number of 'dirty' pages >= 85% total pages • Synchronous write threshold (DMC) not reached • number of 'dirty' pages >= 95% total pages • For MQ v8, shows if bufferpool is above the bar, and also if page-fixed or not
  • 13. Bufferpools for short-lived messages • Aiming to keep the full working set of message in memory • DWT should be zero • Always at least 15% buffers free • TPW (Pages Written) might be greater than zero due to checkpointing activity • But we shouldn’t be writing because of bufferpool getting full! • RIO (Read operations) should be zero • If we have everything in memory, we shouldn’t need to read from the pageset! • unless messages are being read from a page set after the queue manager is restarted • You are recommended to have sufficient buffers to handle your peak message rate.
  • 14. Bufferpools for long-lived messages • Expecting messages to be written to and read from page set • (RIO+TPW)/Statistics interval is the I/O rate to page sets • During period that messages are processed (eg written during day and processed overnight) • Number of read I/Os (RIO) should be approximately the total number of pages written (TPW). • Shows that one page is read for every page written. • If RIO is much larger than TPW, pages are being read in multiple times. • Might be a result of the application get by id when queue not indexed
  • 15. Application Activity • Detailed application activity captured in SMF116 records • START TRACE(ACCTG) CLASS(3) • Can control at queue level using ACCTQ • Costs 5-10% CPU overhead • Heavyweight – multiple records may be cut for each transaction, and at SMF intervals for long running UoWs • Turning this on has been known to swamp an SMF environment • But you get lots of useful information about what is being done! • Task/thread and queue statistics • Even though they are prolific: • Turn on for a few minutes each month to get view of activity • Become familiar with the data and with the patterns of WMQ usage
  • 16. Application Activity Open name AP01_REP_MQ20_DC_0_0007 Object type:Local Queue Base name AP01_REP_MQ20_DC_0_0007 Base type :Queue Queue indexed by NONE First opened 10-04-2014 08:52:48.62 Last closed 10-04-2014 08:52:49.69 Page set ID 4, Buffer pool 1 Current opens 0, Total requests 158 Generated messages : 0 Persistent messages: GETs 37, PUTs 0, PUT1s 0 Put to waiting getter: PUT 0, PUT1 0 Put direct to shared queue: 0 GETs: Valid 78, Max size 9824, Min size 75, Total bytes 151197 GETs: Dest-S 156, Dest-G 0, Brow-S 0, Brow-G 0, Successful destructive 78 Time on queue : Max 0.348850, Min 0.118915, Avg 0.231072 seconds -MQ call- N ET CT Susp LOGW PSET Epages skip expire Open : 1 20 20 0 Close : 1 6 6 0 Get : 156 43 38 0 0 0 0 570 0 Maximum depth encountered 154
  • 17. Application Activity • For GET operations, non-zero skip value indicates we should consider indexing queue • Dest-S shows get for specific message • Can see a single open/close for queue with multiple gets • This is good! • Look for applications repeatedly opening and closing queues • Can use output to identify busy queues etc • Pageset/bufferpool allocation
  • 19. Chinit SMF - Overview • Additional SMF data for Chinit address space and channel activity to enable: • Monitoring • Capacity planning • Tuning • Separate controls from queue manager SMF allows 'opt in' • Updated MP1B SupportPac will format the data and introduces rule based reporting
  • 20. Chinit SMF - Controls • You can START Chinit STAT trace by: • You can START Chinit ACCTG trace by: • You can display trace by: • ALTER and STOP TRACE commands have also been updated !MQ08 START TRACE(STAT) CLASS(4) CSQW130I !MQ08 'STAT' TRACE STARTED, ASSIGNED TRACE NUMBER 05 CSQ9022I !MQ08 CSQWVCM1 ' START TRACE' NORMAL COMPLETION !MQ08 DISPLAY TRACE(*) CSQW127I !MQ08 CURRENT TRACE ACTIVITY IS - TNO TYPE CLASS DEST USERID RMID 02 STAT 01 SMF * * 05 STAT 04 SMF * * 06 ACCTG 04 SMF * * END OF TRACE REPORT !MQ08 START TRACE(ACCTG) CLASS(4) CSQW130I !MQ08 ‘ACCTG' TRACE STARTED, ASSIGNED TRACE NUMBER 06 CSQ9022I !MQ08 CSQWVCM1 ' START TRACE' NORMAL COMPLETION
  • 21. Chinit SMF - Controls • SMF data collected on SMF interval of QMGR • Can be same as z/OS SMF interval • Chinit STAT trace allows high level view of activity • Chinit ACCTG trace allows detailed view at channel level • STATCHL attribute on channel to control granularity • Data collected is a superset of that collected on distributed with STATCHL message
  • 22. Chinit SMF: New record subtypes and DSECTs • SMF 115 • Subtype 231 (0xE7=‘X’) for CHINIT control information • e.g. adapter and dispatcher CPU time etc. to help with tuning numbers of tasks configured • DNS resolution times • SMF 116 • Subtype 10 for per channel 'accounting' data • Bytes sent, achieved batch size etc. • New DSECTs • CSQDQWSX (QWSX) : Self defining section for subtype 231 which consists of: • CSQDQWHS (QWHS) : Standard header • CSQDQCCT (QCCT) : Definition for CHINIT control information • CSQDQWS5 (QWS5) : Self defining section for subtype 10 which consists of: • CSQDQWHS (QWHS) : Standard header • CSQDQCST (QCST) : Definition for channel status data
  • 23. Statistics vs Accounting • Statistics • Information about number of channels and TCB usage • Dispatchers, Adapters, SSL, DNS • Do I need more dispatchers? Adapters? • Do I have spare capacity? • Accounting • What have the channels done? • What are the high use channels?
  • 24. CHINIT Summary MV45,MQ20,2014/04/08,20:43:57,VRM:800, From 2014/04/08,20:41:54.984681 to 2014/04/08,20:43:57.237939 duration 122.253258 seconds Number of current channels..................... 20 Number of active channels .... ................ 20 MAXCHL. Max allowed current channels........... 602 ACTCHL. Max allowed active channels............ 602 TCPCHL. Max allowed TCP/IP channels............ 602 LU62CHL. Max allowed LU62 channels............. 602 Storage used by Chinit......................... 22MB
  • 25. CHINIT Summary • Number of current and active channels • How close are you getting to the maximums? • CHINIT Storage Usage • 31-bit usage, but not much in 64-bit for CHINIT • Are these trending upwards? • Monitor over time 1 2 3 4 5 6 7 8 9 10 11 12 13 14 0 500 1000 1500 2000 2500 3000 Number of current channels 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 0 50 100 150 200 250 300 350 400 450 500 STG used in MB
  • 26. Dispatchers MV45,MQ20,2014/04/08,20:43:57,VRM:800, From 2014/04/08,20:41:54.984681 to 2014/04/08,20:43:57.237939 duration 122.253258 seconds Task,Type,Requests,Busy %, CPU used, CPU %,"avg CPU","avg ET" , , , , Seconds, , uSeconds,uSeconds 0,DISP, 46, 0.0, 0.000000, 0.0, 12, 14 1,DISP, 168912, 1.4, 0.028218, 0.0, 8, 10 2,DISP, 168656, 1.3, 0.025142, 0.0, 7, 10 3,DISP, 0, 0.0, 0.000000, 0.0, 0, 0 4,DISP, 0, 0.0, 0.000000, 0.0, 0, 0 Summ,DISP, 337614, 0.6, 0.053360, 0.0, 9, 10 0,DISP, number of channels on this TCB, 0 1,DISP, number of channels on this TCB, 10 2,DISP, number of channels on this TCB, 10 3,DISP, number of channels on this TCB, 0 4,DISP, number of channels on this TCB, 0 Summ,DISP, number of channels on all TCBs, 20
  • 27. Dispatchers • Dispatcher requests are TCP Send/Receive – few waits • Average ET/CPU should be close • If not, might show short of CPU • Adding more dispatchers might not speed things up if you have more dispatchers than number of CPs available • Busy% shows if dispatcher has spare capacity • Requests spread across channels • Channel has affinity with dispatcher until it restarts
  • 28. Adapters MV45,MQ20,2014/04/08,20:43:57,VRM:800, From 2014/04/08,20:41:54.984681 to 2014/04/08,20:43:57.237939 duration 122.253258 seconds Task,Type,Requests,Busy %, CPU used, CPU %,"avg CPU","avg ET" , , , , Seconds, , uSeconds,uSeconds 0,ADAP, 127599, 16.5, 0.953615, 0.8, 7, 158 1,ADAP, 46790, 7.6, 0.309678, 0.3, 7, 199 2,ADAP, 13702, 3.2, 0.065380, 0.1, 5, 284 3,ADAP, 2909, 0.7, 0.029541, 0.0, 10, 279 4,ADAP, 395, 0.1, 0.003179, 0.0, 8, 392 5,ADAP, 37, 0.0, 0.000241, 0.0, 7, 149 6,ADAP, 10, 0.0, 0.000175, 0.0, 17, 111 7,ADAP, 0, 0.0, 0.000000, 0.0, 0, 0 Summ,ADAP, 191442, 3.5, 1.361809, 0.1, 7, 179
  • 29. Adapters • MQ request uses first free adapter • Expect to see decreasing busyness • We have never used all the adapters at the same time • No need to add more adapters • If last adapter has been busy, look at adding more! • Elapsed time can include disk waits – eg commit
  • 30. DNS MV45,MQ20,2014/04/08,20:41:54,VRM:800, From 2014/04/08,20:40:07.101220 to 2014/04/08,20:41:54.984681 duration 107.883460 seconds Task,Type,Requests,Busy %, CPU used, CPU %, , , , , Seconds, , 0,DNS , 24, 0.0, 0.007980, 0.0, Summ,DNS , 24, 0.0, 0.007980, 0.0, "avg CPU","avg ET",longest ,date ,time uSeconds,uSeconds,uSeconds, , 332, 1031, 24284,2014/04/08,20:41:49.573730 332, 1031, 24284,2014/04/08,20:41:49.573730
  • 31. DNS • One DNS task • If this task is very busy, let IBM know! • Longest request was 24284 micro second • Date and time fields show when this happened • Message CSQX788I DNS lookup for address … took xx seconds • If more than 3 seconds
  • 32. SSL MV45,SS09,2014/04/10,23:22:24,VRM:800, From 2014/04/10,22:53:26.883960 to 2014/04/10,23:22:24.204176 duration 1737.320215 seconds Task,Type,Requests,Busy %, CPU used, CPU %,"avg CPU","avg ET" , , , , Seconds, , uSeconds,uSeconds 0,SSL , 109843, 0.3, 0.594580, 0.0, 5, 42, 1,SSL , 130180, 0.3, 0.713966, 0.0, 5, 41, 2,SSL , 117544, 0.3, 0.703146, 0.0, 6, 42, 3,SSL , 145944, 0.4, 0.830535, 0.0, 6, 43, 4,SSL , 123825, 0.3, 0.679656, 0.0, 5, 43, longest ,date ,time uSeconds, , 229638,2014/04/10,22:54:34.264949 255082,2014/04/10,22:54:54.302855 230501,2014/04/10,22:54:43.958105 280241,2014/04/10,22:54:53.499979 361212,2014/04/10,22:54:53.599940
  • 33. SSL • CPU time expected to be less than Elapsed Time due to offload of crypto operations • Long busy times seen in example were due to lots of channels starting up at the same time • Adding more SSL tasks might not speed things up if waiting for external hardware
  • 34. Accounting Information • Using the ACCTG trace CLASS(4) enables collection of individual channel information • Channels can be included/excluded from collection • STATCHL for predefined channels – per channel basis • QMGR STATACLS for auto-defined (cluster) channels • Controls all auto-defined channels, not individually • QMGR STATCHL for client channels • Generally low cost as most channels are long lived • Consider if you have lot of short lived client connections • Gives detailed information for each channel • What has the channel done? • What are my busy channels?
  • 35. Channel Information (1) 127.0.0.1 MQ89_1 Connection name 127.0.0.1 127.0.0.1 MQ89_1 Remote qmgr/app MQ89 127.0.0.1 MQ89_1 Channel disp PRIVATE 127.0.0.1 MQ89_1 Channel type SENDER 127.0.0.1 MQ89_1 Channel status RUNNING 127.0.0.1 MQ89_1 Channel STATCHL HIGH 127.0.0.1 MQ89_1 Channel started date & time 2014/04/08,19:41:48 127.0.0.1 MQ89_1 Channel stopped time 127.0.0.1 MQ89_1 Channel status collect time 2014/04/08,19:43:57 127.0.0.1 MQ89_1 Last msg time 2014/04/08,19:43:52 127.0.0.1 MQ89_1 Active for 122 seconds 127.0.0.1 MQ89_1 Batch size 50 127.0.0.1 MQ89_1 Messages/batch 38.9 127.0.0.1 MQ89_1 Number of messages 2,998 127.0.0.1 MQ89_1 Number of persistent messages 1,506 127.0.0.1 MQ89_1 Number of batches 77 127.0.0.1 MQ89_1 Number of full batches 42 127.0.0.1 MQ89_1 Number of partial batches 35 127.0.0.1 MQ89_1 Buffers sent 3,319 127.0.0.1 MQ89_1 Buffers received 109 127.0.0.1 MQ89_1 Xmitq empty count 13
  • 36. Channel Information (2) 127.0.0.1 MQ89_1 Message data 17,198,653 16 MB 127.0.0.1 MQ89_1 Persistent message data 4,251,780 4 MB 127.0.0.1 MQ89_1 Non persistent message data 12,946,873 12 MB 127.0.0.1 MQ89_1 Total bytes sent 17,200,221 16 MB 127.0.0.1 MQ89_1 Total bytes received 3,052 2 KB 127.0.0.1 MQ89_1 Bytes received/Batch 39 39 B 127.0.0.1 MQ89_1 Bytes sent/Batch 223,379 218 KB 127.0.0.1 MQ89_1 Batches/Second 0 127.0.0.1 MQ89_1 Bytes received/message 1 1 B 127.0.0.1 MQ89_1 Bytes sent/message 5,737 5 KB 127.0.0.1 MQ89_1 Bytes received/second 25 25 B/sec 127.0.0.1 MQ89_1 Bytes sent/second 140,985 137 KB/sec 127.0.0.1 MQ89_1 Compression rate 0 127.0.0.1 MQ89_1 Exit time average 0 uSec 127.0.0.1 MQ89_1 DNS resolution time 0 uSec 127.0.0.1 MQ89_1 Net time average 312 uSec 127.0.0.1 MQ89_1 Net time min 43 uSec 127.0.0.1 MQ89_1 Net time max 4,998 uSec 127.0.0.1 MQ89_1 Net time max date&time 2014/04/08,19:43:52
  • 37. Channel Information • Uniquely identify channel with connection name, channel name and remote qmgr name • Not all of the batches were full • BATCHSZ, BATCHLIM and arrival of message impacts this • About half messages send were persistent • Total message data of about 16MB sent during interval • Average message size about 5KB • Bytes sent/received per sec as average over interval • Monitor channel usage over time • MP1B outputs data to CSV files • Look for trends
  • 38. http://www.ibm.com/software/integration/support/supportpacs/ For more information MP1B Interpreting Accounting and Statistics Data MP1H WebSphere MQ for z/OS V7.1 Performance Report MP1G WebSphere MQ for z/OS V7.0.1 Performance Report MP15 Program to Print SMF Statistics MP16 Capacity Planning and Tuning
  • 39. © 2014 IBM Corporation Questions?
  • 40. We Value Your Feedback • Don’t forget to submit your Impact session and speaker feedback! Your feedback is very important to us – we use it to continually improve the conference. • Use the Conference Mobile App or the online Agenda Builder to quickly submit your survey • Navigate to “Surveys” to see a view of surveys for sessions you’ve attended 40
  • 42. Legal Disclaimer • © IBM Corporation 2014. All Rights Reserved. • The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. • References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results. • Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user's job stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here. • IBM, the IBM logo and WebSphere are trademarks of International Business Machines Corporation in the United States, other countries, or both.