7.1.7 Setting the OIG Server Memory Parameters
By default, the java memory parameters assigned to the oim_cluster are very small. The
minimum recommended values are -Xms4096m -Xmx8192m
. However, Oracle
recommends you to set these to -Xms8192m -Xmx8192m
in a production
environment.
- Navigate to the
/output/weblogic-domains/<domain_uid>
directory:
For example:cd $WORKDIR/kubernetes/create-oim-domain/domain-home-on-pv/output/weblogic-domains/<domain_uid>
cd $WORKDIR/kubernetes/create-oim-domain/domain-home-on-pv/output/weblogic-domains/governancedomain
- Edit the
domain.yaml
file. Locate the section of the file starting with:clusterName: oim_cluster
undergovernancedomain-oim-cluster
. Add the memory settings as below:
For example:serverPod: env: - name: USER_MEM_ARGS value: "-XX:+UseContainerSupport -Djava.security.egd=file:/dev/./urandom -Xms8192m -Xmx8192m" resources: limits: cpu: "2" memory: "8Gi" requests: cpu: "1000m" memory: "4Gi"
apiVersion: weblogic.oracle/v1 kind: Cluster metadata: name: governancedomain-oim-cluster namespace: oigns spec: clusterName: oim_cluster serverService: precreateService: true serverPod: env: - name: USER_MEM_ARGS value: "-XX:+UseContainerSupport -Djava.security.egd=file:/dev/./urandom -Xms8192m -Xmx8192m" resources: limits: cpu: "2" memory: "8Gi" requests: cpu: "1000m" memory: "4Gi" replicas: 0
Note:
Administrators should be aware of the following:- The above CPU and memory values are for examples only. For Enterprise Deployments, please review the performance recommendations and sizing requirements in Enterprise Deployment Guide for Oracle Identity and Access Management in a Kubernetes Cluster.
- Limits and requests for CPU resources are measured in CPU units. One CPU in
Kubernetes is equivalent to 1 vCPU/Core for cloud providers, and 1 hyperthread on
bare-metal Intel processors. An “
m
” suffix in a CPU attribute indicates ‘milli-CPU’, so 500m is 50% of a CPU. Memory can be expressed in various units, where one Mi is one IEC unit mega-byte (1024^2), and one Gi is one IEC unit giga-byte (1024^3). For more information, see Resource Management for Pods and Containers, Assign Memory Resources to Containers and Pods, and Assign CPU Resources to Containers and Pods. - The parameters above are also utilized by the Kubernetes Horizontal Pod Autoscaler (HPA). For more details on HPA, see Kubernetes Horizontal Pod Autoscaler.
- If required you can also set the same resources and limits for the
governancedomain-soa-cluster
.
- Save the changes to
domain.yaml
.