Usage Note 58411: Java heap size configuration options under z/OS
Here are the configuration options for Java memory (heap) size:
- -Xms sets the minimum Java heap size
- -Xmx sets the maximum Java heap size
Note: The -Xms value must always be less than or equal to the -Xmx value and neither of these values should be greater than the REGION size value.
You can run the following code to see your current JREOPTIONS system option settings and where they are coded:
proc options option=jreoptions value;
run;
You should add your configuration values for Java heap size to your existing Java Runtime Environment (JRE) options. Here is an example:
-Xmx1024M
-Xms1024M
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Date Modified: | 2016-06-29 11:05:56 |
Date Created: | 2016-06-15 14:42:35 |