JDK 7 requires minimum of 160k stack size, update scripts to set it, closes #1892.

This commit is contained in:
Shay Banon 2012-04-29 17:13:36 +03:00
parent 8ca36c8dd5
commit 70268a6c41
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -24,7 +24,7 @@ if [ "x$ES_HEAP_NEWSIZE" != "x" ]; then
fi
# reduce the per-thread stack size
JAVA_OPTS="$JAVA_OPTS -Xss128k"
JAVA_OPTS="$JAVA_OPTS -Xss160k"
# Force the JVM to use IPv4 stack
# JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"