使用 Java API 在 Hadoop 中移动文件?
我想使用 Java API 在 HDFS 中移动文件。我想不出办法做到这一点。 FileSystem 类似乎只想允许在本地文件系统之间移动。但我想将它们保留在 HDFS 中并将它们移动到那里。
我错过了一些基本的东西吗?我能想到的唯一方法是从输入流中读取它并将其写回......然后删除旧副本(恶心)。
谢谢
I want to move files around in HDFS using the Java APIs. I cannot figure out a way to do this. The FileSystem class only seems to want to allow moving to and from the local file system.. but I want to keep them in HDFS and move them there.
Am I missing something basic? The only way I can figure to do it is to read it from the input stream and write it back out... and then delete the old copy (yuck).
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 FileSystem.rename():
Use FileSystem.rename():
java.nio.* 方法可能并不总是适用于 HDFS。所以找到了以下有效的解决方案。
使用 org.apache.hadoop.fs.FileUtil.copy API 将文件从一个目录移动到另一个目录
The java.nio.* approach may not work on HDFS always. So found the following solution that works.
Move files from one directory to another using org.apache.hadoop.fs.FileUtil.copy API
我认为 FileUtilts ReplaceFile 也可以解决这个目的。
http ://hadoop.apache.org/common/docs/current/api/org/apache/hadoop/fs/FileUtil.html#replaceFile(java.io.File, java.io.File)
I think the FileUtilts replaceFile would also solve the purpose.
http://hadoop.apache.org/common/docs/current/api/org/apache/hadoop/fs/FileUtil.html#replaceFile(java.io.File, java.io.File)