]> source.dussan.org Git - sonarqube.git/commitdiff
Fix documentation of properties *.javaOpts
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 20 Jun 2016 16:10:21 +0000 (18:10 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 20 Jun 2016 16:10:21 +0000 (18:10 +0200)
sonar-application/src/main/assembly/conf/sonar.properties

index 5af07bb064f34392918dc2e2a5e138b42e6e0633..5fe6666414738bee2cea37787169513968b4d010 100644 (file)
 
 #--------------------------------------------------------------------------------------------------
 # WEB SERVER
-
-# Web server is executed in a dedicated Java process. By default heap size is 768Mb.
+# Web server 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
+#    is not enabled by default on your environment:
+#    http://docs.oracle.com/javase/8/docs/technotes/guides/vm/server-class.html
 #
 #sonar.web.javaOpts=-Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError -Djava.net.preferIPv4Stack=true
 
 #--------------------------------------------------------------------------------------------------
 # 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 512Mb.
+# Compute Engine is executed in a dedicated Java process. 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
+#    is not enabled by default on your environment:
+#    http://docs.oracle.com/javase/8/docs/technotes/guides/vm/server-class.html
 #
 #sonar.ce.javaOpts=-Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError -Djava.net.preferIPv4Stack=true
 
 #--------------------------------------------------------------------------------------------------
 # ELASTICSEARCH
 # Elasticsearch is used to facilitate fast and accurate information retrieval.
-# It is executed in a dedicated Java process.
+# It is executed in a dedicated Java process. Default heap size is 1Gb.
 
 # JVM options of Elasticsearch process
 #    Recommendations:
 #
 #    Use HotSpot Server VM. 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
+#    is not enabled by default on your environment:
+#    http://docs.oracle.com/javase/8/docs/technotes/guides/vm/server-class.html
 #
 #sonar.search.javaOpts=-Xmx1G -Xms256m -Xss256k -Djava.net.preferIPv4Stack=true \
 #  -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75 \