|
Problem: Catapult includes a number of files that have been shipped with a maximum record limit of about 13,000 records. Although a rare occurrence, it's possible that at some point you may run into that upper limit.
The files on which you could hit this limit include: - XL_CATAPLT/SP_REQF - Pending Request file.
- XL_CATAPLT/SP_REQDF - Request Detail file.
- XL_CATAPLT/SP_HRQF - Request History file.
- XL_CATAPLT/SP_EXDTAV - Data Extraction Pairs file.
- XL_CATAPLT/SP_GRBF - Grab Rule file.
The typical errors you could get look something like this: - I/O is not allowed because the program device or member SP_REQDF file SP_REQDF in library XL_CATAPLT is in error.
- I/O error CPF5129 was detected in file SP_REQDF.
- CPA5305 The maximum size has been reached for member SP_REQDF.
A common reason for running into the upper limit is from having an extremely large history/request list or due to processing an extremely large number of reports regularly. To help prevent these from occurring again see the following KB article:
Solution:You can avoid running into these limits by doing the following: - End the poller to release locks on any files.
- WRKOBJLCK QSYS/XL_CATAPLT *LIB - Use this command to view which jobs have locks on the file in error and end them.
- CHGPF FILE(XL_CATAPLT/SP_REQDF) REUSEDLT(*YES) - SP_REQDF is used as an example of the file needing to be updated.
- Restart the poller.
|