【发布时间】:2015-11-27 20:43:32
【问题描述】:
是否可以在不添加列族的情况下创建 hbase 表, 例如 创建'emp'、'个人数据'、'专业数据'
个人数据和专业数据是列族,我想在表格中添加字段而不添加列族
例如
HTable hTable = new HTable(config, "TableName");
Put p = new Put(Bytes.toBytes("ROW"));
p.add(Bytes.toBytes("VALUES");
//only the values need to be added to the column without column family.
【问题讨论】:
标签: hbase column-family