Package | Description |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.protobuf |
Holds classes generated from protobuf
src/main/protobuf definition files. |
org.apache.hadoop.hbase.shaded.protobuf |
Modifier and Type | Method and Description |
---|---|
static Delete |
MetaTableAccessor.makeDeleteFromRegionInfo(RegionInfo regionInfo,
long ts)
Generates and returns a Delete containing the region info for the catalog table
|
Modifier and Type | Method and Description |
---|---|
Delete |
Delete.add(Cell cell)
Add an existing delete marker to this Delete object.
|
Delete |
Delete.addColumn(byte[] family,
byte[] qualifier)
Delete the latest version of the specified column.
|
Delete |
Delete.addColumn(byte[] family,
byte[] qualifier,
long timestamp)
Delete the specified version of the specified column.
|
Delete |
Delete.addColumns(byte[] family,
byte[] qualifier)
Delete all versions of the specified column.
|
Delete |
Delete.addColumns(byte[] family,
byte[] qualifier,
long timestamp)
Delete all versions of the specified column with a timestamp less than or equal to the
specified timestamp.
|
Delete |
Delete.addDeleteMarker(Cell kv)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0. Use
add(Cell)
instead |
Delete |
Delete.addFamily(byte[] family)
Delete all versions of all columns of the specified family.
|
Delete |
Delete.addFamily(byte[] family,
long timestamp)
Delete all columns of the specified family with a timestamp less than or equal to the specified
timestamp.
|
Delete |
Delete.addFamilyVersion(byte[] family,
long timestamp)
Delete all columns of the specified family with a timestamp equal to the specified timestamp.
|
Delete |
Delete.setACL(Map<String,Permission> perms) |
Delete |
Delete.setACL(String user,
Permission perms) |
Delete |
Delete.setAttribute(String name,
byte[] value) |
Delete |
Delete.setCellVisibility(CellVisibility expression) |
Delete |
Delete.setClusterIds(List<UUID> clusterIds) |
Delete |
Delete.setDurability(Durability d) |
Delete |
Delete.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0. Use
Delete(byte[], long, NavigableMap) instead |
Delete |
Delete.setId(String id) |
Delete |
Delete.setPriority(int priority) |
Delete |
Delete.setTimestamp(long timestamp) |
Delete |
Delete.setTTL(long ttl) |
Modifier and Type | Method and Description |
---|---|
void |
RowMutations.add(Delete d)
Deprecated.
since 2.0 version and will be removed in 3.0 version. use
RowMutations.add(Mutation) |
CheckAndMutate |
CheckAndMutate.Builder.build(Delete delete)
Build the CheckAndMutate object
|
boolean |
HTable.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Delete delete)
Deprecated.
|
default boolean |
Table.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Delete delete)
Deprecated.
Since 2.0.0. Will be removed in 3.0.0. Use
Table.checkAndMutate(byte[], byte[]) |
boolean |
HTable.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Delete delete)
Deprecated.
|
default boolean |
Table.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Delete delete)
Deprecated.
Since 2.0.0. Will be removed in 3.0.0. Use
Table.checkAndMutate(byte[], byte[]) |
boolean |
HTable.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
Delete delete)
Deprecated.
|
default boolean |
Table.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
Delete delete)
Deprecated.
Since 2.0.0. Will be removed in 3.0.0. Use
Table.checkAndMutate(byte[], byte[]) |
void |
HTable.delete(Delete delete) |
default void |
Table.delete(Delete delete)
Deletes the specified cells/row.
|
CompletableFuture<Void> |
AsyncTable.delete(Delete delete)
Deletes the specified cells/row.
|
boolean |
Table.CheckAndMutateBuilder.thenDelete(Delete delete)
Deprecated.
Specify a Delete to commit if the check succeeds.
|
boolean |
Table.CheckAndMutateWithFilterBuilder.thenDelete(Delete delete)
Deprecated.
Specify a Delete to commit if the check succeeds.
|
CompletableFuture<Boolean> |
AsyncTable.CheckAndMutateBuilder.thenDelete(Delete delete)
Deprecated.
Specify a Delete to commit if the check succeeds.
|
CompletableFuture<Boolean> |
AsyncTable.CheckAndMutateWithFilterBuilder.thenDelete(Delete delete)
Deprecated.
Specify a Delete to commit if the check succeeds.
|
Modifier and Type | Method and Description |
---|---|
void |
HTable.delete(List<Delete> deletes) |
default void |
Table.delete(List<Delete> deletes)
Batch Deletes the specified cells/rows from the table.
|
List<CompletableFuture<Void>> |
AsyncTable.delete(List<Delete> deletes)
Deletes the specified cells/rows in bulk.
|
default CompletableFuture<Void> |
AsyncTable.deleteAll(List<Delete> deletes)
A simple version of batch delete.
|
Constructor and Description |
---|
Delete(Delete deleteToCopy)
Create a Delete operation using another Delete as template.
|
Modifier and Type | Method and Description |
---|---|
static Delete |
ProtobufUtil.toDelete(org.apache.hadoop.hbase.protobuf.generated.ClientProtos.MutationProto proto)
Convert a protocol buffer Mutate to a Delete
|
static Delete |
ProtobufUtil.toDelete(org.apache.hadoop.hbase.protobuf.generated.ClientProtos.MutationProto proto,
CellScanner cellScanner)
Convert a protocol buffer Mutate to a Delete
|
Modifier and Type | Method and Description |
---|---|
static Delete |
ProtobufUtil.toDelete(org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutationProto proto)
Convert a protocol buffer Mutate to a Delete
|
static Delete |
ProtobufUtil.toDelete(org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutationProto proto,
CellScanner cellScanner)
Convert a protocol buffer Mutate to a Delete
|
Modifier and Type | Method and Description |
---|---|
static org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutateRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
Delete delete)
Create a protocol buffer MutateRequest for a delete
|
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.