|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Delete | |
---|---|
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.client.transactional | This package provides support for atomic transactions. |
org.apache.hadoop.hbase.ipc | Tools to help define network clients and servers. |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.regionserver.transactional | |
org.apache.hadoop.hbase.rest | Provides an HBase REST service. |
Uses of Delete in org.apache.hadoop.hbase.client |
---|
Methods in org.apache.hadoop.hbase.client that return Delete | |
---|---|
Delete |
Delete.deleteColumn(byte[] column)
Delete the latest version of the specified column, given in family:qualifier notation. |
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.deleteColumns(byte[] column,
long timestamp)
Delete all versions of the specified column, given in family:qualifier notation, and 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. |
Methods in org.apache.hadoop.hbase.client with parameters of type Delete | |
---|---|
void |
HTable.delete(Delete delete)
|
Method parameters in org.apache.hadoop.hbase.client with type arguments of type Delete | |
---|---|
void |
HTable.delete(ArrayList<Delete> deletes)
Bulk commit a List of Deletes to the table. |
int |
HConnection.processBatchOfDeletes(ArrayList<Delete> list,
byte[] tableName)
Process a batch of Deletes. |
Constructors in org.apache.hadoop.hbase.client with parameters of type Delete | |
---|---|
Delete(Delete d)
|
Uses of Delete in org.apache.hadoop.hbase.client.transactional |
---|
Methods in org.apache.hadoop.hbase.client.transactional with parameters of type Delete | |
---|---|
void |
TransactionalTable.delete(TransactionState transactionState,
Delete delete)
|
Uses of Delete in org.apache.hadoop.hbase.ipc |
---|
Methods in org.apache.hadoop.hbase.ipc with parameters of type Delete | |
---|---|
void |
HRegionInterface.delete(byte[] regionName,
Delete delete)
Deletes all the KeyValues that match those found in the Delete object, if their ts <= to the Delete. |
int |
HRegionInterface.delete(byte[] regionName,
Delete[] deletes)
Put an array of deletes into the specified region |
void |
TransactionalRegionInterface.delete(long transactionId,
byte[] regionName,
Delete delete)
Deletes all the KeyValues that match those found in the Delete object, if their ts <= to the Delete. |
Uses of Delete in org.apache.hadoop.hbase.regionserver |
---|
Methods in org.apache.hadoop.hbase.regionserver with parameters of type Delete | |
---|---|
void |
HRegionServer.delete(byte[] regionName,
Delete delete)
|
int |
HRegionServer.delete(byte[] regionName,
Delete[] deletes)
|
void |
HRegion.delete(Delete delete,
Integer lockid,
boolean writeToWAL)
|
Uses of Delete in org.apache.hadoop.hbase.regionserver.transactional |
---|
Methods in org.apache.hadoop.hbase.regionserver.transactional with parameters of type Delete | |
---|---|
void |
TransactionalRegionServer.delete(long transactionId,
byte[] regionName,
Delete delete)
|
void |
TransactionalRegion.delete(long transactionId,
Delete delete)
Add a delete to the transaction. |
Uses of Delete in org.apache.hadoop.hbase.rest |
---|
Methods in org.apache.hadoop.hbase.rest with parameters of type Delete | |
---|---|
void |
RowModel.delete(byte[] tableName,
Delete delete)
|
void |
TimestampModel.delete(byte[] tableName,
Delete delete)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |