Using an HBase Client

Scenario

This section describes how to use the HBase client in an O&M scenario or a service scenario.

Prerequisites

Using the HBase Client

  1. Log in to the node where the client is installed as the client installation user.
  2. Run the following command to go to the client directory:

    cd /opt/hadoopclient

  3. Run the following command to configure environment variables:

    source bigdata_env

  4. If Kerberos authentication is enabled for the current cluster, run the following command to authenticate the current user. The current user must have the permission to create HBase tables. If Kerberos authentication is disabled for the current cluster, skip this step.

    kinit Component service user

    For example, kinit hbaseuser.

  5. Run the following HBase client command:

    hbase shell

Common HBase client commands

The following table lists common HBase client commands.
Table 1 HBase client commands

Command

Description

create

Used to create a table, for example, create 'test', 'f1', 'f2', 'f3'.

disable

Used to disable a specified table, for example, disable 'test'.

enable

Used to enable a specified table, for example, enable 'test'.

alter

Used to alter the table structure. You can run the alter command to add, modify, or delete column family information and table-related parameter values, for example, alter 'test', {NAME => 'f3', METHOD => 'delete'}.

describe

Used to obtain the table description, for example, describe 'test'.

drop

Used to delete a specified table, for example, drop 'test'. Before deleting a table, you must stop it.

put

Used to write the value of a specified cell, for example, put 'test','r1','f1:c1','myvalue1'. The cell location is unique and determined by the table, row, and column.

get

Used to get the value of a row or the value of a specified cell in a row, for example, get 'test','r1'.

scan

Used to query table data, for example, scan 'test'. The table name and scanner must be specified in the command.