Hbase 常用shell命令

來源:互聯網
上載者:User

標籤:des   style   blog   io   color   ar   os   使用   sp   

進入hbase shell console$HBASE_HOME/bin/hbase shell如果有kerberos認證,需要事先使用相應的keytab進行一下認證(使用kinit命令),認證成功之後再使用hbase shell進入可以使用whoami命令可查看目前使用者hbase(main)> whoami表的管理1)查看有哪些表hbase(main)> list2)建立表# 文法:create <table>, {NAME => <family>, VERSIONS => <VERSIONS>}# 例如:建立表t1,有兩個family name:f1,f2,且版本數均為2hbase(main)> create ‘t1‘,{NAME => ‘f1‘, VERSIONS => 2},{NAME => ‘f2‘, VERSIONS => 2}3)刪除表分兩步:首先disable,然後drop例如:刪除表t1hbase(main)> disable ‘t1‘hbase(main)> drop ‘t1‘4)查看錶的結構# 文法:describe <table># 例如:查看錶t1的結構hbase(main)> describe ‘t1‘5)修改表結構修改表結構必須先disable# 文法:alter ‘t1‘, {NAME => ‘f1‘}, {NAME => ‘f2‘, METHOD => ‘delete‘}# 例如:修改表test1的cf的TTL為180天hbase(main)> disable ‘test1‘hbase(main)> alter ‘test1‘,{NAME=>‘body‘,TTL=>‘15552000‘},{NAME=>‘meta‘, TTL=>‘15552000‘}hbase(main)> enable ‘test1‘許可權管理1)分配許可權# 文法 : grant <user> <permissions> <table> <column family> <column qualifier> 參數後面用逗號分隔# 許可權用五個字母表示: "RWXCA".# READ(‘R‘), WRITE(‘W‘), EXEC(‘X‘), CREATE(‘C‘), ADMIN(‘A‘)# 例如,給使用者‘test‘分配對錶t1有讀寫的許可權,hbase(main)> grant ‘test‘,‘RW‘,‘t1‘2)查看許可權# 文法:user_permission <table># 例如,查看錶t1的許可權列表hbase(main)> user_permission ‘t1‘3)收回許可權# 與分配權限類別似,文法:revoke <user> <table> <column family> <column qualifier># 例如,收回test使用者在表t1上的許可權hbase(main)> revoke ‘test‘,‘t1‘表資料的增刪改查1)添加資料# 文法:put <table>,<rowkey>,<family:column>,<value>,<timestamp># 例如:給表t1的添加一行記錄:rowkey是rowkey001,family name:f1,column name:col1,value:value01,timestamp:系統預設hbase(main)> put ‘t1‘,‘rowkey001‘,‘f1:col1‘,‘value01‘用法比較單一。2)查詢資料a)查詢某行記錄# 文法:get <table>,<rowkey>,[<family:column>,....]# 例如:查詢表t1,rowkey001中的f1下的col1的值hbase(main)> get ‘t1‘,‘rowkey001‘, ‘f1:col1‘# 或者:hbase(main)> get ‘t1‘,‘rowkey001‘, {COLUMN=>‘f1:col1‘}# 查詢表t1,rowke002中的f1下的所有列值hbase(main)> get ‘t1‘,‘rowkey001‘b)掃描表# 文法:scan <table>, {COLUMNS => [ <family:column>,.... ], LIMIT => num}# 另外,還可以添加STARTROW、TIMERANGE和FITLER等進階功能# 例如:掃描表t1的前5條資料hbase(main)> scan ‘t1‘,{LIMIT=>5}c)查詢表中的資料行數# 文法:count <table>, {INTERVAL => intervalNum, CACHE => cacheNum}# INTERVAL設定多少行顯示一次及對應的rowkey,預設1000;CACHE每次去取的緩衝區大小,預設是10,調整該參數可提高查詢速度# 例如,查詢表t1中的行數,每100條顯示一次,緩衝區為500hbase(main)> count ‘t1‘, {INTERVAL => 100, CACHE => 500}3)刪除資料a )刪除行中的某個列值# 文法:delete <table>, <rowkey>,  <family:column> , <timestamp>,必須指定列名# 例如:刪除表t1,rowkey001中的f1:col1的資料hbase(main)> delete ‘t1‘,‘rowkey001‘,‘f1:col1‘註:將刪除改行f1:col1列所有版本的資料b )刪除行# 文法:deleteall <table>, <rowkey>,  <family:column> , <timestamp>,可以不指定列名,刪除整行資料# 例如:刪除表t1,rowk001的資料hbase(main)> deleteall ‘t1‘,‘rowkey001‘c)刪除表中的所有資料# 文法: truncate <table># 其具體過程是:disable table -> drop table -> create table# 例如:刪除表t1的所有資料hbase(main)> truncate ‘t1‘Region管理1)移動region# 文法:move ‘encodeRegionName‘, ‘ServerName‘# encodeRegionName指的regioName後面的編碼,ServerName指的是master-status的Region Servers列表# 樣本hbase(main)>move ‘4343995a58be8e5bbc739af1e91cd72d‘, ‘db-41.xxx.xxx.org,60020,1390274516739‘2)開啟/關閉region# 文法:balance_switch true|falsehbase(main)> balance_switch3)手動split# 文法:split ‘regionName‘, ‘splitKey‘4)手動觸發major compaction#文法:#Compact all regions in a table:#hbase> major_compact ‘t1‘#Compact an entire region:#hbase> major_compact ‘r1‘#Compact a single column family within a region:#hbase> major_compact ‘r1‘, ‘c1‘#Compact a single column family within a table:#hbase> major_compact ‘t1‘, ‘c1‘組態管理及節點重啟1)修改hdfs配置hdfs配置位置:/etc/hadoop/conf# 同步hdfs配置cat /home/hadoop/slaves|xargs -i -t scp /etc/hadoop/conf/hdfs-site.xml [email protected]{}:/etc/hadoop/conf/hdfs-site.xml#關閉:cat /home/hadoop/slaves|xargs -i -t ssh [email protected]{} "sudo /home/hadoop/cdh4/hadoop-2.0.0-cdh4.2.1/sbin/hadoop-daemon.sh --config /etc/hadoop/conf stop datanode"#啟動:cat /home/hadoop/slaves|xargs -i -t ssh [email protected]{} "sudo /home/hadoop/cdh4/hadoop-2.0.0-cdh4.2.1/sbin/hadoop-daemon.sh --config /etc/hadoop/conf start datanode"2)修改hbase配置hbase配置位置:# 同步hbase配置cat /home/hadoop/hbase/conf/regionservers|xargs -i -t scp /home/hadoop/hbase/conf/hbase-site.xml [email protected]{}:/home/hadoop/hbase/conf/hbase-site.xml # graceful重啟cd ~/hbasebin/graceful_stop.sh --restart --reload --debug inspurXXX.xxx.xxx.org

balance_switch true 開啟負載平衡

 

Hbase 常用shell命令

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.