RE: Writting to HBASE in map phase

2012-07-10 Thread Pablo Musa
TableOutputFormat will automatically kick in at the Map stage, i.e., just add the below to your driver before you submit the job. You need no other changes. job.setNumReduceTasks(0); On Wed, Jul 11, 2012 at 1:53 AM, Pablo Musa wrote: > Hey guys, > > I need to update a field in an HB

Writting to HBASE in map phase

2012-07-10 Thread Pablo Musa
Hey guys, I need to update a field in an HBASE table and I want to do a mapred job for that. I can do it using both map and red phase. However, it does not make any sense to me, since map will pass the "Result" it is receiving to the reduce phase. I also read in the hbase mailing list someone say