From: Simon Brandhof Date: Thu, 24 Mar 2016 10:56:33 +0000 (+0100) Subject: Fix documentation of CE section of sonar.properties X-Git-Tag: 5.5-M11~23 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=96301840301f28a71f65856a4844a8681515a8e7;p=sonarqube.git Fix documentation of CE section of sonar.properties --- 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