Hbase 简明教程

HBase - Read Data

Reading Data using HBase Shell

get 命令和 get() 方法的 HTable 类用于从 HBase 中某张表读取数据。使用 get 命令,您一次只能获取一行数据。它的语法如下所示:

get ’<table name>’,’row1’

Example

以下示例显示如何使用 get 命令。让我们扫描 emp 表的第一行。

hbase(main):012:0> get 'emp', '1'

   COLUMN                     CELL

personal : city timestamp = 1417521848375, value = hyderabad

personal : name timestamp = 1417521785385, value = ramu

professional: designation timestamp = 1417521885277, value = manager

professional: salary timestamp = 1417521903862, value = 50000

4 row(s) in 0.0270 seconds

Reading a Specific Column

下面给出使用 get 方法读取特定列的语法。

hbase> get 'table name', ‘rowid’, {COLUMN ⇒ ‘column family:column name ’}

Example

下面给出在 HBase 表中读取特定列的示例。

hbase(main):015:0> get 'emp', 'row1', {COLUMN ⇒ 'personal:name'}
  COLUMN                CELL
personal:name timestamp = 1418035791555, value = raju
1 row(s) in 0.0080 seconds

Reading Data Using Java API

要从 HBase 表中读取数据,请使用 HTable 类的 get() 方法。此方法需要 Get 类的实例。按照以下步骤从 HBase 表中检索数据。

Step 1: Instantiate the Configuration Class

Configuration 类将其 HBase 配置文件添加到其对象中。你可以使用 HbaseConfiguration 类的 create() 方法创建一个配置对象,如下所示。

Configuration conf = HbaseConfiguration.create();

Step 2: Instantiate the HTable Class

你有一个名为 HTable 的类,是 Table 在 HBase 中的一个实现。该类用于与单个 HBase 表通信。在实例化该类时,它将接受配置对象和表名作为参数。你可以如下所示实例化 HTable 类。

HTable hTable = new HTable(conf, tableName);

Step 3: Instantiate the Get Class

您可以使用 HTable 类的 get() 方法从 HBase 表中检索数据。此方法从给定行中提取一个单元格。它需要一个 Get 类对象作为参数。如下所示创建它。

Get get = new Get(toBytes("row1"));

Step 4: Read the Data

在检索数据时,您可以按 ID 获取单行,或按一组行 ID 获取一组行,或扫描整个表或一组行。

可以使用 Get 类中的 add 方法变量来检索 HBase 表数据。

要从特定列族获取特定列,请使用以下方法。

get.addFamily(personal)

要从特定列族获取所有列,请使用以下方法。

get.addColumn(personal, name)

Step 5: Get the Result

通过将 Get 类实例传递给 HTable 类的 get 方法来获取结果。此方法返回 Result 类对象,该对象保存所请求的结果。下面是 get() 方法的用法。

Result result = table.get(g);

Step 6: Reading Values from the Result Instance

Result 类提供了 getValue() 方法来读取其实例中的值。如下所示使用它从 Result 实例中读取值。

byte [] value = result.getValue(Bytes.toBytes("personal"),Bytes.toBytes("name"));
byte [] value1 = result.getValue(Bytes.toBytes("personal"),Bytes.toBytes("city"));

下面给出从 HBase 表中读取值的完整程序。

import java.io.IOException;

import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.HTable;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.util.Bytes;

public class RetriveData{

   public static void main(String[] args) throws IOException, Exception{

      // Instantiating Configuration class
      Configuration config = HBaseConfiguration.create();

      // Instantiating HTable class
      HTable table = new HTable(config, "emp");

      // Instantiating Get class
      Get g = new Get(Bytes.toBytes("row1"));

      // Reading the data
      Result result = table.get(g);

      // Reading values from Result class object
      byte [] value = result.getValue(Bytes.toBytes("personal"),Bytes.toBytes("name"));

      byte [] value1 = result.getValue(Bytes.toBytes("personal"),Bytes.toBytes("city"));

      // Printing the values
      String name = Bytes.toString(value);
      String city = Bytes.toString(value1);

      System.out.println("name: " + name + " city: " + city);
   }
}

编译并执行上述程序,如下所示:

$javac RetriveData.java
$java RetriveData

输出应如下所示:

name: Raju city: Delhi