Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 HDFS 中有 zip 文件。我将在 R 中编写一个 mapreduce 程序。现在 R 具有解压缩 zip 文件的命令。
unzip("filepath")
但这里它不接受我的 HDFS 文件路径?我试过了
unzip(hdfs.file("HDFS file path"))
它正在抛出错误..
invalid path argument..
有没有办法为我的 R 命令提供 HDFS 文件路径?