Slide 19
Slide 19 text
CRUD Operations
● PUT
hbase> put ‘table’, ‘rowkey’, ‘fam:col’, ‘value’, ‘ts’
● GET
hbase> get ‘table’, ‘rowkey’, {COLUMN => ‘col’,
TIMESTAMP => ‘ts’, VERSIONS => 4}
● DELETE
hbase> delete ‘table’, ‘rowkey’, ‘fam:col’
● SCAN
hbase> scan ‘table’, {COLUMNS => ['c1', 'c2'], LIMIT =>
10, STARTROW => 'xyz'}