I'm new on hadoop and this is my first post. I have a MapReduce job which is supposed to get an input from Hdfs and write the output of the reducer to Hbase. I haven't found any good example.
Here's the code, the error runing this example is Type mismatch in map, expected ImmutableBytesWritable recieved IntWritable.
import java.io.IOException;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
import org.apache.hadoop.hbase.mapred.TableReduce;
import org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil;
import org.apache.hadoop.hbase.mapreduce.TableReducer;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.io.*;
import org.apache.hadoop.mapreduce.*;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
public class Hbase {
/**
* @param args[0] input path del hdfs
*/
//Mapper
static class SumaValorsMapper
extends Mapper < LongWritable, Text, ImmutableBytesWritable, IntWritable > {
/* input <key numero de linia, valor tota la linia>
* output <clau del log, valor corresponent a la clau>*/
/* <key numero de linia, valor tota la linia>*/
public void map(LongWritable key, Text value,
Context context)throws IOException,
InterruptedException {
byte[] clau;
int valor,pos = 0;
String linia = value.toString();
String p1 , p2 = null;
pos = linia.indexOf("=");
//PART KEY
p1 = linia.substring(0, pos);
p1 = p1.trim();
clau = Bytes.toBytes(p1);
//PART VALUE
p2 = linia.substring(pos +1);
p2 = p2.trim();
valor = Integer.parseInt(p2);
context.write(new ImmutableBytesWritable(clau),new IntWritable(valor));
}
}
//Reducer
public static class SumaValorsReducer extends TableReducer<ImmutableBytesWritable, IntWritable, ImmutableBytesWritable> {
public void reduce(ImmutableBytesWritable key, Iterable<IntWritable> values, Context context)
throws IOException, InterruptedException {
long suma =0;
while(values.iterator().hasNext()){
/*Recorrer tots els valors*/
suma += values.iterator().next().get();
}
Put put = new Put(key.get());
put.add(Bytes.toBytes("data"), Bytes.toBytes("total"), Bytes.toBytes(suma));
System.out.println(String.format("stats : key : %d, count : %d", Bytes.toInt(key.get()), suma));
context.write(key, put);
}
}
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
if (args.length != 1) {
System.err.println("Metode d'ús: <input path>");
System.exit(-1);
}
HBaseConfiguration conf = new HBaseConfiguration();
Job job = new Job(conf, "HbaseSumaValors");
job.setJarByClass(Hbase.class);
//Mapper->hdfs
FileInputFormat.addInputPath(job, new Path(args[0]));
job.setMapperClass(SumaValorsMapper.class);
//Reducer->hbase
TableMapReduceUtil.initTableReducerJob("taula", SumaValorsReducer.class, job);
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
}
`
I had a similar job only with HDFS and works fine.
Thank you for your comments.
