"Tape Ready" message from DFSMSrmm
"Tape Ready" message from DFSMSrmm
I'm looking for a way to have RMM issue a Tape Ready message for Specific (non-scratch) volumes at mount time. There are user mods available for CA1 but I'm having trouble locating a similar feature with RMM.
Re: "Tape Ready" message from DFSMSrmm
I probably should have mentioned the reason for wanting to do this. I'm trying to measure Tape Mount Delay to understand its impact on Batch run time.
-
- Global moderator
- Posts: 3006
- Joined: Fri Apr 18, 2008 11:25 pm
- Skillset: tso,rexx,assembler,pl/i,storage,mvs,os/390,z/os,
- Referer: www.ibmmainframes.com
Re: "Tape Ready" message from DFSMSrmm
IIRC tape mount delays were/should-be available using some RMF report
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
Re: "Tape Ready" message from DFSMSrmm
Yeah I thought so too. I was hoping that I could get it using VMA but it takes in SMF 14s, 15s and 21s. This will give Allocation Delay (not enough UCBs) but doesn't provide tape mount delay. If you know of something else that does, I would be very appreciative. Perhaps something in SMF30?
-
- Global moderator
- Posts: 3006
- Joined: Fri Apr 18, 2008 11:25 pm
- Skillset: tso,rexx,assembler,pl/i,storage,mvs,os/390,z/os,
- Referer: www.ibmmainframes.com
Re: "Tape Ready" message from DFSMSrmm
RMF III reports delays
a quick and dirty cut anf paste from the manual
a quick and dirty cut anf paste from the manual
You can use the Monitor III Utility to customize the DELAY report. In addition to the delays shown above you can use the Utility to have the following delay percentages shown.
Table 2. Additional Fields in the DELAY Report
Field Heading Meaning
% Delayed for
JES delay percentage
HSM delay percentage
XCF delay percentage
Operator mount delay percentage
Operator message delay percentage
Operator quiesce delay percentage
WLM resource group capping delay percentage
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
-
- Global moderator
- Posts: 2105
- Joined: Thu Jun 03, 2010 6:21 pm
- Skillset: Assembler, JCL, utilities
- Referer: zos.efglobe.com
Re: "Tape Ready" message from DFSMSrmm
I did a project of this nature back in the 1980s. It was never updated to MVS/XA or more recent releases and the code has long since disappeared. In any event, what I think you want is rather indeterminate, so I'm not sure you'll get anything useful.
Just to give you an idea of the problem, JCL like this is all too common.
// EXEC PGM=SORT
//SORTIN DD – An existing tape data set -
//SORTOUT DD DISP=NEW,UNIT=TAPE,...
You'll see messages like this -
10:00:00.00 MOUNT vvvvvv ON iiii
10:00:00.00 MOUNT scrtch ON oooo
10:00:30.00 iiii READY
The presumptive time for the iiii READY message was typical of the robots of the era. In any event, while it's perfectly accurate and meaningful in that context, let's look at the output tape. Sort just needs SORTIN to start. Sort won't touch SORTOUT until it has read all of SORTIN. This is why you often see
//SORTOUT DD DISP=NEW,UNIT=AFF=SORTIN,...
The SORTOUT tape may be physically mounted while sort is reading through the SORTIN tape, but there will not be any indication of this in SYSLOG. Of course, sooner or later sort will finish with SORTIN. Then you'll see the messages for device oooo. Now what's the delay here? In practice, 0, because OPEN does not have to wait for the operator, or a robot, to mount the tape. But how do you measure it?
Like you I had hoped to use SYSLOG, but it was incomplete. I do not know if CA1 had come up with a mod for a dev xxxx READY message like you talk about, but I certainly didn't have it, but it wouldn't be seen until the data set was opened, which was too late much of the time. What I ultimately did was monitor the real UCBs.
Just to give you an idea of the problem, JCL like this is all too common.
// EXEC PGM=SORT
//SORTIN DD – An existing tape data set -
//SORTOUT DD DISP=NEW,UNIT=TAPE,...
You'll see messages like this -
10:00:00.00 MOUNT vvvvvv ON iiii
10:00:00.00 MOUNT scrtch ON oooo
10:00:30.00 iiii READY
The presumptive time for the iiii READY message was typical of the robots of the era. In any event, while it's perfectly accurate and meaningful in that context, let's look at the output tape. Sort just needs SORTIN to start. Sort won't touch SORTOUT until it has read all of SORTIN. This is why you often see
//SORTOUT DD DISP=NEW,UNIT=AFF=SORTIN,...
The SORTOUT tape may be physically mounted while sort is reading through the SORTIN tape, but there will not be any indication of this in SYSLOG. Of course, sooner or later sort will finish with SORTIN. Then you'll see the messages for device oooo. Now what's the delay here? In practice, 0, because OPEN does not have to wait for the operator, or a robot, to mount the tape. But how do you measure it?
Like you I had hoped to use SYSLOG, but it was incomplete. I do not know if CA1 had come up with a mod for a dev xxxx READY message like you talk about, but I certainly didn't have it, but it wouldn't be seen until the data set was opened, which was too late much of the time. What I ultimately did was monitor the real UCBs.
Re: "Tape Ready" message from DFSMSrmm
Steve (and others), thank you for your replies. Yes, CA1 has a usermod for the U01UX0A exit that allows a "Tape Ready" WTO to be issued at mount time. If you would like a copy, let me know. I was really hoping for something similar for RMM environments!
-
- Similar Topics
- Replies
- Views
- Last post
-
-
SYNCSORT DATASORT message SYT076E
by f1_lemaner » Thu Dec 23, 2021 11:12 pm » in DFSORT/ICETOOL/ICEGENER - 5
- 1860
-
by f1_lemaner
View the latest post
Fri Dec 24, 2021 2:23 pm
-
-
- 13
- 8399
-
by valeca
View the latest post
Fri Sep 30, 2022 11:22 pm
-
-
How can I copy message queue files (LGMSG,SHMSG) in V9R1
by futohomok » Thu Jul 27, 2023 5:54 pm » in IMS DB/DC - 6
- 2007
-
by futohomok
View the latest post
Thu Aug 03, 2023 1:21 pm
-
-
-
How to add new TAPE=359L into OAM,RMM.
by curious_man » Thu Nov 04, 2021 8:02 pm » in All other IBM Tools - 1
- 2092
-
by curious_man
View the latest post
Mon Nov 08, 2021 8:15 pm
-
-
- 6
- 1858
-
by sergeyken
View the latest post
Wed Apr 13, 2022 7:01 pm