[HADOOP] 하둡 단어 수는 단어의 발생으로 분류
HADOOP하둡 단어 수는 단어의 발생으로 분류
나는 나에게 모든 단어와 그 발생을주고 있지만, 알파벳에 의해 발생으로하지 분류 할 단어 수를 실행해야
나는 다른 후 하나를이 두 가지 작업을 생성하고 실행하는 데 필요한 이해 나는 매퍼 및 하둡 맵리 듀스를 사용하여 정렬 단어 수에서 감속기를 사용
package org.myorg;
import java.io.IOException;
import java.util.*;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.*;
import org.apache.hadoop.mapred.*;
import org.apache.hadoop.mapreduce.Job;
public class WordCount {
public static class Map extends MapReduceBase implements Mapper<LongWritable, Text, Text, IntWritable> {
private final static IntWritable one = new IntWritable(1);
private Text word = new Text();
public void map(LongWritable key, Text value, OutputCollector<Text, IntWritable> output, Reporter reporter) throws IOException {
String line = value.toString();
StringTokenizer tokenizer = new StringTokenizer(line);
while (tokenizer.hasMoreTokens()) {
word.set(tokenizer.nextToken());
output.collect(word, one);
}
}
}
public static class Reduce extends MapReduceBase implements Reducer<Text, IntWritable, Text, IntWritable> {
public void reduce(Text key, Iterator<IntWritable> values, OutputCollector<Text, IntWritable> output, Reporter reporter) throws IOException {
int sum = 0;
while (values.hasNext()) {
sum += values.next().get();
}
output.collect(key, new IntWritable(sum));
}
}
class Map1 extends MapReduceBase implements Mapper<Object, Text, IntWritable, Text> {
public void map(Object key, Text value, OutputCollector<IntWritable, Text> collector, Reporter arg3) throws IOException {
String line = value.toString();
StringTokenizer stringTokenizer = new StringTokenizer(line);
{
int number = 999;
String word = "empty";
if (stringTokenizer.hasMoreTokens()) {
String str0 = stringTokenizer.nextToken();
word = str0.trim();
}
if (stringTokenizer.hasMoreElements()) {
String str1 = stringTokenizer.nextToken();
number = Integer.parseInt(str1.trim());
}
collector.collect(new IntWritable(number), new Text(word));
}
}
}
class Reduce1 extends MapReduceBase implements Reducer<IntWritable, Text, IntWritable, Text> {
public void reduce(IntWritable key, Iterator<Text> values, OutputCollector<IntWritable, Text> arg2, Reporter arg3) throws IOException {
while ((values.hasNext())) {
arg2.collect(key, values.next());
}
}
}
public static void main(String[] args) throws Exception {
JobConf conf = new JobConf(WordCount.class);
conf.setJobName("wordCount");
conf.setOutputKeyClass(Text.class);
conf.setOutputValueClass(IntWritable.class);
conf.setMapperClass(Map.class);
conf.setCombinerClass(Reduce.class);
conf.setReducerClass(Reduce.class);
conf.setInputFormat(TextInputFormat.class);
conf.setOutputFormat(TextOutputFormat.class);
FileInputFormat.setInputPaths(conf, new Path(args[0]));
FileOutputFormat.setOutputPath(conf, new Path("/tmp/temp"));
//JobClient.runJob(conf);
//------------------------------------------------------------------
JobConf conf2 = new JobConf(WordCount.class);
conf2.setJobName("WordCount1");
conf2.setOutputKeyClass(Text.class);
conf2.setOutputValueClass(IntWritable.class);
conf2.setMapperClass(Map1.class);
conf2.setCombinerClass(Reduce1.class);
conf2.setReducerClass(Reduce1.class);
conf2.setInputFormat(TextInputFormat.class);
conf2.setOutputFormat(TextOutputFormat.class);
FileInputFormat.setInputPaths(conf2, new Path("/tmp/temp/part-00000"));
FileOutputFormat.setOutputPath(conf2, new Path(args[1]));
Job job1 = new Job(conf);
Job job2 = new Job(conf2);
job1.submit();
if (job1.waitForCompletion(true)) {
job2.submit();
job1.waitForCompletion(true);
}
}
}
그것을 작동하지 않는, 내가 여기 변경해야합니다, 또는 왜 제대로 동작하지 않습니다 ???
해결법
-
==============================
1.프로그램이 될 때까지 실행하는 경우 :
프로그램이 될 때까지 실행하는 경우 :
INFO input.FileInputFormat: Total input paths to process : 1
다음 문제는 마지막 줄에있다 :
job2.submit();
작업이 제출하지만, 처리 할 대기하지되었습니다. 이 시도:
job1.submit(); if (job1.waitForCompletion(true)) { job2.submit(); job2.waitForCompletion(true); }
당신의 분류기 MR 작업을 처리합니다. 나는 MR에 대한 새로운 API 및 흐름의 작품 코드를 시도했습니다.
그냥 마지막 줄을 추가합니다.
from https://stackoverflow.com/questions/22298432/hadoop-wordcount-sorted-by-word-occurrences by cc-by-sa and MIT license
'HADOOP' 카테고리의 다른 글
[HADOOP] 하이브 데이터를 가져 Sqoop을 (0) | 2019.10.14 |
---|---|
[HADOOP] Hiveserver2는 : 777 / 만들 변경 scratchdir 권한을 실패 : FileClient를 만들 수 없습니다 (0) | 2019.10.14 |
[HADOOP] RStudio 원격 하둡 서버에 연결 (0) | 2019.10.14 |
[HADOOP] 어떻게 원격 HDFS에 연결 (0) | 2019.10.14 |
[HADOOP] 어떻게 매퍼 또는 감속기는 HDFS에 데이터를 기록? (0) | 2019.10.14 |