123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- #!/bin/bash
- #
- # Licensed 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. See accompanying LICENSE file.
- #
- ###############################################################################
- printUsage() {
- echo "Usage: slsrun.sh <OPTIONS>"
- echo " --tracetype=<SYNTH | SLS | RUMEN>"
- echo " --tracelocation=<FILE1,FILE2,...>"
- echo " (deprecated --input-rumen=<FILE1,FILE2,...> | --input-sls=<FILE1,FILE2,...>)"
- echo " --output-dir=<SLS_SIMULATION_OUTPUT_DIRECTORY>"
- echo " [--nodes=<SLS_NODES_FILE>]"
- echo " [--track-jobs=<JOBID1,JOBID2,...>]"
- echo " [--print-simulation]"
- echo
- }
- ###############################################################################
- parseArgs() {
- for i in $*
- do
- case $i in
- --tracetype=*)
- tracetype=${i#*=}
- ;;
- --tracelocation=*)
- tracelocation=${i#*=}
- ;;
- --input-rumen=*)
- inputrumen=${i#*=}
- ;;
- --input-sls=*)
- inputsls=${i#*=}
- ;;
- --output-dir=*)
- outputdir=${i#*=}
- ;;
- --nodes=*)
- nodes=${i#*=}
- ;;
- --track-jobs=*)
- trackjobs=${i#*=}
- ;;
- --print-simulation)
- printsimulation="true"
- ;;
- *)
- echo "Invalid option"
- echo
- printUsage
- exit 1
- ;;
- esac
- done
- if [[ "${inputrumen}" == "" && "${inputsls}" == "" && "${tracetype}" == "" ]] ; then
- echo "Either --input-rumen or --input-sls or --tracetype must be specified"
- echo
- printUsage
- exit 1
- fi
- if [[ "${outputdir}" == "" ]] ; then
- echo "The output directory --output-dir must be specified"
- echo
- printUsage
- exit 1
- fi
- }
- ###############################################################################
- calculateClasspath() {
- HADOOP_BASE=`which hadoop`
- HADOOP_BASE=`dirname $HADOOP_BASE`
- DEFAULT_LIBEXEC_DIR=${HADOOP_BASE}/../libexec
- HADOOP_LIBEXEC_DIR=${HADOOP_LIBEXEC_DIR:-$DEFAULT_LIBEXEC_DIR}
- . $HADOOP_LIBEXEC_DIR/hadoop-config.sh
- SLS_HTML="${HADOOP_PREFIX}/share/hadoop/tools/sls/html"
- export HADOOP_CLASSPATH="${HADOOP_CLASSPATH}:${TOOL_PATH}:${SLS_HTML}"
- }
- ###############################################################################
- runSimulation() {
- if [[ "${tracetype}" != "" ]] ; then
- args="${args} -tracetype ${tracetype}"
- args="${args} -tracelocation ${tracelocation}"
- fi
- if [[ "${nodes}" != "" ]] ; then
- args="${args} -nodes ${nodes}"
- fi
- if [[ "${inputsls}" != "" ]] ; then
- args="-inputsls ${inputsls}"
- fi
- if [[ "${inputrumen}" != "" ]] ; then
- args="-inputrumen ${inputrumen}"
- fi
- args="${args} -output ${outputdir}"
- if [[ "${nodes}" != "" ]] ; then
- args="${args} -nodes ${nodes}"
- fi
-
- if [[ "${trackjobs}" != "" ]] ; then
- args="${args} -trackjobs ${trackjobs}"
- fi
-
- if [[ "${printsimulation}" == "true" ]] ; then
- args="${args} -printsimulation"
- fi
- hadoop org.apache.hadoop.yarn.sls.SLSRunner ${args}
- }
- ###############################################################################
- calculateClasspath
- parseArgs "$@"
- runSimulation
- exit 0
|