Browse Source

SONAR-12279 Swap Elasticsearch options to match convention

tags/8.0
colin-mueller-sonarsource 4 years ago
parent
commit
c2d9ced363

+ 1
- 1
server/sonar-process/src/main/java/org/sonar/process/ProcessProperties.java View File

@@ -67,7 +67,7 @@ public class ProcessProperties {
SEARCH_HOST("sonar.search.host", InetAddress.getLoopbackAddress().getHostAddress()),
SEARCH_PORT("sonar.search.port", "9001"),
SEARCH_HTTP_PORT("sonar.search.httpPort"),
SEARCH_JAVA_OPTS("sonar.search.javaOpts", "-Xms512m -Xmx512m -XX:+HeapDumpOnOutOfMemoryError"),
SEARCH_JAVA_OPTS("sonar.search.javaOpts", "-Xmx512m -Xms512m -XX:+HeapDumpOnOutOfMemoryError"),
SEARCH_JAVA_ADDITIONAL_OPTS("sonar.search.javaAdditionalOpts", ""),
SEARCH_REPLICAS("sonar.search.replicas"),
SEARCH_MINIMUM_MASTER_NODES("sonar.search.minimumMasterNodes"),

+ 1
- 1
sonar-application/build.gradle View File

@@ -135,7 +135,7 @@ task zip(type: Zip, dependsOn: [configurations.compile]) {
from file('src/main/assembly/conf/sonar.properties')
filter(ReplaceTokens, tokens: [
'searchDefaultHeapSize': '512MB',
'searchJavaOpts' : '-Xms512m -Xmx512m -XX:+HeapDumpOnOutOfMemoryError',
'searchJavaOpts' : '-Xmx512m -Xms512m -XX:+HeapDumpOnOutOfMemoryError',
'ceDefaultHeapSize' : '512MB',
'ceJavaOpts' : '-Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError',
'webDefaultHeapSize' : '512MB',

Loading…
Cancel
Save