|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RowLock | |
---|---|
org.apache.hadoop.hbase.client |
Uses of RowLock in org.apache.hadoop.hbase.client |
---|
Methods in org.apache.hadoop.hbase.client that return RowLock | |
---|---|
RowLock |
HTable.lockRow(byte[] row)
Obtain a row lock |
Methods in org.apache.hadoop.hbase.client with parameters of type RowLock | |
---|---|
boolean |
HTable.checkAndSave(BatchUpdate batchUpdate,
HbaseMapWritable<byte[],byte[]> expectedValues,
RowLock rl)
Atomically checks if a row's values match the expectedValues. |
void |
HTable.commit(BatchUpdate batchUpdate,
RowLock rl)
Commit a BatchUpdate to the table using existing row lock. |
void |
HTable.deleteAll(byte[] row,
byte[] column,
long ts,
RowLock rl)
Delete all cells that match the passed row and column and whose timestamp is equal-to or older than the passed timestamp, using an existing row lock. |
void |
HTable.deleteAllByRegex(byte[] row,
String colRegex,
long ts,
RowLock rl)
Delete all cells that match the passed row and column and whose timestamp is equal-to or older than the passed timestamp, using an existing row lock. |
void |
HTable.deleteFamily(byte[] row,
byte[] family,
long timestamp,
RowLock rl)
Delete all cells for a row with matching column family with timestamps less than or equal to timestamp, using existing row lock. |
void |
HTable.deleteFamilyByRegex(byte[] row,
String familyRegex,
long timestamp,
RowLock r1)
Delete all cells for a row with matching column family regex with timestamps less than or equal to timestamp, using existing row lock. |
boolean |
HTable.exists(byte[] row,
byte[] column,
long timestamp,
RowLock rl)
Test for the existence of a coordinate in the table. |
RowResult |
HTable.getRow(byte[] row,
byte[][] columns,
long ts,
int numVersions,
RowLock rl)
Get selected columns for the specified row at a specified timestamp using existing row lock. |
RowResult |
HTable.getRow(String row,
String[] columns,
long timestamp,
int numVersions,
RowLock rowLock)
|
void |
HTable.unlockRow(RowLock rl)
Release a row lock |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |