◢ <[wiki:Hinet120702/Lab11 實作十一]> | <[wiki:Hinet120702 回課程大綱]> ▲ | <[wiki:Hinet120702/Lab13 實作十三]> ◣
= 實作十二 Lab 12 =
[[PageOutline]]
{{{
#!html
HBase 行為觀察
HBase in Practice
}}}
{{{
#!text
以下練習,請使用 hadoop4win 環境執行。
}}}
* 首先請先下 start-hbase 指令或點選"開始"->"stat-hbase",來開啟 HBase 與 Hadoop 的 Daemon
* 請回到家目錄,並輸入指令『__'''hbase shell hbase-test'''__』。
* 註一:這個 hbase-test 存放在安裝帳號身分的家目錄中,倘若用其他帳號登入,可能會找不到。
* 註二:如果剛剛有下 stop-hadoop 的話,一定要記得 start-hadoop,因為 HBase 的資料表格是存在 HDFS 之上。
{{{
$ cd ~
$ hbase shell hbase-test
}}}
* [[BR]][[Image(Hadoop4Win:hadoop4win_24.jpg,width=600)]]
* STEP 11: 您也可以輸入指令『__'''hbase shell'''__』進入互動式的 HBase 指令列。您可以嘗試用底下列舉的指令,重現 hbase-test 的過程。
{{{
$ hbase shell
}}}
{{{
create 'test','data'
put 'test','row1','data:1','v1'
put 'test','row2','data:2','v2'
put 'test','row3','data:3','v3'
scan 'test'
disable 'test'
drop 'test'
list
exit
}}}
* [[BR]][[Image(Hadoop4Win:hadoop4win_25.jpg,width=600)]]
* 欲離開 Cygwin 環境前或者要暫時關閉 HBase 系統時,請輸入指令『__'''stop-hbase'''__』。需提醒您的是 HBase 因採用 !ZooKeeper,有時關閉 master 的速度會比較慢,請耐心等候。註:目前下 exit 指令登出時會執行 stop-hbase 與 stop-hadoop 的動作。
{{{
$ stop-hbase
}}}
* [[BR]][[Image(Hadoop4Win:hadoop4win_26.jpg,width=600)]]
* 倘若是已經關閉 Cygwin 視窗,第二次重新執行 C:\hadoop4win\Cygwin.bat,請輸入指令『__'''start-hbase'''__』,目前 start-hbase 會視目前 java process 判斷 hadoop 是否存在而執行『__'''start-hadoop'''__』。
{{{
$ start-hbase
}}}
* [[BR]][[Image(Hadoop4Win:hadoop4win_27.jpg,width=600)]]