From 3694c0d9e72a65ea7ab497b462f48850b138dcdd Mon Sep 17 00:00:00 2001 From: Sébastien Lesaint Date: Thu, 9 Jan 2020 09:58:26 +0100 Subject: 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 --- sonar-application/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sonar-application/build.gradle') 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', -- cgit v1.2.3