我想在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写入权限?
感谢。
答案 0 :(得分:66)
替代@Tariq的asnwer你可以在获取文件系统时传递URI
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();
答案 1 :(得分:21)
将HADOOP_CONF_DIR
环境变量定义到您的Hadoop配置文件夹,或在代码中添加以下两行:
config.addResource(new Path("/HADOOP_HOME/conf/core-site.xml"));
config.addResource(new Path("/HADOOP_HOME/conf/hdfs-site.xml"));
如果您不添加此项,您的客户端将尝试写入本地FS,从而导致权限被拒绝异常。
答案 2 :(得分:0)
这应该可以解决问题
import org.apache.commons.io.IOUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FSDataOutputStream;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import java.io.*;
import java.nio.charset.StandardCharsets;
public static void writeFileToHDFS() throws IOException {
Configuration configuration = new Configuration();
configuration.set("fs.defaultFS", "hdfs://localhost:9000");
configuration.addResource(new Path("/HADOOP_HOME/conf/core-site.xml"));
configuration.addResource(new Path("/HADOOP_HOME/conf/hdfs-site.xml"));
FileSystem fileSystem = FileSystem.get(configuration);
//Create a path
String fileName = "input.txt";
Path hdfsWritePath = new Path("/user/yourdesiredpath/" + fileName);
FSDataOutputStream fsDataOutputStream = fileSystem.create(hdfsWritePath,true);
BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(fsDataOutputStream,StandardCharsets.UTF_8));
bufferedWriter.write("Java API to write data in HDFS");
bufferedWriter.close();
fileSystem.close();
}
答案 3 :(得分:-2)
请尝试以下方法。
FileSystem fs = path.getFileSystem(conf);
SequenceFile.Writer inputWriter = new SequenceFile.Writer(fs, conf, path, LongWritable.class, MyWritable.class);
inputWriter.append(new LongWritable(uniqueId++), new MyWritable(data));
inputWriter.close();