How are PDSE load libraries handled by PMO?
Release: 4.4
PMO (Program Management Optimizer) optimizes library searches in private concatenations and/or the linklist libraries by keeping the directory entries of the modules in storage and thus avoiding I/O to read the directories of the partitioned datasets during execution of the "Build Library Directory List"- SVC invoked by the BLDL Macro. Given a considerably long list of concatenated libraries in LINKLIST or STEPLIB DD, many I/Os can be saved this way. This holds true even when
Solution
PMO will optimize STEPLIB searches even if there are some unmanaged libraries or PDSE libraries.
PMO retains the directory entries of the libraries, that it manages in hash tables or the managed list, and first searches these in-storage areas before it reissues the BLDL macro using trimming of the BLDL request (stating the starting and ending concatenation number of the libraries that will be searched by the system).
The benefit of using PMO depends on the concatenation. If for example the first lib in the STEPLIB is a PDS and the member that is BLDLed is in this PDS, PMO returns the desired information promptly, no matter what the rest of the concatenation is.
In some cases, PDSEs in the STEPLIB concatenation can cause that the whole STEPLIB will be searched by the system (e.g. consider the following STEPLIB: PDSE, PDS, PDS, PDSE). In this case, PMO has to reissue the BLDL for all the four libraries (as the first and the last is a PDSE and the trimming is limited only to setting a range).
There are two main search types that PMO addresses
To give another example, let s say that the STEPLIB has 5 data sets, where the 2nd and 4th are PDSEs, with the remainder being PDSs. Also, let s state that PMO is managing the PDSs, and that a BLDL is issued for a member that only resides in PDS5.
//STEPLIB DD PDS1
DD PDSE2
DD PDS3
DD PDSE4
DD PDS5
PMO performs the following actions:
In the above example, PMO has saved I/O for PDS1 and PDS5 data sets.
Per design, in our sample PMO cannot avoid BLDL activity for PDS3.
Conclusion:
So, we may sum up that you would benefit from using PMO even, when you have PDSE in your concatenations. We never may be able to eliminate 100% of I/O, but a fair amount of requests will be served directly from Storage avoiding real I/Os, that need to go to disc. PMO offers statistics, that give close insight of the saved I/Os and the number of calls per library or per member.
PMO has advantages as compared to IBM's LLA:
Statistics that allow additional tuning to make best use of the resources allocated to PMO.