码迷,mamicode.com
首页 > 系统相关 > 详细

HBase的Shell操作

时间:2016-02-26 23:32:15      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:

1、进入命令行

bin/hbase shell

2、输入help 查看各种命令组。

命令是分组的,可以执行help ‘general‘查看general组的命令。

3、常用命令

--显示有哪些表
list 
--显示表的DDL信息
describe 表名
--创建表
create table name,family name...  
create table name,{NAME=>family name,VERSIONS=>5}
--删除表
--先关闭表
disable table name
drop table name 
--判断表是否可用
is_enabled table name
is_disabled table name
--启用表
enable table name
--插入数据
put table name,row key,family:column,value
--同样语句可以修改值
put table name,row key,family:column,newvalue
--扫描表
scan table name
--查看多个版本的信息
scan table name,{RAW=true,VERSIONS=>3}
--指定列族
scan tt1,{COLUMN=f1}
--获取值
get table name,row key,[{COLUMN=>‘COLUMN‘,TIMESTAMP=‘‘}]
--保存值的时候,指定时间戳
put table name,row key,family:column,value,ts
--清空数据(disable->drop->create)
truncate table name

 

*语句结尾不带分号

HBase的Shell操作

标签:

原文地址:http://www.cnblogs.com/hpuCode/p/5216004.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!