In order to finish the upgrade procedure, require assistance with the below:
Perform performance recommendations to the JBoss Application Server in the production environment, according to Performance Recommendations. What changes should be applied when using the JBoss application server (7.1 eap)?
The following example describes the performance tuning process on the JBoss Application Server
Navigate to <JBOSS_HOME>\bin
Open standalone.conf.bat for editing.
Set the JVM parameters in JAVA_OPTS with the following recommended values: JVM Minimum Heap Size: 8192 MB
JVM Maximum Heap Size: 8192 MB
set "JAVA_OPTS=-Xms8192m -Xmx8192m"
Navigate to <JBOSS_HOME>/bin
Open standalone.conf for editing.
Set the JVM parameters in JAVA_OPTS with the following recommended values:JVM Minimum Heap Size: 8192 MB
JVM Maximum Heap Size: 8192 MB
JAVA_OPTS="$JAVA_OPTS -Xms8192m -Xmx8192m"
Configure the maximum threads to 800 add io-threads="800" as below
Navigate to <JBOSS_HOME>\standalone\configuration
In standalone.xml update the threads: <subsystem xmlns="urn:jboss:domain:io:2.0">
<worker name="default" io-threads="800"/>
<buffer-pool name="default"/>
</subsystem>