Configuration conf = HBaseConfiguration.create();
Job job = new Job(conf, "testMapreduceJob");
Scan scan = new Scan(startKey, stopKey);
TableMapReduceUtil.initTableMapperJob("table", scan,
RowCounterMapper.class, ImmutableBytesWritable.class, Result.class, job);
// Substituting standard TableInputFormat which was set in
// TableMapReduceUtil.initTableMapperJob(...)
job.setInputFormatClass(WdTableInputFormat.class);
keyDistributor.addInfo(job.getConfiguration());now my simple question is:
startKey and stopKey, are they the original keys or distributed keys?
cheers
andre
ok, i guess they are original keys :-)pls correct me, if i'm wron
--
You received this message because you are subscribed to the Google Groups "HBaseWD - Distribute Sequential HBase Writes" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hbasewd+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to a topic in the Google Groups "HBaseWD - Distribute Sequential HBase Writes" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/hbasewd/aw1behO9VyU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to hbasewd+u...@googlegroups.com.