HDFS文件名更改
Posted nan-qiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDFS文件名更改相关的知识,希望对你有一定的参考价值。
1 //文件名更改 2 @Test 3 public void testRename() throws IOException, InterruptedException, URISyntaxException 4 5 //获取文件系统 6 Configuration configuration = new Configuration(); 7 FileSystem fs = FileSystem.get(new URI("hdfs://192.168.12.161:9000"), configuration, "hadoop"); 8 //修改文件名称 9 fs.rename(new Path("/qiuyun.txt"), new Path("/nanzhou.txt")); 10 //关闭资源 11 fs.close(); 12 13
以上是关于HDFS文件名更改的主要内容,如果未能解决你的问题,请参考以下文章
使用 pyspark 更改分隔符并将其保存为 HDFS 中的文本文件
在本地文件系统(不是HDFS)中使用Scala读取Apache Spark中的文件时如何更改输入块大小[重复]