Question : Only Column Families must be created at schema definition time 1. True 2. False
Correct Answer : 1
Question : Which of the following is the correct syntex for getting the
data from HBase table t1 and rowkey r1
1. get 't1', 'r1' 2. get 't1', 'r1', {COLUMN => 'fam1:c1'} 3. get 't1', 'r1', {COLUMN => 'fam1:c1', VERSIONS=> 2} 4. All of the above
Correct Answer : 4
get 'tablename', 'rowkey' [,options] get 't1', 'r1' get 't1', 'r1', {COLUMN => 'fam1:c1'} get 't1', 'r1', {COLUMN => 'fam1:c1', VERSIONS=> 2}
Question : Which statement is wrong about HBase 1. Tables can have thousands of columns 2. It is not mendatory to have dat data in all the columns 3. It does not support transaction 4. All of the above 5. None of the above