We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2676c47 commit b4c9271Copy full SHA for b4c9271
modules/reindex/build.gradle
@@ -139,6 +139,10 @@ if (Os.isFamily(Os.FAMILY_WINDOWS)) {
139
env 'CLASSPATH', "${-> project.configurations.oldesFixture.asPath}"
140
// old versions of Elasticsearch need JAVA_HOME
141
env 'JAVA_HOME', jdks.legacy.javaHomePath
142
+ // If we are running on certain arm systems we need to explicitly set the stack size to overcome JDK page size bug
143
+ if (Architecture.current() == Architecture.AARCH64) {
144
+ env 'ES_JAVA_OPTS', '-Xss512k'
145
+ }
146
args 'oldes.OldElasticsearch',
147
baseDir,
148
unzip.get().temporaryDir,
0 commit comments