1234567891011121314151617181920212223242526272829303132333435363738 |
- #!/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.
- if type hadoop &> /dev/null; then
- hadoop_cmd="hadoop"
- elif type "$HADOOP_COMMON_HOME/bin/hadoop" &> /dev/null; then
- hadoop_cmd="$HADOOP_COMMON_HOME/bin/hadoop"
- elif type "$HADOOP_HOME/bin/hadoop" &> /dev/null; then
- hadoop_cmd="$HADOOP_HOME/bin/hadoop"
- else
- echo "Unable to find a valid hadoop command to execute; exiting."
- exit 1
- fi
- script_pwd="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/.."
- for f in ${script_pwd}/lib/*.jar; do
- # Skip adding the blockgen JAR since it is added by the `hadoop jar` command
- if [[ "$f" != *"dynamometer-blockgen-"* ]]; then
- export HADOOP_CLASSPATH="$HADOOP_CLASSPATH:$f"
- fi
- done
- "$hadoop_cmd" jar "${script_pwd}"/lib/dynamometer-blockgen-*.jar \
- org.apache.hadoop.tools.dynamometer.blockgenerator.GenerateBlockImagesDriver "$@"
|