一.HBASE shell 命令操作;1.建表: create ‘tableName’,'f1','f2'; 注:列簇,裂限定符都要尽量短: 2.插入数据: put 'tableName','RowKey','f1:c1','value1' 3.查询数据:整表:scan 'tableName'; 单条: /* 读取列族数据 */ get ‘table_name’, ‘row_key’, ‘cf’ /* 读取列数据 */ get ‘table_name’, ‘row_key’, ‘cf:cq’ 4…