mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
35 lines
1.1 KiB
Bash
Executable File
35 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
|
|
# (the "License"). You may not use this work except in compliance with the License, which is
|
|
# available at www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
# either express or implied, as more fully set forth in the License.
|
|
#
|
|
# See the NOTICE file distributed with this work for information regarding copyright ownership.
|
|
#
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(cd "$( dirname "$0" )"; pwd)
|
|
|
|
USAGE="Usage: alluxio-worker
|
|
|
|
alluxio-worker launches the Alluxio worker in the foreground and logs to both
|
|
the console and default log file. To configure the worker, add configuration
|
|
properties in alluxio-site.properties or environment variables in
|
|
alluxio-env.sh."
|
|
|
|
if [[ "$#" -gt "0" ]]; then
|
|
echo "${USAGE}"
|
|
exit 0
|
|
fi
|
|
|
|
# Log to both the console and the worker logs file
|
|
ALLUXIO_WORKER_LOGGER="Console,WORKER_LOGGER"
|
|
|
|
. ${SCRIPT_DIR}/../../../libexec/alluxio-config.sh
|
|
|
|
${JAVA} -cp ${ALLUXIO_SERVER_CLASSPATH} ${ALLUXIO_WORKER_JAVA_OPTS} alluxio.worker.AlluxioWorker
|