You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by Frédéric Fondement <fr...@uha.fr> on 2011/05/16 18:46:23 UTC

Storing data un column qualifier

Hi all,

Simple question: is it correct practice to save data in a column family 
qualifier ?
I'd like to save information for a set contents inside a row (e.g. myRow 
: {theSet : [1,2,3]}) ; can I safely and efficiently store it like that 
: myRow : { theSet:1 : {}, theSet:2 : {}, theSet:3 : {}} (theSet being a 
column family and {} being some 0-sized byte array) ?

All the best,

F.Fondement


Re: Storing data un column qualifier

Posted by Stack <st...@duboce.net>.
2011/5/16 Frédéric Fondement <fr...@uha.fr>:
> Hi all,
>
> Simple question: is it correct practice to save data in a column family
> qualifier ?

Others use the qualifier to carry data.  There is no rule against it.
St.Ack