I am getting start rowkey as empty and stop rowkey as empty. Is this
possible?

On Mon, Jun 5, 2017 at 11:19 PM, Ankit Singhal <ankitsingha...@gmail.com>
wrote:

> Hi RajeshKumar,
>
> you can try this.(InputSplit class may vary depending upon the InputFormat
> you are using,  below example is for TableInputFormat)
> TableSplit tableSplit = (TableSplit)context.getInputSplit();
> byte[] startRow=tableSplit.getStartRow()
> byte[] endRow=tableSplit.getEndRow()
>
> Regards,
> Ankit Singhal
>
> On Mon, Jun 5, 2017 at 5:38 AM, Rajeshkumar J <rajeshkumarit8...@gmail.com
> >
> wrote:
>
> > Hi,
> >
> > I am running mapreduce over hbase table using java and I want to know
> which
> > is the startkey and stopkey for every region. As every mapper takes a
> > region as input I need to know the startkey and stopkey of a region in
> the
> > map function. Is there any function to get that or is there any way to
> > achieve this
> >
> > Thanks
> >
>

Reply via email to