Avinash
Avinash

Reputation: 13267

What does hbase returns when get is called for either row key, Column Family , Column Qualifier

What does hbase returns when get is called for either row key, Column Family , Column Qualifier

  1. When Called with get ( ROW_KEY1 ) what does it returns, does it returns all the CFs and then respective CQs
  2. When Called with get ( ROW_KEY, CF) does it returns all the CQs ....

Upvotes: 0

Views: 173

Answers (1)

Jayan Kuttagupthan
Jayan Kuttagupthan

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

Related Questions