Overview
Hadoop 2.6.0 을 Java-client Library를 사용하여 다루는 법을 알아본다.
`hdfs_skim` 은 `hdfs://{active_namenode_url}:{port}`형식의 String 타입의 변수이다.
Hadoop Client 설치 방법
[hadoop-client Maven Repository](https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-client) 에서 Hadoop 버젼에 맞는 maven repository를 찾는다.
프로젝트의 pom.xml에 hadoop-client를 dependency로 등록한다.
hadoop-client
create directory
`hdfs`에 `/tmp/` 디렉터리 밑에 `test`라는 이름의 폴더를 추가.
public static void createDirectory() throws IOException {
// create directory
Configuration configuration = new Configuration();
configuration.set("fs.defaultFS", hdfs_skim);
FileSystem fileSystem = FileSystem.get(configuration);
String directoryName = "/tmp/test";
Path path = new Path(directoryName);
fileSystem.mkdirs(path);
}
hdfs dfs -ls /tmp
drwxr-xr-x - user supergroup 0 2022-10-03 19:04 /tmp/test
create file
`hdfs`에 `/tmp/test` 디렉터리 밑에 `read_write_hdfs_example.txt`라는 이름의 텍스트 파일 추가.
public static void writeFileToHDFS() throws IOException {
Configuration configuration = new Configuration();
configuration.set("fs.defaultFS", hdfs_skim);
FileSystem fileSystem = FileSystem.get(configuration);
//Create a path
String fileName = "read_write_hdfs_example.txt";
Path hdfsWritePath = new Path("/tmp/test/" + 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.newLine();
bufferedWriter.close();
fileSystem.close();
}
hdfs dfs -ls /tmp/test
Found 1 items
-rw-r--r-- 3 user supergroup 31 2022-10-03 19:40 /tmp/test/read_write_hdfs_example.txt
edit file
`hdfs`에 `/tmp/test/read_write_hdfs_example.txt` 파일에 텍스트 라인 한 줄 추가
public static void writeFileToHDFS() throws IOException {
Configuration configuration = new Configuration();
configuration.set("fs.defaultFS", hdfs_skim);
FileSystem fileSystem = FileSystem.get(configuration);
//Create a path
String fileName = "read_write_hdfs_example.txt";
Path hdfsWritePath = new Path("/tmp/test/" + 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.newLine();
bufferedWriter.close();
fileSystem.close();
}
hdfs dfs -cat /tmp/test/read_write_hdfs_example.txt
Java API to write data in HDFS
Java API to append data in HDFS file
read file
`hdfs`에 `/tmp/test/read_write_hdfs_example.txt` 파일을 읽어오기
public static void readFileFromHDFS() throws IOException {
Configuration configuration = new Configuration();
configuration.set("fs.defaultFS", hdfs_skim);
FileSystem fileSystem = FileSystem.get(configuration);
//Create a path
String fileName = "read_write_hdfs_example.txt";
Path hdfsReadPath = new Path("/tmp/test/" + fileName);
//Init input stream
FSDataInputStream inputStream = fileSystem.open(hdfsReadPath);
//Classical input stream usage
// String out= IOUtils.toString(inputStream, "UTF-8");
// System.out.println(out);
BufferedReader bufferedReader = new BufferedReader(
new InputStreamReader(inputStream, StandardCharsets.UTF_8));
String line = null;
while ((line=bufferedReader.readLine())!=null){
System.out.println(line);
}
inputStream.close();
fileSystem.close();
}
Java API to write data in HDFS
Java API to append data in HDFS file
Process finished with exit code 0
현재 단락 (1/77)
Hadoop 2.6.0 을 Java-client Library를 사용하여 다루는 법을 알아본다.