diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-03-15 14:12:23 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-03-21 16:44:05 +0100 |
commit | 860d072d1dccd31d50f4145360c3725df3edfe90 (patch) | |
tree | 1b2aa70dfcc7cd2996df1c8e3905438b0d3ce57b /sonar-application/src | |
parent | 70d12b389773bfbe79c6d44ebb5ceca056565411 (diff) | |
download | sonarqube-860d072d1dccd31d50f4145360c3725df3edfe90.tar.gz sonarqube-860d072d1dccd31d50f4145360c3725df3edfe90.zip |
SONAR-7435 reduce heap of both CE and WebServer to 512
Diffstat (limited to 'sonar-application/src')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index ae765e33d98..2b722c22765 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -90,7 +90,7 @@ # The HotSpot Server VM is recommended. The property -server should be added if server mode # is not enabled by default on your environment: http://docs.oracle.com/javase/7/docs/technotes/guides/vm/server-class.html # -#sonar.web.javaOpts=-Xmx768m -Xms256m -XX:MaxPermSize=160m -XX:+HeapDumpOnOutOfMemoryError -Djava.net.preferIPv4Stack=true +#sonar.web.javaOpts=-Xmx512m -Xms128m -XX:MaxPermSize=160m -XX:+HeapDumpOnOutOfMemoryError -Djava.net.preferIPv4Stack=true # Same as previous property, but allows to not repeat all other settings like -Xmx #sonar.web.javaAdditionalOpts= @@ -205,7 +205,7 @@ # The HotSpot Server VM is recommended. The property -server should be added if server mode # is not enabled by default on your environment: http://docs.oracle.com/javase/7/docs/technotes/guides/vm/server-class.html # -#sonar.ce.javaOpts=-Xmx768m -Xms256m -XX:MaxPermSize=160m -XX:+HeapDumpOnOutOfMemoryError -Djava.net.preferIPv4Stack=true +#sonar.ce.javaOpts=-Xmx512m -Xms128m -XX:MaxPermSize=160m -XX:+HeapDumpOnOutOfMemoryError -Djava.net.preferIPv4Stack=true # Same as previous property, but allows to not repeat all other settings like -Xmx #sonar.ce.javaAdditionalOpts= |