Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.rest.client |
Modifier and Type | Method and Description |
---|---|
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)
Advanced use only.
|
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.deleteColumn(byte[] family,
byte[] qualifier)
Deprecated.
Since hbase-1.0.0. Use
addColumn(byte[], byte[]) |
Delete |
Delete.deleteColumn(byte[] family,
byte[] qualifier,
long timestamp)
Deprecated.
Since hbase-1.0.0. Use
addColumn(byte[], byte[], long) |
Delete |
Delete.deleteColumns(byte[] family,
byte[] qualifier)
Deprecated.
Since hbase-1.0.0. Use
addColumns(byte[], byte[]) |
Delete |
Delete.deleteColumns(byte[] family,
byte[] qualifier,
long timestamp)
Deprecated.
Since hbase-1.0.0. Use
addColumns(byte[], byte[], long) |
Delete |
Delete.deleteFamily(byte[] family)
Deprecated.
Since 1.0.0. Use
addFamily(byte[]) |
Delete |
Delete.deleteFamily(byte[] family,
long timestamp)
Deprecated.
Since 1.0.0. Use
addFamily(byte[], long) |
Delete |
Delete.deleteFamilyVersion(byte[] family,
long timestamp)
Deprecated.
Since hbase-1.0.0. Use
addFamilyVersion(byte[], long) |
Delete |
Delete.setACL(Map<String,org.apache.hadoop.hbase.security.access.Permission> perms) |
Delete |
Delete.setACL(String user,
org.apache.hadoop.hbase.security.access.Permission perms) |
Delete |
Delete.setAttribute(String name,
byte[] value) |
Delete |
Delete.setCellVisibility(org.apache.hadoop.hbase.security.visibility.CellVisibility expression) |
Delete |
Delete.setClusterIds(List<UUID> clusterIds) |
Delete |
Delete.setDurability(Durability d) |
Delete |
Delete.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map) |
Delete |
Delete.setFamilyMap(NavigableMap<byte[],List<org.apache.hadoop.hbase.KeyValue>> map)
Deprecated.
|
Delete |
Delete.setId(String id) |
Delete |
Delete.setTimestamp(long timestamp)
Set the timestamp of the delete.
|
Delete |
Delete.setTTL(long ttl) |
Delete |
Delete.setWriteToWAL(boolean write)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
RowMutations.add(Delete d)
Add a
Delete operation to the list of mutations |
boolean |
Table.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Delete delete)
Atomically checks if a row/family/qualifier value matches the expected
value.
|
boolean |
Table.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Delete delete)
Atomically checks if a row/family/qualifier value matches the expected
value.
|
void |
Table.delete(Delete delete)
Deletes the specified cells/row.
|
Modifier and Type | Method and Description |
---|---|
void |
Table.delete(List<Delete> deletes)
Deletes the specified cells/rows in bulk.
|
Constructor and Description |
---|
Delete(Delete d) |
Modifier and Type | Method and Description |
---|---|
boolean |
RemoteHTable.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Delete delete) |
boolean |
RemoteHTable.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Delete delete) |
void |
RemoteHTable.delete(Delete delete) |
Modifier and Type | Method and Description |
---|---|
void |
RemoteHTable.delete(List<Delete> deletes) |
Copyright © 2007–2016 The Apache Software Foundation. All rights reserved.