Dependency build is consuming too much CPU
Accepted answer
The recommended way to control the CPU usage by the dependency build is to change the priority of the startbfa.sh script to some other value. By default the agent script will have the same priority as the other processes the user may be running which may cause some problems as the dependency build can be CPU intensive. So lowering the priority (RUNPTY) of only startbfa.sh will free up more cycles for other CPU processes.
Example:
- CHGJOB RUNPTY(50)
- QSH
- startbfa.sh
- exit QSH
- CHGJOB RUNPTY(20)
- QSH
- startbfa.sh
- exit QSH
- CHGJOB RUNPTY(20)
~Spencer