Previous Topic: 06023: CIO Pool High Water Mark Exceeds StandardNext Topic: 06025: Scheduling Rate Exceeds Standard


06024: CIO Pool Current Use Exceeds Standard

    FILE:            IMS System Activity
    SAS FILE NAME:   DETAIL.IMSISY01
    SOURCE LOCATION: sharedprefix.MICS.SOURCE(DYIMSEXC)

    SEVERITY:        Impacting     (SEVERITY='I')
    MANAGEMENT AREA: Performance   (MGMTAREA='PERFORMANCE')

    PURPOSE:  Identifies that the CIO pool may require
    enlarging.

    RATIONALE:  Insufficient storage for this pool, which is
used to build incoming messages and by MFS for output
messages, can have severe performance implications.  The
number monitored is the percentage of the pool that current
use represents.  A number close to 100 % may indicate
insufficient pool size.  The only way to determine
sufficiency is to increase pool size until the current use
remains below the available pool size and this percentage
number decreases.

    DEFINITION:   This exception is detected when the CIO
current use percentage exceeds the installation-defined
limit.  It does not apply to IMS 4.1 and higher systems.

    EXCEPTION STATEMENTS:  The SAS statements identifying the
exception situation and describing the condition are stored
in the source member named in SOURCE LOCATION and are
described below:

*
**  06024
**  CIO POOL CURRENT USE MARK EXCEEDS STANDARD
*;
IF ((ISYCIPUS/ISYCIPSZ) * 100) > current-use-percentage
 THEN DO;
  X = ((ISYCIPUS / ISYCIPSZ) * 100);
  EXCCODE='06024'; SEVERITY='I'; MGMTAREA='PERFORMANCE';
  EXCDESC1=
  'CIO POOL CURRENT USE EXCEEDS STANDARD';
  EXCDESC2='CIO POOL USE ='
           || PUT(X,7.2) || '% OF AVAILABLE POOL ';
  LINK HIT;
END;

    THRESHOLD MODIFICATION:      Modify the CIO pool
current-use-percentage to a value between 0 and 100.