赞
踩
(1)向HDFS中上传任意文本文件,如果指定的文件在HDFS 中已经存在,由用户指定是追加到原有文件末尾还是覆盖原有的文件。
//创建带内容的文本
echo "hello world" > test1.txt
//或者 创建一个<path> 指定的空文件 (要在启动服务下执行)
hadoop fs - touchz <path>
./fileName
: 表示当前目录下的fileName这个文件
./sbin/start-all.sh
//或者
./sbin/start-dfs.sh
./sbin/start-yarn.sh
hadoop fs -put <localsrc><dst>
./bin/hadoop fs -put ./test1.txt
hadoop fs -appendToFile local.txt text.txt
//将test1.txt 追加到 test2.txt
./bin/hadoop fs -appendToFile test1.txt test2.txt
hadoop fs -cat text1.txt
./bin/hadoop fs -cat test2.txt
hadoop fs -copyFromLocal <localsrc><dst>
//这里使用了 -f (强制的意思), 因为我的test3.txt 已存在
./bin/hadoop fs -copyFromLocal -f test2.txt test3.txt
if $(hadoop fs -test -e text.txt);
then $(hadoop fs -appendToFile local.txt text.txt);
else $(hadoop fs -copyFromLocal -f local.txt text.txt);
fi
//本机操作
if $(./bin/hadoop fs -test -e test1.txt);
then $(./bin/hadoop fs -appendToFile test1.txt test2.txt);
else $(./bin/hadoop fs -copyFromLocal -f test1.txt test3.txt);
fi
// Java 编程实现
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。