程序包 | 说明 |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.client |
Provides HBase Client
Table of Contents
Overview
Example API Usage
Overview
To administer HBase, create and drop tables, list and alter tables,
use
Admin . |
限定符和类型 | 方法和说明 |
---|---|
static void |
MetaTableAccessor.updateTableState(Connection conn,
TableName tableName,
TableState.State actual)
Updates state in META
|
限定符和类型 | 方法和说明 |
---|---|
static TableState.State |
TableState.State.convert(org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableState.State state)
Covert from PB version of State
|
TableState.State |
TableState.getState() |
static TableState.State |
TableState.State.valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static TableState.State[] |
TableState.State.values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
限定符和类型 | 方法和说明 |
---|---|
boolean |
TableState.inStates(TableState.State... states)
Check that table in given states
|
boolean |
TableState.inStates(TableState.State state)
Check that table in given states
|
boolean |
TableState.isInStates(TableState.State... target)
Static version of state checker
|
构造器和说明 |
---|
TableState(TableName tableName,
TableState.State state)
Create instance of TableState.
|
Copyright © 2007–2018 The Apache Software Foundation. All rights reserved.