无法将文件从本地文件系统复制到 cloudera 上的 hadoop/hdfs



在fedora25上安装cloudera HDC后,我可以创建文件夹,但不能创建文件,也不能将数据从本地文件系统复制到HDFS。

这是我使用的命令:

sudo -u hdfs hadoop fs -copyFromLocal /home/mohammed/Documents/bbc.txt /kareem/corpora/

这是我从终端得到的:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
copyFromLocal: '/home/mohammed/Documents/bbc.txt': No such file or directory

如何克服这个问题?

非常感谢您的帮助!

问题是您的本地/home/mohammed路径无法访问,因为用户hdfs您要 sudo-ing 来运行整个命令。由于hdfs的本地 linux 用户无法输入/home/mohammed,该命令会抛出No such file or directory错误并因无法找到或读取提供的文件而退出。

在大多数打包的 HDFS 安装中,hdfs用户通常是分布式文件系统的超级用户,管理命令通常以该用户身份运行。但是,在使用hdfs用户为普通用户预配权限和所有权后,可以而且应该以普通用户的身份对数据执行工作。

对于您的情况,如果此帐户还具有 sudo 权限,则可以以mohammed用户身份执行以下操作:

# Superuser-provisioning part (do once)
# Ensure the HDFS directory exists by creating it as a superuser
~> sudo -u hdfs hadoop fs -mkdir -p /kareem/corpora
# Ensure also the HDFS-home path exists by creating it as a superuser
~> sudo -u hdfs hadoop fs -mkdir -p /user/mohammed
# Grant ownership entirely to user mohammed for both paths
~> sudo -u hdfs hadoop fs -chown -R mohammed:mohammed /kareem /user/mohammed
# Final usage part (continue or repeat as many times) without superuser
# Upload the local file (note the absence of sudo)
~> hadoop fs -copyFromLocal -f /home/mohammed/Documents/bbc.txt /kareem/corpora/
# Now read it, etc., all done as the regular non-'hdfs' user
~> hadoop fs -text /home/mohammed/Documents/bbc.txt

相关内容

  • 没有找到相关文章

最新更新