介绍

本章将介绍如何在HBase表中创建的数据。要在HBase表中创建的数据,可以下面的命令和方法:

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

    作为一个例子,我们将在HBase中创建下表。

image.png
使用put命令,可以插入行到一个表。它的语法如下:

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

插入第一行

  1. 将第一行的值插入到emp表如下所示。
  1. hbase(main):005:0> put 'emp','1','personal data:name','raju'
  2. 0 row(s) in 0.6600 seconds
  3. hbase(main):006:0> put 'emp','1','personal data:city','hyderabad'
  4. 0 row(s) in 0.0410 seconds
  5. hbase(main):007:0> put 'emp','1','professional
  6. data:designation','manager'
  7. 0 row(s) in 0.0240 seconds
  8. hbase(main):007:0> put 'emp','1','professional data:salary','50000'
  9. 0 row(s) in 0.0240 seconds
  10. 以相同的方式使用put命令插入剩余的行。如果插入完成整个表格,会得到下面的输出。
  11. hbase(main):022:0> scan 'emp'
  12. ROW COLUMN+CELL
  13. 1 column=personal data:city, timestamp=1417524216501, value=hyderabad
  14. 1 column=personal data:name, timestamp=1417524185058, value=ramu
  15. 1 column=professional data:designation, timestamp=1417524232601,
  16. value=manager
  17. 1 column=professional data:salary, timestamp=1417524244109, value=50000
  18. 2 column=personal data:city, timestamp=1417524574905, value=chennai
  19. 2 column=personal data:name, timestamp=1417524556125, value=ravi
  20. 2 column=professional data:designation, timestamp=1417524592204,
  21. value=sr:engg
  22. 2 column=professional data:salary, timestamp=1417524604221, value=30000
  23. 3 column=personal data:city, timestamp=1417524681780, value=delhi
  24. 3 column=personal data:name, timestamp=1417524672067, value=rajesh
  25. 3 column=professional data:designation, timestamp=1417524693187,
  26. value=jr:engg
  27. 3 column=professional data:salary, timestamp=1417524702514,
  28. value=25000


使用Java API插入数据

  1. 可以使用Put 类的add()方法将数据插入到HBase。可以使用HTable类的put()方法保存数据。这些类属于org.apache.hadoop.hbase.client包。下面给出的步骤是在一个HBase表创建数据。

第1步:实例化配置类

  1. Configuration类增加了 HBase 配置文件到它的对象。使用HbaseConfiguration类的create()方法,如下图所示的配置对象。
  1. Configuration conf = HbaseConfiguration.create();

第2步:实例化HTable类

  1. 有一类名为HTable,在HBase中实现了Table。这个类用于单个HBase表进行通信。在这个类实例接受配置对象和表名作为参数。可以实例HTable类,如下图所示。
  1. HTable hTable = new HTable(conf, tableName);

第3步:实例化Put类

  1. 为了将数据插入到HBase表中,需要使用add()方法和变体。这种方法属于Put类,因此实例化Put类。这个类必须要以字符串格式的列名插入数据。可以实例Put类,如下图所示。
  1. Put p = new Put(Bytes.toBytes("row1"));

第4步:插入数据

  1. Put类的add()方法用于插入数据。它需要代表列族,分别为:列限定符(列名称)3字节阵列,以及要插入的值。使用add()方法将数据插入HBase表如下图所示。
  1. p.add(Bytes.toBytes("coloumn family "), Bytes.toBytes("column
  2. name"),Bytes.toBytes("value"));


第5步:保存数据到表中

  1. 插入所需的行后,HTableput实例的put()方法添加,如下所示保存更改。<br />hTable.put(p);

第6步:关闭HTable实例

  1. 创建在HBase的表数据之后,使用close()方法,如下所示关闭HTable实例。<br />hTable.close();<br /> 下面给出的是在HBase的表创建数据的完整程序。
  1. import java.io.IOException;
  2. import org.apache.hadoop.conf.Configuration;
  3. import org.apache.hadoop.hbase.HBaseConfiguration;
  4. import org.apache.hadoop.hbase.client.HTable;
  5. import org.apache.hadoop.hbase.client.Put;
  6. import org.apache.hadoop.hbase.util.Bytes;
  7. public class InsertData{
  8. public static void main(String[] args) throws IOException {
  9. // Instantiating Configuration class
  10. Configuration config = HBaseConfiguration.create();
  11. // Instantiating HTable class
  12. HTable hTable = new HTable(config, "emp");
  13. // Instantiating Put class
  14. // accepts a row name.
  15. Put p = new Put(Bytes.toBytes("row1"));
  16. // adding values using add() method
  17. // accepts column family name, qualifier/row name ,value
  18. p.add(Bytes.toBytes("personal"),
  19. Bytes.toBytes("name"),Bytes.toBytes("raju"));
  20. p.add(Bytes.toBytes("personal"),
  21. Bytes.toBytes("city"),Bytes.toBytes("hyderabad"));
  22. p.add(Bytes.toBytes("professional"),Bytes.toBytes("designation"),
  23. Bytes.toBytes("manager"));
  24. p.add(Bytes.toBytes("professional"),Bytes.toBytes("salary"),
  25. Bytes.toBytes("50000"));
  26. // Saving the put Instance to the HTable.
  27. hTable.put(p);
  28. System.out.println("data inserted");
  29. // closing HTable
  30. hTable.close();
  31. }
  32. }
  1. 编译和执行上述程序如下所示。
  1. $javac InsertData.java
  2. $java InsertData
  1. 下面列出的是输出结果:
  1. data inserted