hbase java 建表_Hbase命令创建表和Java API

本文介绍了如何使用HBase的命令行接口和Java API创建表。通过示例展示创建表的过程,包括使用'hbase(main):002:0> create'命令创建表,以及使用HBaseAdmin类的createTable()方法在Java中创建表。
摘要由CSDN通过智能技术生成

HBase创建表

create 'table name(表名)','column family(列族名)'

例子:

hbase(main):002:0> create 'member', 'personal', 'professional'

输出信息:

0 row(s) in 1.1300 seconds

=> Hbase::Table - member

验证表是否创建成功,使用list命令列出所有的表:

hbase(main):002:0> list

TABLE

member

2 row(s) in 0.0340 seconds

使用Java API创建一个表:

可以使用HBaseAdmin类的createTable()方法创建表在HBase中。这个类属于org.apache.hadoop.hbase.client 包。下面给出的步骤是来使用Java API创建表在HBase中。

第1步:实例化HBaseAdmin

这个类需要配置对象作为参数,因此初始实例配置类传递此实例给HBaseAdmin。

Configuration conf = HBaseConfiguration.create();

HBaseAdmin admin = new HBaseAdmin(conf);

第2步:创建TableDescriptor

HTableDescriptor类是属于org.apache.hadoop.hbase。这个类就像表名和列族的容器一样。

//creating table descriptor

HTableDescriptor table = new HTableDescriptor(toBytes("Table name"));

//creating column family descriptor

HColumnDescriptor family = new HColumnDescriptor(toBytes("column family"));

//adding coloumn family to HTable

table.addFamily(family);

第3步:通过执行管理

使用HBaseAdmin类的createTable()方法,可以在管理模式执行创建的表。

admin.createTable(table);

下面给出的是完整的程序,通过管理员创建一个表。

import java.io.IOException;

import org.apache.hadoop.hbase.HBaseConfiguration;

import org.apache.hadoop.hbase.HColumnDescriptor;

import org.apache.hadoop.hbase.HTableDescriptor;

import org.apache.hadoop.hbase.client.HBaseAdmin;

import org.apache.hadoop.hbase.TableName;

import org.apache.hadoop.conf.Configuration;

public class CreateTable {

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

// Instantiating configuration class 初始化配置文件

Configuration con = HBaseConfiguration.create();

// Instantiating HbaseAdmin class 初始化HbaseAdmin

HBaseAdmin admin = new HBaseAdmin(con);

// Instantiating table descriptor class 设置表名

HTableDescriptor tableDescriptor = new

TableDescriptor(TableName.valueOf("member"));

// Adding column families to table descriptor 设置列族名(可设置多个)

tableDescriptor.addFamily(new HColumnDescriptor("personal"));

tableDescriptor.addFamily(new HColumnDescriptor("professional"));

// Execute the table through admin

admin.createTable(tableDescriptor);

System.out.println(" Table created ");

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值