mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-05 05:38:30 +08:00
6d903e266f
* update README about DolphinScheduler * Update issue templates * update * regularize api pom xml update rpc maven compile to 1.8 * regularize api pom xml * change commons.lang3.StringUtils to common.utils.StringUtils * update pom.xml * update * correct equals method * jasper-runtime is needed when api server start * jasper-runtime jar is needed when api server start * combine logback config of master/worker/alert/api server to one logback.xml * remove tomcat runtime jar * add UT * add license * remove jasper-runtime jar, not need anymore * sovle jar conflict, remove servlet-api 2.5 jar * remove servlet 2.5 * add embedded database h2 and update embedded zookeeper * delete logs * add license * change log level to INFO * simplify and optimize config * add development state * simplify common config * add worker group config * add worker group config * add worker group config * this command just for getting a quick experience,not recommended for production. this operation will start a standalone zookeeper server * Merge remote-tracking branch 'upstream/dev' into dev * add logback for zookeeper * Update logback-zookeeper.xml Co-authored-by: lidongdai <escheduler@outlook.com> Co-authored-by: dailidong <dolphinschedule@gmail.com> Co-authored-by: qiaozhanwei <qiaozhanwei@outlook.com>
133 lines
4.4 KiB
Bash
133 lines
4.4 KiB
Bash
#!/bin/sh
|
||
#
|
||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||
# contributor license agreements. See the NOTICE file distributed with
|
||
# this work for additional information regarding copyright ownership.
|
||
# The ASF licenses this file to You 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.
|
||
#
|
||
|
||
usage="Usage: dolphinscheduler-daemon.sh (start|stop) <command> "
|
||
|
||
# if no args specified, show usage
|
||
if [ $# -le 1 ]; then
|
||
echo $usage
|
||
exit 1
|
||
fi
|
||
|
||
startStop=$1
|
||
shift
|
||
command=$1
|
||
shift
|
||
|
||
echo "Begin $startStop $command......"
|
||
|
||
BIN_DIR=`dirname $0`
|
||
BIN_DIR=`cd "$BIN_DIR"; pwd`
|
||
DOLPHINSCHEDULER_HOME=$BIN_DIR/..
|
||
|
||
source /etc/profile
|
||
|
||
export JAVA_HOME=$JAVA_HOME
|
||
#export JAVA_HOME=/opt/soft/jdk
|
||
export HOSTNAME=`hostname`
|
||
|
||
export DOLPHINSCHEDULER_PID_DIR=$DOLPHINSCHEDULER_HOME/pid
|
||
export DOLPHINSCHEDULER_LOG_DIR=$DOLPHINSCHEDULER_HOME/logs
|
||
export DOLPHINSCHEDULER_CONF_DIR=$DOLPHINSCHEDULER_HOME/conf
|
||
export DOLPHINSCHEDULER_LIB_JARS=$DOLPHINSCHEDULER_HOME/lib/*
|
||
|
||
export DOLPHINSCHEDULER_OPTS=${DOLPHINSCHEDULER_OPTS:-"-server -Xmx16g -Xms1g -Xss512k -XX:+UseConcMarkSweepGC -XX:+CMSParallelRemarkEnabled -XX:LargePageSizeInBytes=10m -XX:+UseFastAccessorMethods -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=70"}
|
||
export STOP_TIMEOUT=5
|
||
|
||
if [ ! -d "$DOLPHINSCHEDULER_LOG_DIR" ]; then
|
||
mkdir $DOLPHINSCHEDULER_LOG_DIR
|
||
fi
|
||
|
||
log=$DOLPHINSCHEDULER_LOG_DIR/dolphinscheduler-$command-$HOSTNAME.out
|
||
pid=$DOLPHINSCHEDULER_PID_DIR/dolphinscheduler-$command.pid
|
||
|
||
cd $DOLPHINSCHEDULER_HOME
|
||
|
||
if [ "$command" = "api-server" ]; then
|
||
LOG_FILE="-Dlogging.config=classpath:logback-api.xml -Dspring.profiles.active=api"
|
||
CLASS=org.apache.dolphinscheduler.api.ApiApplicationServer
|
||
elif [ "$command" = "master-server" ]; then
|
||
LOG_FILE="-Dlogging.config=classpath:logback-master.xml -Ddruid.mysql.usePingMethod=false"
|
||
CLASS=org.apache.dolphinscheduler.server.master.MasterServer
|
||
elif [ "$command" = "worker-server" ]; then
|
||
LOG_FILE="-Dlogging.config=classpath:logback-worker.xml -Ddruid.mysql.usePingMethod=false"
|
||
CLASS=org.apache.dolphinscheduler.server.worker.WorkerServer
|
||
elif [ "$command" = "alert-server" ]; then
|
||
LOG_FILE="-Dlogback.configurationFile=conf/logback-alert.xml"
|
||
CLASS=org.apache.dolphinscheduler.alert.AlertServer
|
||
elif [ "$command" = "logger-server" ]; then
|
||
CLASS=org.apache.dolphinscheduler.server.log.LoggerServer
|
||
elif [ "$command" = "zookeeper-server" ]; then
|
||
#note: this command just for getting a quick experience,not recommended for production. this operation will start a standalone zookeeper server
|
||
LOG_FILE="-Dlogback.configurationFile=classpath:logback-zookeeper.xml"
|
||
CLASS=org.apache.dolphinscheduler.service.zk.ZKServer
|
||
else
|
||
echo "Error: No command named \`$command' was found."
|
||
exit 1
|
||
fi
|
||
|
||
case $startStop in
|
||
(start)
|
||
[ -w "$DOLPHINSCHEDULER_PID_DIR" ] || mkdir -p "$DOLPHINSCHEDULER_PID_DIR"
|
||
|
||
if [ -f $pid ]; then
|
||
if kill -0 `cat $pid` > /dev/null 2>&1; then
|
||
echo $command running as process `cat $pid`. Stop it first.
|
||
exit 1
|
||
fi
|
||
fi
|
||
|
||
echo starting $command, logging to $log
|
||
|
||
exec_command="$LOG_FILE $DOLPHINSCHEDULER_OPTS -classpath $DOLPHINSCHEDULER_CONF_DIR:$DOLPHINSCHEDULER_LIB_JARS $CLASS"
|
||
|
||
echo "nohup $JAVA_HOME/bin/java $exec_command > $log 2>&1 &"
|
||
nohup $JAVA_HOME/bin/java $exec_command > $log 2>&1 &
|
||
echo $! > $pid
|
||
;;
|
||
|
||
(stop)
|
||
|
||
if [ -f $pid ]; then
|
||
TARGET_PID=`cat $pid`
|
||
if kill -0 $TARGET_PID > /dev/null 2>&1; then
|
||
echo stopping $command
|
||
kill $TARGET_PID
|
||
sleep $STOP_TIMEOUT
|
||
if kill -0 $TARGET_PID > /dev/null 2>&1; then
|
||
echo "$command did not stop gracefully after $STOP_TIMEOUT seconds: killing with kill -9"
|
||
kill -9 $TARGET_PID
|
||
fi
|
||
else
|
||
echo no $command to stop
|
||
fi
|
||
rm -f $pid
|
||
else
|
||
echo no $command to stop
|
||
fi
|
||
;;
|
||
|
||
(*)
|
||
echo $usage
|
||
exit 1
|
||
;;
|
||
|
||
esac
|
||
|
||
echo "End $startStop $command."
|