IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

STROBE result for one of the batch job


IBM Mainframe Forums -> Compuware & Other Tools
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
raghavmcs

Active User


Joined: 14 Jul 2005
Posts: 105

PostPosted: Fri Jul 23, 2010 1:10 am
Reply with quote

Dear Experts,

I was looking into one of the STROBE result for one of the batch job for which the elapsed time was on very high end.Finally from STRETCH time our tuning group concluded that probably we might need additional CPU power to get the ET reduced.We thought of initiators also along with runnning job with some other class.

I saw the stretch time in STrobe report.
I thought of getting all these type of situation where the stretch time is more for jobs I mean to first identify all such types of jobs where job is ready to run but need additional resouces like situations.

I am wondering what type of dataset or SMF record I should target for starting with.I think would have to use some SAS code to report further.

Please move this post to any appropriate place if this is not correct.
Thanks
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Jul 23, 2010 1:23 am
Reply with quote

IIRC from earlier days, stretch time merely means the address space is not executing. That could be due to many factors.

The RMF report on CPU time includes data about address spaces ready to execute but not able to -- search the RMF manual for details. If I get a chance tomorrow, Ill look up the exact report and line that has this.
Back to top
View user's profile Send private message
raghavmcs

Active User


Joined: 14 Jul 2005
Posts: 105

PostPosted: Fri Jul 23, 2010 2:15 am
Reply with quote

Using the following code on pur production Lpar trend dataset I am able to report value for JELAPSTM for jobs but just thinking if elapsed time would upto some extent would speak for Stretch time also.Beyond this point I really need to research and experiment to conclude something on the Stretch time report which I would need.

DATA JOBS;
SET PDB.TYPE30_5;
DATE = DATEPART(JINITIME);
DATE1=DATE;
FORMAT DATE DATE9.;
TIME = TIMEPART(JINITIME);FORMAT TIME TIME12.;
IF TYPETASK = 'JOB';
IF JOB =:'K' ;

PROC SORT DATA=JOBS;BY DESCENDING DATE;

PROC PRINT DATA=JOBS;
VAR DATE TIME JOB CPUTM JELAPSTM CONDCODE
EXCPDASD EXCPTAPE TAPEDRVS TAPNMNTS TAPSMNTS;
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> Compuware & Other Tools

 


Similar Topics
Topic Forum Replies
No new posts How to get a stack trace on a looping... ABENDS & Debugging 5
No new posts Calling Java method from batch COBOL ... COBOL Programming 5
No new posts Help in Automating Batch JCL jobs mon... JCL & VSAM 3
No new posts first column truncated in search result IBM Tools 13
No new posts Batch install term/printer CICS 2
Search our Forums:

Back to Top