aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-03-24 11:56:33 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-03-24 13:19:07 +0100
commit96301840301f28a71f65856a4844a8681515a8e7 (patch)
tree297b0e6757be30815471fb806728bee202275538 /sonar-application
parent885eb79a64d65b86996e36a53715ba162743f88f (diff)
downloadsonarqube-96301840301f28a71f65856a4844a8681515a8e7.tar.gz
sonarqube-96301840301f28a71f65856a4844a8681515a8e7.zip
Fix documentation of CE section of sonar.properties
Diffstat (limited to 'sonar-application')
-rw-r--r--sonar-application/src/main/assembly/conf/sonar.properties17
1 files changed, 7 insertions, 10 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties
index 2b722c22765..61d65a82b08 100644
--- a/sonar-application/src/main/assembly/conf/sonar.properties
+++ b/sonar-application/src/main/assembly/conf/sonar.properties
@@ -197,27 +197,24 @@
#--------------------------------------------------------------------------------------------------
# COMPUTE ENGINE
# The Compute Engine is responsible for processing background tasks.
-
-# Compute Engine is executed in a dedicated Java process. By default heap size is 768Mb.
+# Compute Engine is executed in a dedicated Java process. By default heap size is 512Mb.
# Use the following property to customize JVM options.
# Recommendations:
#
# 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=-Xmx512m -Xms128m -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=
-
-# The number of workers in the Compute Engine.
-# Use the following property to configure 1 or more workers. Value must be >= 1. Default value is 1.
-# By default the Compute Engine uses a single worker and therefor processes tasks one at a time.
+# The number of workers in the Compute Engine. Value must be greater than zero.
+# By default the Compute Engine uses a single worker and therefore processes tasks one at a time.
# Recommendations:
#
-# Using N workers will requires N times as much Heap memory of the WebServer (see property
-# sonar.web.javaOpts to tune heap) and produce N times as much IOs on disk, database and
-# ElasticSearch. The number of workers must suit your environment.
+# Using N workers will require N times as much Heap memory (see property
+# sonar.ce.javaOpts to tune heap) and produce N times as much IOs on disk, database and
+# Elasticsearch. The number of workers must suit your environment.
#sonar.ce.workerCount=1