为什么在运行hadoop(或dfs命令)时会不断显示已弃用的错误

时间:2012-07-30 03:29:14

标签: hadoop deprecated hdfs

我已经安装了 hadoop-2.0.0-alpha ,但每当我执行一个命令时,它都会给我弃用错误(虽然看起来似乎没有问题)

$ hadoop/bin/hadoop dfs -copyFromLocal input input
DEPRECATED: Use of this script to execute hdfs command is deprecated.
Instead use the hdfs command for it.

$ hadoop/bin/hadoop dfs -rmr input
DEPRECATED: Use of this script to execute hdfs command is deprecated.
Instead use the hdfs command for it.

rmr: DEPRECATED: Please use 'rm -r' instead.

我用Google搜索,看起来这是 hadoop-0.23 的错误。但是,我的版本更新。

我找不到这个版本的答案,它仍然是一个现有的错误吗?

1 个答案:

答案 0 :(得分:16)

dfs已弃用,取而代之的是“fs”命令。例如,这个:

hadoop fs -copyFromLocal input input // this uses FsShell

而不是:

hadoop dfs -copyFromLocal input input // this uses the now deprecated HDFS-specific DFSShell

有关差异的一些好背景:

http://nsinfra.blogspot.com/2012/06/difference-between-hadoop-dfs-and.html