在 hadoop 文档中:

test

Usage: hadoop fs -test -[defsz] URI

Options:

-d: f the path is a directory, return 0.
-e: if the path exists, return 0.
-f: if the path is a file, return 0.
-s: if the path is not empty, return 0.
-z: if the file is zero length, return 0.
Example:

hadoop fs -test -e filename

如果 hdfs 目录不存在,我想做点什么。-test 选项中的每个参数都返回 0。如果目录不存在,我如何输出?
drwx------   - bli1 hadoop_bips          0 2016-01-29 12:48 /user/bli1/.Trash
drwx------   - bli1 hadoop_bips          0 2016-01-08 09:41 /user/bli1/.staging
drwxr-x---   - bli1 hadoop_bips          0 2015-03-31 09:35 /user/bli1/camus_test
drwxr-x---   - bli1 hadoop_bips          0 2015-11-18 12:41 /user/bli1/hdfs_archive
drwxr-x---   - bli1 hadoop_bips          0 2016-01-26 16:18 /user/bli1/hdfs_archive_archive
drwxr-x---   - bli1 hadoop_bips          0 2016-01-26 16:19 /user/bli1/hdfs_archive_concatenate
drwxr-x---   - bli1 hadoop_bips          0 2016-01-26 16:15 /user/bli1/hdfs_archive_delete
drwxr-x---   - bli1 hadoop_bips          0 2015-03-31 16:20 /user/bli1/output
drwxr-x---   - bli1 hadoop_bips          0 2015-03-29 18:09 /user/bli1/wordcount

我试过这个
$ hdfs dfs -test -d /user/bli1/testdir     # nothing is returned
$
$ hdfs dfs -test -d /user/bli1/output      # nothing is returned

我期待一个 0?我看不到 0。我没有注意到 2 个命令之间有什么不同。

最佳答案

那是什么“$?”做。它存储上次执行命令的状态。
您可以检查它的值。如果它是 0,那么,宾果游戏!

target_dir=<dir in hdfs>

hadoop fs -test -d ${target_dir};

if [ $? -eq 0 ]
then
    echo "Directory exists!"
else
    echo "Directory does not exists!"
fi

关于hadoop - 使用 hdfs dfs -test 查看目录是否存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35094078/

10-16 02:54