如何使用shell在HBase表中创建多个列族

时间:2013-05-21 16:10:50

标签: hbase

进程是否针对同一个表有多个“create”命令?它的语法是什么?

3 个答案:

答案 0 :(得分:9)

语法将是这样的:

create '<table name>' , '<column-family1>' , '<column-family2>' etc..

答案 1 :(得分:3)

答案是使用红宝石列表:以下内容创建了一个表&#39; app&#39;有三列famile m,f,c:

create 'app',['m','f','c']

答案 2 :(得分:1)

创建具有多个列系列和版本的Hbase表的语法如下:

create 'test', {NAME => 'e', VERSIONS => 5},{NAME => 'r', VERSIONS => 5},{NAME => 'rm', VERSIONS => 5},{NAME => 'rx', VERSIONS => 5},{NAME => 't', VERSIONS => 5},{NAME => 'w', VERSIONS => 5}