Re: getting row info without data

2012-01-19 Thread Scott Brunza
I've done some more testing with a simple table on a pseudo-distributed system (my laptop). Below is the test script with the various tests' outputs. I guess where I'm really getting confused is when I query for info:lame = Washington and want the info:fname column returned, why are all fname'

Re: getting row info without data

2012-01-18 Thread Stack
On Wed, Jan 18, 2012 at 5:20 AM, Scott Brunza wrote: > I'm using a SingleColumnValueFilter to get rows who's cf:qual have a given > value, but would just like the key, no values. I take it you made SingleColumnValueFilter do the right thing first? > If I add that filter to a > filterList with a

Re: getting row info without data

2012-01-18 Thread Scott Brunza
I think this fits what I'm trying to do, but have been having a heck of a time with it. I'm using a SingleColumnValueFilter to get rows who's cf:qual have a given value, but would just like the key, no values. If I add that filter to a filterList with a KeyOnlyFilter.new, I get nothing if KeyOnly

Re: getting row info without data

2011-11-30 Thread Mikael Sitruk
> >> -- Lars >> >> >> - Original Message - >> From: Michel Segel >> To: "user@hbase.apache.org" >> Cc: "user@hbase.apache.org" >> Sent: Monday, November 28, 2011 1:21 PM >> Subject: Re: getting row info without dat

Re: getting row info without data

2011-11-28 Thread Mikael Sitruk
eyOnlyFilter is not necessarily faster, the only > part saved is shipping the value to the client. > > -- Lars > > > - Original Message - > From: Michel Segel > To: "user@hbase.apache.org" > Cc: "user@hbase.apache.org" > Sent: Monday, N

Re: getting row info without data

2011-11-28 Thread lars hofhansl
ginal Message - From: Michel Segel To: "user@hbase.apache.org" Cc: "user@hbase.apache.org" Sent: Monday, November 28, 2011 1:21 PM Subject: Re: getting row info without data Doesn't sound like it... He mentions column names... sounds like he would be better off writing

Re: getting row info without data

2011-11-28 Thread Mikael Sitruk
Yes i need the column names. Writing to 2 table will have too much payload. I have very strict requirement on latency/throughput having additional round trip just for getting the meta data of a row is too much. Similarly to http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/HBaseAdmin.h

Re: getting row info without data

2011-11-28 Thread Michel Segel
Doesn't sound like it... He mentions column names... sounds like he would be better off writing to two tables. One that stores only the column name and one that stores the data in each column. Sent from a remote device. Please excuse any typos... Mike Segel On Nov 28, 2011, at 11:54 AM, Stack

Re: getting row info without data

2011-11-28 Thread Stack
On Mon, Nov 28, 2011 at 8:54 AM, Mikael Sitruk wrote: > Hi > > I would like to know if it is possible to retrieve the columns name and not > the whole content of rows. > The reason for such request is that the columns store high volumn of data > (2K) each (and i store 900 columns per key). > Retri

getting row info without data

2011-11-28 Thread Mikael Sitruk
Hi I would like to know if it is possible to retrieve the columns name and not the whole content of rows. The reason for such request is that the columns store high volumn of data (2K) each (and i store 900 columns per key). Retrieving the whole row and not the "Description/Metadata" of the row is