MAPREDUCE-3817. Fixed bin/mapred to allow running of distcp and archive jobs. Contributed by Arpit Gupta.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1241323 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
35f12b9556
commit
6e376a39a0
|
@ -739,6 +739,9 @@ Release 0.23.1 - Unreleased
|
|||
MAPREDUCE-3697. Support binary compatibility for Counters after
|
||||
MAPREDUCE-901. (mahadev via acmurthy)
|
||||
|
||||
MAPREDUCE-3817. Fixed bin/mapred to allow running of distcp and archive
|
||||
jobs. (Arpit Gupta via acmurthy)
|
||||
|
||||
Release 0.23.0 - 2011-11-01
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -37,6 +37,8 @@ function print_usage(){
|
|||
echo " mapreduce subcommands"
|
||||
echo " groups get the groups which users belong to"
|
||||
echo " historyserver run job history servers as a standalone daemon"
|
||||
echo " distcp <srcurl> <desturl> copy file or directories recursively"
|
||||
echo " archive -archiveName NAME -p <parent path> <src>* <dest> create a hadoop archive"
|
||||
echo ""
|
||||
echo "Most commands print help when invoked w/o parameters."
|
||||
}
|
||||
|
@ -76,6 +78,14 @@ elif [ "$COMMAND" = "mradmin" ] \
|
|||
echo "You may find similar functionality with the \"yarn\" shell command."
|
||||
print_usage
|
||||
exit
|
||||
elif [ "$COMMAND" = "distcp" ] ; then
|
||||
CLASS=org.apache.hadoop.tools.DistCp
|
||||
CLASSPATH=${CLASSPATH}:${TOOL_PATH}
|
||||
HADOOP_OPTS="$HADOOP_OPTS $HADOOP_CLIENT_OPTS"
|
||||
elif [ "$COMMAND" = "archive" ] ; then
|
||||
CLASS=org.apache.hadoop.tools.HadoopArchives
|
||||
CLASSPATH=${CLASSPATH}:${TOOL_PATH}
|
||||
HADOOP_OPTS="$HADOOP_OPTS $HADOOP_CLIENT_OPTS"
|
||||
else
|
||||
echo $COMMAND - invalid command
|
||||
print_usage
|
||||
|
|
Loading…
Reference in New Issue