diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2020-01-09 09:58:26 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-11-05 20:06:21 +0000 |
commit | 3694c0d9e72a65ea7ab497b462f48850b138dcdd (patch) | |
tree | 02990c0efe2f5149250d094d56d7184e3b6b99bd /sonar-application/build.gradle | |
parent | 191a19739e294985caf5c6dbce7766443533d86c (diff) | |
download | sonarqube-3694c0d9e72a65ea7ab497b462f48850b138dcdd.tar.gz sonarqube-3694c0d9e72a65ea7ab497b462f48850b138dcdd.zip |
SONAR-12686 MaxDirectMemorySize JVM option should be defined for ES
This option was set by default in ES 6.X already but we had missed it.
ES sets it to half the max heap from Java code (see class JvmErgonomics)
To not have to get into the complexity of interpreting options to know what is the configured max heap,
we just add this option to the defaults and document it
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r-- | sonar-application/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index ca68d5e9457..e9a4d6d8952 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -97,7 +97,7 @@ task zip(type: Zip, dependsOn: [configurations.compile]) { from file('src/main/assembly/conf/sonar.properties') filter(ReplaceTokens, tokens: [ 'searchDefaultHeapSize': '512MB', - 'searchJavaOpts' : '-Xmx512m -Xms512m -XX:+HeapDumpOnOutOfMemoryError', + 'searchJavaOpts' : '-Xmx512m -Xms512m -XX:MaxDirectMemorySize=256m -XX:+HeapDumpOnOutOfMemoryError', 'ceDefaultHeapSize' : '512MB', 'ceJavaOpts' : '-Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError', 'webDefaultHeapSize' : '512MB', |