如何创建hbase shell常见的三张表
时间: 2024-06-06 19:09:26 浏览: 60
hbase-shell批量命令执行脚本的方法
您好!关于如何创建HBase shell常见的三张表,具体步骤如下:
1.创建namespace:
create_namespace 'namespace_name'
例如:
create_namespace 'test'
2.创建用户表:
create 'namespace_name:table_name', 'column_family1', 'column_family2', 'column_family3'
例如:
create 'test:userinfo', 'cf1', 'cf2', 'cf3'
3.创建计数器表:
create 'namespace_name:counter_table_name', 'cf'
例如:
create 'test:counter', 'cf'
4.创建索引表:
create 'namespace_name:index_table_name', 'cf'
例如:
create 'test:index', 'cf'
以上就是如何创建HBase shell常见的三张表的步骤,希望可以帮到您!如果您有其他问题需要帮助,可以再继续问我哦!
阅读全文