celeborn/sbin/start-all.sh
sychen 2bf7062db3
[CELEBORN-1197] Avoid using the sleep command with the s suffix in bash scripts
### What changes were proposed in this pull request?
Remove the s suffix of sleep

### Why are the changes needed?
MacOS
```bash
./sbin/start-all.sh
```

```
usage: sleep seconds
```

### Does this PR introduce _any_ user-facing change?

### How was this patch tested?

Closes #2187 from cxzl25/CELEBORN-1197.

Authored-by: sychen <sychen@ctrip.com>
Signed-off-by: mingji <fengmingxiao.fmx@alibaba-inc.com>
2023-12-25 16:57:20 +08:00

66 lines
2.2 KiB
Bash
Executable File

#!/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.
#
# Starts the celeborn master and workers on the machine this script is executed on.
if [ -z "${CELEBORN_HOME}" ]; then
export CELEBORN_HOME="$(cd "`dirname "$0"`"/..; pwd)"
fi
. "${CELEBORN_HOME}/sbin/load-celeborn-env.sh"
if [ -f "${CELEBORN_CONF_DIR}/hosts" ]; then
HOST_LIST=$(awk '/\[/{prefix=$0; next} $1{print prefix,$0}' "${CELEBORN_CONF_DIR}/hosts")
else
HOST_LIST="[master] localhost\n[worker] localhost"
fi
# By default disable strict host key checking
if [ "$CELEBORN_SSH_OPTS" = "" ]; then
CELEBORN_SSH_OPTS="-o StrictHostKeyChecking=no"
fi
# start masters
for host in `echo "$HOST_LIST" | sed "s/#.*$//;/^$/d" | grep '\[master\]' | awk '{print $NF}'`
do
if [ -n "${CELEBORN_SSH_FOREGROUND}" ]; then
ssh $CELEBORN_SSH_OPTS "$host" "${CELEBORN_HOME}/sbin/start-master.sh"
else
ssh $CELEBORN_SSH_OPTS "$host" "${CELEBORN_HOME}/sbin/start-master.sh" &
fi
if [ "$CELEBORN_SLEEP" != "" ]; then
sleep $CELEBORN_SLEEP
fi
done
# pause 5 seconds to make sure that master is ready.
sleep 5
# start workers
for host in `echo "$HOST_LIST" | sed "s/#.*$//;/^$/d" | grep '\[worker\]' | awk '{print $NF}'`
do
if [ -n "${CELEBORN_SSH_FOREGROUND}" ]; then
ssh $CELEBORN_SSH_OPTS "$host" "${CELEBORN_HOME}/sbin/start-worker.sh"
else
ssh $CELEBORN_SSH_OPTS "$host" "${CELEBORN_HOME}/sbin/start-worker.sh" &
fi
if [ "$CELEBORN_SLEEP" != "" ]; then
sleep $CELEBORN_SLEEP
fi
done
wait