mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
52 lines
1.6 KiB
Bash
Executable File
52 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2022-2023 nosqlbench
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
#set -x
|
|
DIR="$(dirname "$(readlink -f "$0")")"
|
|
if [ "$1" = "--wrapper-help" ]
|
|
then
|
|
echo "OPTIONS:"
|
|
echo " # run the bundled JRE with -version"
|
|
echo " --java-version"
|
|
echo " # run the app with JDWP debugging support, with suspend=n"
|
|
echo " --DN"
|
|
echo " # run the app with JDWP debugging support, with suspend=y"
|
|
echo " --DY"
|
|
echo " # set additional JRE options ..."
|
|
echo " JAVA_OPTS=... $0 ..."
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" = "--java-version" ]
|
|
then
|
|
shift
|
|
$DIR/jre/bin/java -version
|
|
exit
|
|
fi
|
|
|
|
if [ "$1" = "-DN" ]
|
|
then
|
|
shift
|
|
exec $DIR/jre/bin/java --enable-preview -XX:+UseZGC -XX:+ZGenerational ${JAVA_OPTS} -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 -jar $DIR/nb5.jar "$@"
|
|
elif [ "$1" = "-DY" ]
|
|
then
|
|
shift
|
|
exec $DIR/jre/bin/java --enable-preview -XX:+UseZGC -XX:+ZGenerational ${JAVA_OPTS} -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar $DIR/nb5.jar "$@"
|
|
else
|
|
exec $DIR/jre/bin/java --enable-preview -XX:+UseZGC -XX:+ZGenerational ${JAVA_OPTS} -jar $DIR/nb5.jar "$@"
|
|
fi
|