|
|
Mohit Anchlia 2012-07-31, 22:13
I am seeing null row key and I am wondering how I got the nulls in there. Is it possible when using HBaseClient that a null row might have got inserted?
Michael Segel 2012-07-31, 23:18
Which release? On Jul 31, 2012, at 5:13 PM, Mohit Anchlia <[EMAIL PROTECTED]> wrote:
> I am seeing null row key and I am wondering how I got the nulls in there. > Is it possible when using HBaseClient that a null row might have got > inserted?
Mohit Anchlia 2012-07-31, 23:49
HBase 90.4
On Tue, Jul 31, 2012 at 4:18 PM, Michael Segel <[EMAIL PROTECTED]>wrote:
> Which release? > > > On Jul 31, 2012, at 5:13 PM, Mohit Anchlia <[EMAIL PROTECTED]> wrote: > > > I am seeing null row key and I am wondering how I got the nulls in there. > > Is it possible when using HBaseClient that a null row might have got > > inserted? > >
Mohit Anchlia 2012-08-01, 00:20
Not sure how but I am getting one null row per 9 writes when I do a GET in result.getRow(). Is it even possible to write null rows?
On Tue, Jul 31, 2012 at 4:49 PM, Mohit Anchlia <[EMAIL PROTECTED]>wrote:
> HBase 90.4 > > > On Tue, Jul 31, 2012 at 4:18 PM, Michael Segel <[EMAIL PROTECTED]>wrote: > >> Which release? >> >> >> On Jul 31, 2012, at 5:13 PM, Mohit Anchlia <[EMAIL PROTECTED]> >> wrote: >> >> > I am seeing null row key and I am wondering how I got the nulls in >> there. >> > Is it possible when using HBaseClient that a null row might have got >> > inserted? >> >> >
Igal Shilman 2012-08-01, 07:13
Hi, If the row for your key, is not present then get() will return an empty Result (a result with no key values in it) you should call result.isEmpty() first.
Igal.
On Wed, Aug 1, 2012 at 3:20 AM, Mohit Anchlia <[EMAIL PROTECTED]>wrote:
> Not sure how but I am getting one null row per 9 writes when I do a GET in > result.getRow(). Is it even possible to write null rows? > > On Tue, Jul 31, 2012 at 4:49 PM, Mohit Anchlia <[EMAIL PROTECTED] > >wrote: > > > HBase 90.4 > > > > > > On Tue, Jul 31, 2012 at 4:18 PM, Michael Segel < > [EMAIL PROTECTED]>wrote: > > > >> Which release? > >> > >> > >> On Jul 31, 2012, at 5:13 PM, Mohit Anchlia <[EMAIL PROTECTED]> > >> wrote: > >> > >> > I am seeing null row key and I am wondering how I got the nulls in > >> there. > >> > Is it possible when using HBaseClient that a null row might have got > >> > inserted? > >> > >> > > >
|
|