在HBase中,可以使用HBase Shell或者HBase Java API來進行增刪改查數據操作。
put 'table_name', 'row_key', 'column_family:column_qualifier', 'value'
delete 'table_name', 'row_key', 'column_family:column_qualifier'
修改數據: 可以先刪除原有的數據,然后再添加新的數據來修改數據。也可以使用HBase Java API來修改數據。
查詢數據: 可以使用HBase Shell中的get命令或者scan命令來查詢數據。例如,在HBase Shell中使用get命令:
get 'table_name', 'row_key'
或者使用scan命令來掃描整個表:
scan 'table_name'
除了HBase Shell,還可以使用HBase Java API來進行增刪改查數據的操作。通過構建Get、Put、Delete和Scan等對象來實現相應的功能。