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.

  1. Navigate to the /output/weblogic-domains/<domain_uid> directory:
    cd $WORKDIR/kubernetes/create-oim-domain/domain-home-on-pv/output/weblogic-domains/<domain_uid>
    
    For example:
    cd $WORKDIR/kubernetes/create-oim-domain/domain-home-on-pv/output/weblogic-domains/governancedomain
    
  2. Edit the domain.yaml file. Locate the section of the file starting with: clusterName: oim_cluster under governancedomain-oim-cluster. Add the memory settings as below:
      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"
    
    For example:
    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:
  3. Save the changes to domain.yaml.