I have some various IDs related to each row: let's say, 1001
, and 1002
. Each of these IDs has a similar set of attributes.
So my thought is to have one column family ('cf') with column qualifiers as such:
cf:1001-attribute1 -> 'value a'
cf:1001-attribute2 -> 'value b'
cf:1001-attribute3 -> 'value c'
cf:1002-attribute1 -> 'value d'
cf:1002-attribute2 -> 'value e'
cf:1002-attribute3 -> 'value f'
Am I able to scan for: row(x), column family (cf), columns (1001*) so that I pick up a map of all the attributes for 1001 in this case?
Obviously I can do this for row keys, I'm not sure if column qualifiers work the same.