forked from apache/uniffle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutils.sh
225 lines (198 loc) · 6.11 KB
/
utils.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#!/usr/bin/env bash
#
# 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.
#
# Common utils
set -o nounset # exit the script if you try to use an uninitialised variable
set -o errexit # exit the script if any statement returns a non-true return value
# By default, we enable verbose log printing.
UNIFFLE_SHELL_SCRIPT_DEBUG=true
#---
# is_process_running: Checks if a process is running
# args: Process ID of running proccess
# returns: returns 0 if process is running, 1 if not found
#---
function is_process_running {
local pid=$1
kill -0 $pid > /dev/null 2>&1 #exit code ($?) is 0 if pid is running, 1 if not running
local status=$? #because we are returning exit code, can use with if & no [ bracket
return $status
}
#---
# args: Process name of a running process to shutdown, install directory
# returns: returns 0 if success, 1 otherwise
#---
function common_shutdown {
process_name="$1"
install_dir="$2"
max_attempt=30
get_pid_file_name ${process_name}
pid_file_name="${pid_file}"
pid=`cat ${install_dir}/${pid_file_name}`
kill_process_with_retry "${pid}" "${process_name}" "${max_attempt}"
if [[ $? == 0 ]]; then
rm -f ${install_dir}/${pid_file_name}
return 0
else
return 1
fi
}
#---
# args: Process name, coordinator, shuffle-server or dashboard
#---
function get_pid_file_name {
process_name="$1"
if [[ $process_name == "coordinator" ]]; then
pid_file="coordinator.pid"
elif [[ $process_name == "shuffle-server" ]]; then
pid_file="shuffle-server.pid"
elif [[ $process_name == "dashboard" ]]; then
pid_file="dashboard.pid"
else
echo "Invalid process name: $process_name"
exit 1
fi
}
#---
# kill_process_with_retry: Checks and attempts to kill the running process
# args: PID, process name, number of kill attempts
# returns: returns 0 if kill succeds or nothing to kill, 1 if kill fails
# exception: If passed a non-existant pid, function will forcefully exit
#---
function kill_process_with_retry {
local pid="$1"
local pname="$2"
local maxattempt="$3"
local sleeptime=3
if ! is_process_running $pid ; then
echo "ERROR: process name ${pname} with pid: ${pid} not found"
exit 1
fi
for try in $(seq 1 $maxattempt); do
echo "Killing $pname. [pid: $pid], attempt: $try"
if is_process_running $pid; then
kill ${pid}
fi
sleep $sleeptime
if is_process_running $pid; then
echo "$pname is not dead [pid: $pid]"
echo "sleeping for $sleeptime seconds before retry"
sleep $sleeptime
else
echo "shutdown succeeded"
return 0
fi
done
echo "Error: unable to kill process for $maxattempt attempt(s), killing the process with -9"
kill -9 $pid
sleep $sleeptime
if is_process_running $pid; then
echo "$pname is not dead even after kill -9 [pid: $pid]"
return 1
else
echo "shutdown succeeded"
return 0
fi
}
#---
# is_jvm_process_running: Checks if a jvm process is running
# args: jps path, main class of the jvm process
# exit 1 if process is running
#---
function is_jvm_process_running {
local cmd=$1
local main_class=$2
local tmp=$($cmd -l 2>/dev/null | grep "${main_class}" | cut -d' ' -f2)
if [[ "$tmp" == "${main_class}" ]]; then
echo "$main_class already exist"
exit 1
fi
}
function is_port_in_use {
local port=$1
local tmp=$(lsof -i:$port | grep LISTEN)
if [[ "$tmp" != "" ]]; then
echo "port[$port] is already in use"
exit 1
fi
}
#---
# load_rss_env: Export RSS environment variables
#---
function load_rss_env {
set -o allexport
is_dashboard=0
if [ $# -eq 1 ]; then
is_dashboard=1
fi
# find rss-env.sh
set +o nounset
if [ -f "${RSS_CONF_DIR}/rss-env.sh" ]; then
RSS_ENV_SH="${RSS_CONF_DIR}/rss-env.sh"
elif [ -f "${RSS_HOME}/bin/rss-env.sh" ]; then
RSS_ENV_SH="${RSS_HOME}/bin/rss-env.sh"
else
RSS_ENV_SH="$(cd "$(dirname "$0")"; pwd)/rss-env.sh"
fi
set -o nounset
echo "Using rss_env.sh: ${RSS_ENV_SH}"
# export rss-env.sh
source "${RSS_ENV_SH}"
# check
if [ -z "$JAVA_HOME" ]; then
echo "No env JAVA_HOME."
exit 1
fi
# export default value
set +o nounset
if [ -z "$RSS_HOME" ]; then
RSS_HOME="$(cd "$(dirname "$0")/.."; pwd)"
fi
if [ -z "$RSS_CONF_DIR" ]; then
RSS_CONF_DIR="${RSS_HOME}/conf"
fi
if [ -z "$HADOOP_CONF_DIR" ] && [ "$HADOOP_HOME" ]; then
HADOOP_CONF_DIR="${HADOOP_HOME}/etc/hadoop"
fi
if [ -z "$RSS_LOG_DIR" ]; then
RSS_LOG_DIR="${RSS_HOME}/logs"
fi
if [ -z "$RSS_PID_DIR" ]; then
RSS_PID_DIR="${RSS_HOME}"
fi
set -o nounset
RUNNER="${JAVA_HOME}/bin/java"
JPS="${JAVA_HOME}/bin/jps"
# print
# If UNIFFLE_SHELL_SCRIPT_DEBUG is true, we will print JAVA_HOME, HADOOP_HOME, RSS_HOME information etc.
# If UNIFFLE_SHELL_SCRIPT_DEBUG is false, we do not print Env information.
if [[ "${UNIFFLE_SHELL_SCRIPT_DEBUG}" = true ]]; then
echo "Using Java from ${JAVA_HOME}"
echo "Using RSS from ${RSS_HOME}"
echo "Using RSS conf from ${RSS_CONF_DIR}"
set +u
if [ $HADOOP_HOME ]; then
echo "Using Hadoop from ${HADOOP_HOME}"
fi
if [ $HADOOP_CONF_DIR ]; then
echo "Using Hadoop conf from ${HADOOP_CONF_DIR}"
fi
set -u
echo "Write log file to ${RSS_LOG_DIR}"
echo "Write pid file to ${RSS_PID_DIR}"
fi
set +o allexport
}