Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Ans with sample code [HDFS_HABSE map Reduce ][1] [1]: stackoverflow.com/questions/13578097/… – saurabh shashank May 7 at 8:05

2 Answers

Not sure why the HDFS version works: normaly you have to set the input format for the job, and FileInputFormat is an abstract class. Perhaps you left some lines out? such as

job.setInputFormatClass(TextInputFormat.class);
share|improve this answer
Thank you for answering there were several errors on the driver part, now its solved. – jmva Feb 15 '11 at 10:24
 public void map(LongWritable key, Text value, 
 Context context)throws IOException, 
 InterruptedException {

change this to immutableBytesWritable, intwritable.

I am not sure..hope it works

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.