HBase - Habilitando uma Tabela
Habilitando uma tabela usando o HBase Shell
Sintaxe para habilitar uma tabela:
enable ‘emp’
Exemplo
Dada a seguir é um exemplo para habilitar uma tabela.
hbase(main):005:0> enable 'emp'
0 row(s) in 0.4580 seconds
Verificação
Depois de habilitar a tabela, faça a varredura. Se você pode ver o esquema, sua tabela foi habilitada com sucesso.
hbase(main):006:0> scan 'emp'
ROW COLUMN + CELL
1 column = personal data:city, timestamp = 1417516501, value = hyderabad
1 column = personal data:name, timestamp = 1417525058, value = ramu
1 column = professional data:designation, timestamp = 1417532601, value = manager
1 column = professional data:salary, timestamp = 1417524244109, value = 50000
2 column = personal data:city, timestamp = 1417524574905, value = chennai
2 column = personal data:name, timestamp = 1417524556125, value = ravi
2 column = professional data:designation, timestamp = 14175292204, value = sr:engg
2 column = professional data:salary, timestamp = 1417524604221, value = 30000
3 column = personal data:city, timestamp = 1417524681780, value = delhi
3 column = personal data:name, timestamp = 1417524672067, value = rajesh
3 column = professional data:designation, timestamp = 14175246987, value = jr:engg
3 column = professional data:salary, timestamp = 1417524702514, value = 25000
3 row(s) in 0.0400 seconds
está ativado
Este comando é usado para descobrir se uma tabela está habilitada. Sua sintaxe é a seguinte:
hbase> is_enabled 'table name'
O código a seguir verifica se a tabela chamada empestá ativado. Se estiver habilitado, ele retornará verdadeiro e se não, retornará falso.
hbase(main):031:0> is_enabled 'emp'
true
0 row(s) in 0.0440 seconds
Habilitar uma tabela usando a API Java
Para verificar se uma tabela está habilitada, isTableEnabled()método é usado; e para habilitar uma mesa,enableTable()método é usado. Esses métodos pertencem aHBaseAdminclasse. Siga as etapas fornecidas abaixo para habilitar uma tabela.
Passo 1
Instanciar HBaseAdmin classe como mostrado abaixo.
// Creating configuration object
Configuration conf = HBaseConfiguration.create();
// Creating HBaseAdmin object
HBaseAdmin admin = new HBaseAdmin(conf);
Passo 2
Verifique se a tabela está habilitada usando isTableEnabled() método conforme mostrado abaixo.
Boolean bool = admin.isTableEnabled("emp");
etapa 3
Se a tabela não estiver desabilitada, desabilite-a conforme mostrado abaixo.
if(!bool){
admin.enableTable("emp");
System.out.println("Table enabled");
}
A seguir está o programa completo para verificar se a tabela está habilitada e, caso não esteja, como habilitá-la.
import java.io.IOException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.MasterNotRunningException;
import org.apache.hadoop.hbase.client.HBaseAdmin;
public class EnableTable{
public static void main(String args[]) throws MasterNotRunningException, IOException{
// Instantiating configuration class
Configuration conf = HBaseConfiguration.create();
// Instantiating HBaseAdmin class
HBaseAdmin admin = new HBaseAdmin(conf);
// Verifying whether the table is disabled
Boolean bool = admin.isTableEnabled("emp");
System.out.println(bool);
// Enabling the table using HBaseAdmin object
if(!bool){
admin.enableTable("emp");
System.out.println("Table Enabled");
}
}
}
Compile e execute o programa acima conforme mostrado abaixo.
$javac EnableTable.java
$java EnableTable
O seguinte deve ser o resultado:
false
Table Enabled