Reputation: 13267
What does hbase returns when get is called for either row key, Column Family , Column Qualifier
get ( ROW_KEY1 )
what does it returns, does it returns all the CFs
and then respective CQs
get ( ROW_KEY, CF)
does it returns all the CQs
....Upvotes: 0
Views: 173
Reputation: 550
For (1), it will return all the column families and column qualifiers. For (2), it will return all the column qualifiers for the specified column family.
Upvotes: 1