摘要: Exception in thread "main" org.apache.hadoop.hbase.TableNotDisabledException: org.apache.hadoop.hbase.TableNotDisabledException: log2 at org.apache.hadoop.hbase.master.HMaster.checkTableModifiable(HMa... 阅读全文
posted @ 2014-03-13 15:05 向着梦想奋斗 阅读(4443) 评论(0) 推荐(0)
摘要: 查看表结构 describe ‘表名’ 查看版本 get ‘表名’,’zhangsan’{COLUMN=>’info:age’,VERSIONS=>3} 删除整行 deleteall ‘表名’ 清空表 truncate ‘表名’ 关闭表 disable ‘表名’ 开启表 enbale ‘表名’ 添加列族 alter ‘表名’,{NAME=>’f2’,VERSIONS=>3} //添加前需要先关闭表... 阅读全文
posted @ 2014-03-13 11:38 向着梦想奋斗 阅读(442) 评论(0) 推荐(0)