|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RowLock | |
---|---|
org.apache.hadoop.hbase.client | Provides HBase Client |
Uses of RowLock in org.apache.hadoop.hbase.client |
---|
Methods in org.apache.hadoop.hbase.client that return RowLock | |
---|---|
RowLock |
Put.getRowLock()
Method for retrieving the put's RowLock |
RowLock |
Get.getRowLock()
Method for retrieving the get's RowLock |
RowLock |
Delete.getRowLock()
Method for retrieving the delete's 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)
Deprecated. As of hbase 0.20.0, replaced by HTable.checkAndPut(byte[], byte[], byte[], byte[], org.apache.hadoop.hbase.client.Put) |
void |
HTable.commit(BatchUpdate batchUpdate,
RowLock rl)
Deprecated. As of hbase 0.20.0, replaced by HTable.delete(Delete) or
HTable.put(Put) |
void |
HTable.deleteAll(byte[] row,
byte[] column,
long ts,
RowLock rl)
Deprecated. As of hbase 0.20.0, replaced by HTable.delete(Delete) |
void |
HTable.deleteAllByRegex(byte[] row,
String colRegex,
long ts,
RowLock rl)
Deprecated. As of hbase 0.20.0, replaced by HTable.delete(Delete) |
void |
HTable.deleteFamily(byte[] row,
byte[] family,
long timestamp,
RowLock rl)
Deprecated. As of hbase 0.20.0, replaced by HTable.delete(Delete) |
void |
HTable.deleteFamilyByRegex(byte[] row,
String familyRegex,
long timestamp,
RowLock r1)
Deprecated. As of hbase 0.20.0, replaced by HTable.delete(Delete) |
boolean |
HTable.exists(byte[] row,
byte[] column,
long timestamp,
RowLock rl)
Deprecated. As of hbase 0.20.0, replaced by HTable.exists(Get) |
RowResult |
HTable.getRow(byte[] row,
byte[][] columns,
long ts,
int numVersions,
RowLock rl)
Deprecated. As of hbase 0.20.0, replaced by HTable.get(Get) |
RowResult |
HTable.getRow(String row,
String[] columns,
long timestamp,
int numVersions,
RowLock rowLock)
Deprecated. As of hbase 0.20.0, replaced by HTable.get(Get) |
void |
HTable.unlockRow(RowLock rl)
Release a row lock |
Constructors in org.apache.hadoop.hbase.client with parameters of type RowLock | |
---|---|
Delete(byte[] row,
long timestamp,
RowLock rowLock)
Create a Delete operation for the specified row and timestamp, using an optional row lock. |
|
Get(byte[] row,
RowLock rowLock)
Create a Get operation for the specified row, using an existing row lock. |
|
Put(byte[] row,
RowLock rowLock)
Create a Put operation for the specified row, using an existing row lock. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |