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

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.