summaryrefslogtreecommitdiffstats
path: root/sonar-application/src
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-03-03 17:57:20 +0100
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-03-04 09:22:06 +0100
commit40150df9ef03807dd3351770fc19532e38a9c6fa (patch)
tree1c766869e8e438bea422a002a1cef13454a5d4ee /sonar-application/src
parentb1a2501bca8f97a19c74f258e30b83f65c662f4b (diff)
downloadsonarqube-40150df9ef03807dd3351770fc19532e38a9c6fa.tar.gz
sonarqube-40150df9ef03807dd3351770fc19532e38a9c6fa.zip
SONAR-7417 add sonar.ce.workerCount to sonar.properties
Diffstat (limited to 'sonar-application/src')
-rw-r--r--sonar-application/src/main/assembly/conf/sonar.properties15
1 files changed, 15 insertions, 0 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties
index b0093dda0f9..28d9203ec79 100644
--- a/sonar-application/src/main/assembly/conf/sonar.properties
+++ b/sonar-application/src/main/assembly/conf/sonar.properties
@@ -195,6 +195,21 @@
#--------------------------------------------------------------------------------------------------
+# COMPUTE ENGINE
+# The Compute Engine is responsible for processing background tasks.
+
+# 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.
+# 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.
+#sonar.ce.workerCount=1
+
+
+#--------------------------------------------------------------------------------------------------
# ELASTICSEARCH
# Elasticsearch is used to facilitate fast and accurate information retrieval.
# It is executed in a dedicated Java process.