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