Disable Scalable Vector Engine (XX:UseSVE=0) to fix issues on macOS and other ARM platforms

https://github.com/elastic/elasticsearch/issues/118583
This commit is contained in:
t3chn0m4g3
2025-01-06 15:50:08 +01:00
parent 653bb2ed1e
commit b221a9d96e
3 changed files with 12 additions and 6 deletions

View File

@ -101,4 +101,8 @@ if [ "$TPOT_TYPE" != "SENSOR" ];
fi
echo
ARCH=$(arch)
if [ "$ARCH" = "aarch64" ]; then
export _JAVA_OPTIONS="-XX:UseSVE=0";
fi
exec /usr/share/logstash/bin/logstash --config.reload.automatic