]> source.dussan.org Git - sonarqube.git/commitdiff
Fix documentation of CE section of sonar.properties
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 24 Mar 2016 10:56:33 +0000 (11:56 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 24 Mar 2016 12:19:07 +0000 (13:19 +0100)
sonar-application/src/main/assembly/conf/sonar.properties

index 2b722c2276547155b2bfcf72c9f127c977707bd2..61d65a82b084372ee29df0eaad1b46905ea5bba0 100644 (file)
 #--------------------------------------------------------------------------------------------------
 # 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