Currently I'm evaluating Apache Crunch. I followed a simple WordCount MapReduce job example: Afterwards I try to save the results into a standalone HBase. HBase is running (checked with jps and HBase shell) as described here: http://hbase.apache.org/book/quickstart.html
Now I adopt the example for writing into HBase:
Pipeline pipeline = new MRPipeline(WordCount.class,getConf());
PCollection<String> lines = pipeline.readTextFile(inputPath);
PTable<String,Long> counts = noStopWords.count();
pipeline.write(counts, new HBaseTarget("wordCountOutTable");
PipelineResult result = pipeline.done();
I get an Exception: "exception:java.lang.illegalArgumentException: HBaseTarget only supports Put and Delete"
Any clues what went wrong?