程序包 | 说明 |
---|---|
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 . |
限定符和类型 | 方法和说明 |
---|---|
void |
Admin.cloneSnapshot(byte[] snapshotName,
TableName tableName)
Create a new table by cloning the snapshot content.
|
void |
HBaseAdmin.cloneSnapshot(byte[] snapshotName,
TableName tableName) |
void |
Admin.cloneSnapshot(String snapshotName,
TableName tableName)
Create a new table by cloning the snapshot content.
|
void |
HBaseAdmin.cloneSnapshot(String snapshotName,
TableName tableName) |
void |
Admin.cloneSnapshot(String snapshotName,
TableName tableName,
boolean restoreAcl)
Create a new table by cloning the snapshot content.
|
void |
HBaseAdmin.cloneSnapshot(String snapshotName,
TableName tableName,
boolean restoreAcl) |
void |
Admin.restoreSnapshot(byte[] snapshotName)
Restore the specified snapshot on the original table.
|
void |
HBaseAdmin.restoreSnapshot(byte[] snapshotName) |
void |
Admin.restoreSnapshot(byte[] snapshotName,
boolean takeFailSafeSnapshot)
Restore the specified snapshot on the original table.
|
void |
HBaseAdmin.restoreSnapshot(byte[] snapshotName,
boolean takeFailSafeSnapshot) |
void |
Admin.restoreSnapshot(String snapshotName)
Restore the specified snapshot on the original table.
|
void |
HBaseAdmin.restoreSnapshot(String snapshotName) |
void |
Admin.restoreSnapshot(String snapshotName,
boolean takeFailSafeSnapshot)
Restore the specified snapshot on the original table.
|
void |
HBaseAdmin.restoreSnapshot(String snapshotName,
boolean takeFailSafeSnapshot) |
void |
Admin.restoreSnapshot(String snapshotName,
boolean takeFailSafeSnapshot,
boolean restoreAcl)
Restore the specified snapshot on the original table.
|
void |
HBaseAdmin.restoreSnapshot(String snapshotName,
boolean takeFailSafeSnapshot,
boolean restoreAcl) |
Future<Void> |
Admin.restoreSnapshotAsync(String snapshotName)
Restore the specified snapshot on the original table.
|
Future<Void> |
HBaseAdmin.restoreSnapshotAsync(String snapshotName) |
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.