HBase更新數據

可以使用put命令更新現有的單元格值。按照下面的語法,並註明新值,如下圖所示。

put ‘table name’,’row ’,'Column family:column name',’new value’

新給定值替換現有的值,並更新該行。

示例

假設HBase中有一個表emp擁有下列數據

hbase(main):003:0> scan 'emp' ROW COLUMN+CELL
row1 column=personal:name, timestamp=1418051555, value=raju
row1 column=personal:city, timestamp=1418275907, value=Hyderabad row1 column=professional:designation, timestamp=14180555,value=manager
row1 column=professional:salary, timestamp=1418035791555,value=50000 1 row(s) in 0.0100 seconds

以下命令將更新名爲「Raju'員工的城市值爲'Delhi'。

hbase(main):002:0> put 'emp','row1','personal:city','Delhi' 0 row(s) in 0.0400 seconds

更新後的表如下所示,觀察這個城市Raju的值已更改爲「Delhi」。

hbase(main):003:0> scan 'emp' ROW COLUMN+CELL
row1 column=personal:name, timestamp=1418035791555, value=raju
row1 column=personal:city, timestamp=1418274645907, value=Delhi row1 column=professional:designation, timestamp=141857555,value=manager
row1 column=professional:salary, timestamp=1418039555, value=50000 1 row(s) in 0.0100 seconds

使用Java API更新數據

使用put()方法將特定單元格更新數據。按照下面給出更新表的現有單元格值的步驟。

第1步:實例化Configuration類

Configuration類增加了HBase的配置文件到它的對象。使用HbaseConfiguration類的create()方法,如下圖所示的配置對象。

Configuration conf = HbaseConfiguration.create();

第2步:實例化HTable類

有一類叫HTable,實現在HBase中的Table類。此類用於單個HBase的表進行通信。在這個類實例,它接受配置對象和表名作爲參數。實例化HTable類,如下圖所示。

HTable hTable = new HTable(conf, tableName);

第3步:實例化Put類

要將數據插入到HBase表中,使用add()方法和它的變體。這種方法屬於Put類,因此實例化Put類。這個類必須以字符串格式的列名插入數據。可以實例化Put類,如下圖所示。

Put p = new Put(Bytes.toBytes("row1"));

第4步:更新現有的單元格

Put 類的add()方法用於插入數據。它需要表示列族,列限定符(列名稱)3字節陣列,並要插入的值。將數據插入HBase表使用add()方法,如下圖所示。

p.add(Bytes.toBytes("coloumn family "), Bytes.toBytes("column
name"),Bytes.toBytes("value")); p.add(Bytes.toBytes("personal"), Bytes.toBytes("city"),Bytes.toBytes("Delih"));

第5步:保存表數據

插入所需的行後,HTable類實例的put()方法添加如下所示保存更改。

hTable.put(p);

第6步:關閉HTable實例

創建在HBase的表數據之後,使用close()方法,如下所示關閉HTable實例。

hTable.close();

下面給出的是完整的程序,在一個特定的表更新數據。

import java.io.IOException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hbase.HBaseConfiguration; import org.apache.hadoop.hbase.client.HTable; import org.apache.hadoop.hbase.client.Put; import org.apache.hadoop.hbase.util.Bytes; public class UpdateData{ public static void main(String[] args) throws IOException { // Instantiating Configuration class Configuration config = HBaseConfiguration.create(); // Instantiating HTable class HTable hTable = new HTable(config, "emp"); // Instantiating Put class //accepts a row name Put p = new Put(Bytes.toBytes("row1")); // Updating a cell value p.add(Bytes.toBytes("personal"), Bytes.toBytes("city"),Bytes.toBytes("Delih")); // Saving the put Instance to the HTable. hTable.put(p); System.out.println("data Updated"); // closing HTable hTable.close(); } }

編譯和執行上述程序如下所示。

$javac UpdateData.java
$java UpdateData

下面列出的是輸出結果:

data Updated