如何将新的列族添加到现有的 HBase table?

How to add new column family to an existing HBase table?

我创建了 table

create 'tablename', 'columnfamily1'

现在是否可以添加另一个列族'columnfamily2'?方法是什么?

好像

alter 'tablename', 'columnfamily2'

成功了。 可以先禁用 'tablename'。但是,即使启用它也能正常工作。

hbase(main):015:0> alter 'tablename', {NAME=> 'columnfamily2'}
Updating all regions with the new schema...
0/1 regions updated.
1/1 regions updated.
Done.
alter 'tablename', NAME => 'newcolumnfamily', VERSIONS => 50

您可以指定新列族的各种属性,以逗号 (,) 分隔

如果您考虑一些 GUI 解决方案,那么您可以使用 HAdmin 轻松实现。只需按下 "Alter table" 页面中的“+”按钮,然后添加包含您需要的所有设置的新列族。