Mercurial > repos > gbcs-embl-heidelberg > je_clip
changeset 1:dfacabbde112 draft
use _JAVA_OPTIONS to set default memory limit
author | gbcs-embl-heidelberg |
---|---|
date | Thu, 26 Nov 2015 08:59:38 -0500 |
parents | 101525093ba1 |
children | b61628ae2371 |
files | je |
diffstat | 1 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/je Wed Nov 25 12:37:01 2015 -0500 +++ b/je Thu Nov 26 08:59:38 2015 -0500 @@ -7,9 +7,12 @@ # path to jar file to execute, this jar is supposed to be in the same dir as this script JAR_FILE=$DIR"/je_1.0_bundle.jar" -OPTS="-Xmx2g" -# uncomment to change logging level using your own log4j.xml found in $DIR file -# OPTS=$OPTS" -Dlog4j.configuration=file:$DIR/log4j.xml" +# set default _JAVA_OPTIONS +_JAVA_OPTIONS=${_JAVA_OPTIONS:-'-Xmx4G -Xms256m'} +export _JAVA_OPTIONS + +# uncomment to change logging level using your own log4j.xml found in $DIR file +# OPTS="-Dlog4j.configuration=file:$DIR/log4j.xml" java $OPTS -jar $JAR_FILE "$@" exit $?