mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-12-13 09:36:44 +00:00
add alluxio
This commit is contained in:
34
alluxio/1.7/bin/alluxio-master.sh
Executable file
34
alluxio/1.7/bin/alluxio-master.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/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-master
|
||||
|
||||
alluxio-master launches the Alluxio master in the foreground and logs to both
|
||||
the console and default log file. To configure the master, 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 master logs file
|
||||
ALLUXIO_MASTER_LOGGER="Console,MASTER_LOGGER"
|
||||
|
||||
. ${SCRIPT_DIR}/../../../libexec/alluxio-config.sh
|
||||
|
||||
${JAVA} -cp ${ALLUXIO_SERVER_CLASSPATH} ${ALLUXIO_MASTER_JAVA_OPTS} alluxio.master.AlluxioMaster
|
||||
35
alluxio/1.7/bin/alluxio-proxy.sh
Executable file
35
alluxio/1.7/bin/alluxio-proxy.sh
Executable file
@@ -0,0 +1,35 @@
|
||||
#!/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-proxy
|
||||
|
||||
alluxio-proxy launches the Alluxio proxy in the foreground and logs to both the
|
||||
console and default log file. The proxy will provide a REST interface for
|
||||
interacting with the Alluxio filesystem. To configure the proxy, 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 proxy logs file
|
||||
ALLUXIO_PROXY_LOGGER="Console,PROXY_LOGGER"
|
||||
|
||||
. ${SCRIPT_DIR}/../../../libexec/alluxio-config.sh
|
||||
|
||||
${JAVA} -cp ${ALLUXIO_SERVER_CLASSPATH} ${ALLUXIO_PROXY_JAVA_OPTS} alluxio.proxy.AlluxioProxy
|
||||
34
alluxio/1.7/bin/alluxio-worker.sh
Executable file
34
alluxio/1.7/bin/alluxio-worker.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user