Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
Modifier and Type | Method and Description |
---|---|
SnapshotType |
SnapshotDescription.getType() |
static SnapshotType |
SnapshotType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SnapshotType[] |
SnapshotType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
default CompletableFuture<Void> |
AsyncAdmin.snapshot(String snapshotName,
TableName tableName,
SnapshotType type)
Create typed snapshot of the table.
|
default void |
Admin.snapshot(String snapshotName,
TableName tableName,
SnapshotType type)
Create typed snapshot of the table.
|
default void |
Admin.snapshot(String snapshotName,
TableName tableName,
SnapshotType type,
Map<String,Object> snapshotProps)
Create typed snapshot of the table.
|
Constructor and Description |
---|
SnapshotDescription(String name,
String table,
SnapshotType type)
Deprecated.
since 2.0.0 and will be removed in 3.0.0. Use the version with the TableName
instance instead.
|
SnapshotDescription(String name,
String table,
SnapshotType type,
String owner)
Deprecated.
since 2.0.0 and will be removed in 3.0.0. Use the version with the TableName
instance instead.
|
SnapshotDescription(String name,
String table,
SnapshotType type,
String owner,
long creationTime,
int version)
Deprecated.
since 2.0.0 and will be removed in 3.0.0. Use the version with the TableName
instance instead.
|
SnapshotDescription(String name,
TableName table,
SnapshotType type) |
SnapshotDescription(String snapshotName,
TableName tableName,
SnapshotType type,
Map<String,Object> snapshotProps)
SnapshotDescription Parameterized Constructor
|
SnapshotDescription(String name,
TableName table,
SnapshotType type,
String owner) |
SnapshotDescription(String name,
TableName table,
SnapshotType type,
String owner,
long creationTime,
int version)
Deprecated.
since 2.3.0 and will be removed in 4.0.0. Use
SnapshotDescription.SnapshotDescription(String, TableName, SnapshotType, String, long, int, Map) |
SnapshotDescription(String name,
TableName table,
SnapshotType type,
String owner,
long creationTime,
int version,
Map<String,Object> snapshotProps)
SnapshotDescription Parameterized Constructor
|
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.