我有一个输入文件:
101 Alice 23 female IT 45
102 Bob 34 male Finance 89
103 Chris 67 male IT 97
我的映射器:
package EmpCtcPack;
import java.io.IOException;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Mapper.Context;
public class EmpctcMapper extends Mapper<Object, Text, Text, Text>{
private Text MKey=new Text();
private Text MValue=new Text();
public void map(Object key, Text value, Context context
) throws IOException, InterruptedException {
String tempKey= new String();
String tempValue=new String();
try
{
tempValue=value.toString();
tempKey=value.toString().split(" ")[3];
}
catch (Exception e)
{
e.printStackTrace();
}
MKey.set(tempKey);
MValue.set(tempValue);
context.write(MKey, MValue);
}
}
我的减速机:
package EmpCtcPack;
import java.io.IOException;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.Reducer.Context;
public class EmpCtcReducer extends Reducer<Text,Text,Text,Text> {
private Text RValue=new Text();
private Text RKey= new Text();
public void reduce(Text key, Iterable<Text> values,
Context context
) throws IOException, InterruptedException {
Integer i= new Integer(0);
String s=new String();
Integer t=new Integer(0);
Text text=new Text();
try
{
for (Text val : values)
{
String arr[]=val.toString().split(" ");
s=arr[3];
text.set(s);
context.write(key, text);
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
问题在于拆分方法。
当我尝试获取arr[0]
时,它工作正常,我得到了ID号( 101,102等等)。
但如果我尝试获得arr[1]
或arr[2]
,我会获得 0 。
有谁知道它为什么这么有效?
提前谢谢!
答案 0 :(得分:0)
您在驱动程序类中使用了combiner,在这种情况下您不需要。
尝试在split():
value.toString().split("\\t+"); //if split-en by multiple tabs
value.toString().split("\\t"); //if split-en by single tab
答案 1 :(得分:0)
我有同样的错误。这是合并课。我删除了组合器类,它现在工作正常。感谢