HBase-シャットダウン
出口
次のように入力してシェルを終了します exit コマンド。
hbase(main):021:0> exit
HBaseの停止
HBaseを停止するには、HBaseホームフォルダーを参照し、次のコマンドを入力します。
./bin/stop-hbase.sh
JavaAPIを使用したHBaseの停止
を使用してHBaseをシャットダウンできます shutdown() の方法 HBaseAdminクラス。以下の手順に従って、HBaseをシャットダウンします。
ステップ1
HbaseAdminクラスをインスタンス化します。
// Instantiating configuration object
Configuration conf = HBaseConfiguration.create();
// Instantiating HBaseAdmin object
HBaseAdmin admin = new HBaseAdmin(conf);
ステップ2
を使用してHBaseをシャットダウンします shutdown() の方法 HBaseAdmin クラス。
admin.shutdown();
以下に、HBaseを停止するプログラムを示します。
import java.io.IOException;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.client.HBaseAdmin;
public class ShutDownHbase{
public static void main(String args[])throws IOException {
// Instantiating configuration class
Configuration conf = HBaseConfiguration.create();
// Instantiating HBaseAdmin class
HBaseAdmin admin = new HBaseAdmin(conf);
// Shutting down HBase
System.out.println("Shutting down hbase");
admin.shutdown();
}
}
上記のプログラムを以下のようにコンパイルして実行します。
$javac ShutDownHbase.java
$java ShutDownHbase
以下が出力になります。
Shutting down hbase