|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Delete | |
---|---|
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.protobuf | Holds classes generated from protobuf
src/main/protobuf definition files. |
Uses of Delete in org.apache.hadoop.hbase.client |
---|
Methods in org.apache.hadoop.hbase.client that return Delete | |
---|---|
Delete |
Delete.addDeleteMarker(Cell kv)
Advanced use only. |
Delete |
Delete.deleteColumn(byte[] family,
byte[] qualifier)
Delete the latest version of the specified column. |
Delete |
Delete.deleteColumn(byte[] family,
byte[] qualifier,
long timestamp)
Delete the specified version of the specified column. |
Delete |
Delete.deleteColumns(byte[] family,
byte[] qualifier)
Delete all versions of the specified column. |
Delete |
Delete.deleteColumns(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.deleteFamily(byte[] family)
Delete all versions of all columns of the specified family. |
Delete |
Delete.deleteFamily(byte[] family,
long timestamp)
Delete all columns of the specified family with a timestamp less than or equal to the specified timestamp. |
Delete |
Delete.deleteFamilyVersion(byte[] family,
long timestamp)
Delete all columns of the specified family with a timestamp equal to the specified timestamp. |
Methods in org.apache.hadoop.hbase.client with parameters of type Delete | |
---|---|
void |
RowMutations.add(Delete d)
Add a Delete operation to the list of mutations |
boolean |
HTable.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Delete delete)
Atomically checks if a row/family/qualifier value matches the expected value. |
boolean |
HTableInterface.checkAndDelete(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Delete delete)
Atomically checks if a row/family/qualifier value matches the expected value. |
void |
HTable.delete(Delete delete)
Deletes the specified cells/row. |
void |
HTableInterface.delete(Delete delete)
Deletes the specified cells/row. |
Method parameters in org.apache.hadoop.hbase.client with type arguments of type Delete | |
---|---|
void |
HTable.delete(List<Delete> deletes)
Deletes the specified cells/rows in bulk. |
void |
HTableInterface.delete(List<Delete> deletes)
Deletes the specified cells/rows in bulk. |
Constructors in org.apache.hadoop.hbase.client with parameters of type Delete | |
---|---|
Delete(Delete d)
|
Uses of Delete in org.apache.hadoop.hbase.protobuf |
---|
Methods in org.apache.hadoop.hbase.protobuf that return Delete | |
---|---|
static Delete |
ProtobufUtil.toDelete(ClientProtos.MutationProto proto)
Convert a protocol buffer Mutate to a Delete |
static Delete |
ProtobufUtil.toDelete(ClientProtos.MutationProto proto,
CellScanner cellScanner)
Convert a protocol buffer Mutate to a Delete |
Methods in org.apache.hadoop.hbase.protobuf with parameters of type Delete | |
---|---|
static ClientProtos.MutateRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
byte[] row,
byte[] family,
byte[] qualifier,
ByteArrayComparable comparator,
HBaseProtos.CompareType compareType,
Delete delete)
Create a protocol buffer MutateRequest for a conditioned delete |
static ClientProtos.MutateRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
Delete delete)
Create a protocol buffer MutateRequest for a delete |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |