Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Memory & Heap Size issues on SOA (12.2.1.0) Version

2765873Nov 21 2016 — edited Nov 24 2016

Hi

I have seen memory leakage and heap size issues on my new environment which is built with 12c(12.2.1.0) .

I have verified application level there is no running and unused variables and also verified same application running fine on 11G .i.e.(with out memory leakage and with constant heap usage).

I have added below code to increase JVM for servers . This code also used in 11g file (setDomainEnv.sh) .

11g&12c :

if [ "${SERVER_NAME}" = "" ] ; then

SERVER_NAME="AdminServer"

export SERVER_NAME

fi

if [ "${SERVER_NAME}" = "osb_server1" ] ; then

   USER\_MEM\_ARGS="-Xms8192m -Xmx8192m"

   export USER\_MEM\_ARGS

fi

if [ "${SERVER_NAME}" = "soa_server1" ] ; then

   USER\_MEM\_ARGS="-Xms3096m -Xmx3096m"

   export USER\_MEM\_ARGS

fi

if [ "${SERVER_NAME}" = "AdminServer" ] ; then

   USER\_MEM\_ARGS="-Xms4096m -Xmx4096m"

   export USER\_MEM\_ARGS

fi

Below is snip , how the heap size is increasing

pastedImage_0.png

Could you please help me ? how to fix this heap and memory issue on my environment ?.

Is there any differences to declare JVM's values on setDomainEnv.sh ?

Adavance Thanks !!

/Anil.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 22 2016
Added on Nov 21 2016
12 comments
1,471 views