我必须在不同的群集中创建一个表,并且只有方便的hbase表描述。如何在其他群集中创建新的hbase表?
最佳答案
通过在新集群的终端中键入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