HBase建立資料


本章將介紹如何在HBase表中建立的資料。要在HBase表中建立的資料,可以下面的命令和方法:

  • put 命令,
  • add() - Put類的方法
  • put() - HTable 類的方法.

作為一個例子,我們將在HBase中建立下表。

HBase Table

使用put命令,可以插入行到一個表。它的語法如下:

put ’<table name>’,’row1’,’<colfamily:colname>’,’<value>’

插入第一行

將第一行的值插入到emp表如下所示。

hbase(main):005:0> put 'emp','1','personal data:name','raju'
0 row(s) in 0.6600 seconds
hbase(main):006:0> put 'emp','1','personal data:city','hyderabad'
0 row(s) in 0.0410 seconds
hbase(main):007:0> put 'emp','1','professional
data:designation','manager'
0 row(s) in 0.0240 seconds
hbase(main):007:0> put 'emp','1','professional data:salary','50000'
0 row(s) in 0.0240 seconds

以相同的方式使用put命令插入剩餘的行。如果插入完成整個表格,會得到下面的輸出。

hbase(main):022:0> scan 'emp'

   ROW                        COLUMN+CELL
1 column=personal data:city, timestamp=1417524216501, value=hyderabad

1 column=personal data:name, timestamp=1417524185058, value=ramu

1 column=professional data:designation, timestamp=1417524232601,

 value=manager
 
1 column=professional data:salary, timestamp=1417524244109, value=50000

2 column=personal data:city, timestamp=1417524574905, value=chennai

2 column=personal data:name, timestamp=1417524556125, value=ravi

2 column=professional data:designation, timestamp=1417524592204,

 value=sr:engg
 
2 column=professional data:salary, timestamp=1417524604221, value=30000

3 column=personal data:city, timestamp=1417524681780, value=delhi

3 column=personal data:name, timestamp=1417524672067, value=rajesh

3 column=professional data:designation, timestamp=1417524693187,

value=jr:engg
3 column=professional data:salary, timestamp=1417524702514,

value=25000 

使用Java API插入資料

可以使用Put 類的add()方法將資料插入到HBase。可以使用HTable類的put()方法儲存資料。這些類屬於org.apache.hadoop.hbase.client包。下面給出的步驟是在一個HBase表建立資料。

第1步:範例化組態類

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位元組陣列,以及要插入的值。使用add()方法將資料插入HBase表如下圖所示。

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

第5步:儲存資料到表中

插入所需的行後,HTable類put範例的put()方法新增,如下所示儲存更改。

hTable.put(p); 

第6步:關閉HTable範例

建立在HBase的表資料之後,使用close()方法,如下所示關閉HTable範例。

hTable.close(); 

下面給出的是在HBase的表建立資料的完整程式。

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 InsertData{

   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")); 

      // adding values using add() method
      // accepts column family name, qualifier/row name ,value
      p.add(Bytes.toBytes("personal"),
      Bytes.toBytes("name"),Bytes.toBytes("raju"));

      p.add(Bytes.toBytes("personal"),
      Bytes.toBytes("city"),Bytes.toBytes("hyderabad"));

      p.add(Bytes.toBytes("professional"),Bytes.toBytes("designation"),
      Bytes.toBytes("manager"));

      p.add(Bytes.toBytes("professional"),Bytes.toBytes("salary"),
      Bytes.toBytes("50000"));
      
      // Saving the put Instance to the HTable.
      hTable.put(p);
      System.out.println("data inserted");
      
      // closing HTable
      hTable.close();
   }
}

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

$javac InsertData.java
$java InsertData

下面列出的是輸出結果:

data inserted