> Can you give me some example where I can use TableOutPutFormat to insert > data to HBase (which does not have reduce step)?
Just set the output of your map to use TableOutputFormat, an example comes with HBase: https://github.com/apache/hbase/blob/trunk/src/main/java/org/apache/hadoop/hbase/mapreduce/Import.java J-D
