【发布时间】:2016-11-25 09:01:41
【问题描述】:
我必须在不同的集群中创建一个表,并且我只有 hbase 表的描述很方便。如何在不同的集群中创建新的 hbase 表?
【问题讨论】:
标签: shell hadoop hbase hortonworks-data-platform bigdata
我必须在不同的集群中创建一个表,并且我只有 hbase 表的描述很方便。如何在不同的集群中创建新的 hbase 表?
【问题讨论】:
标签: shell hadoop hbase hortonworks-data-platform bigdata
通过在新集群的终端中输入Hbase shell 进入hbase shell,然后给出命令create ‘<table name>’,’<column family>’ 为您提供您已经从先前集群的describe 'table name' 获得的表名和列族名。
更多信息: https://www.tutorialspoint.com/hbase/hbase_create_table.htm
https://www.tutorialspoint.com/hbase/hbase_describe_and_alter.htm
【讨论】: