使用 Java 在 hdfs 中写入文件

2022-08-31 16:58:15

我想在HDFS中创建一个文件并在其中写入数据。我用了这个代码:

Configuration config = new Configuration();     
FileSystem fs = FileSystem.get(config); 
Path filenamePath = new Path("input.txt");  
try {
    if (fs.exists(filenamePath)) {
        fs.delete(filenamePath, true);
    }

    FSDataOutputStream fin = fs.create(filenamePath);
    fin.writeUTF("hello");
    fin.close();
}

它创建文件,但不会在其中写入任何内容。我搜索了很多,但没有找到任何东西。我的问题是什么?我需要任何权限才能在HDFS中编写吗?

谢谢。


答案 1

@Tariq的asnwer的替代方法,您可以在获取文件系统时传递URI

import org.apache.hadoop.fs.FileSystem
import org.apache.hadoop.conf.Configuration
import java.net.URI
import org.apache.hadoop.fs.Path
import org.apache.hadoop.util.Progressable
import java.io.BufferedWriter
import java.io.OutputStreamWriter

Configuration configuration = new Configuration();
FileSystem hdfs = FileSystem.get( new URI( "hdfs://localhost:54310" ), configuration );
Path file = new Path("hdfs://localhost:54310/s2013/batch/table.html");
if ( hdfs.exists( file )) { hdfs.delete( file, true ); } 
OutputStream os = hdfs.create( file,
    new Progressable() {
        public void progress() {
            out.println("...bytes written: [ "+bytesWritten+" ]");
        } });
BufferedWriter br = new BufferedWriter( new OutputStreamWriter( os, "UTF-8" ) );
br.write("Hello World");
br.close();
hdfs.close();

答案 2

将环境变量定义到 Hadoop 配置文件夹中,或在代码中添加以下 2 行:HADOOP_CONF_DIR

config.addResource(new Path("/HADOOP_HOME/conf/core-site.xml"));
config.addResource(new Path("/HADOOP_HOME/conf/hdfs-site.xml"));

如果不添加此内容,客户端将尝试写入本地 FS,从而导致权限被拒绝异常。


推荐