@InterfaceAudience.Private public class ThriftHBaseServiceHandler extends Object implements THBaseService.Iface
Modifier and Type | Method and Description |
---|---|
TResult |
append(ByteBuffer table,
TAppend append) |
boolean |
checkAndDelete(ByteBuffer table,
ByteBuffer row,
ByteBuffer family,
ByteBuffer qualifier,
ByteBuffer value,
TDelete deleteSingle)
Atomically checks if a row/family/qualifier value matches the expected
value.
|
boolean |
checkAndPut(ByteBuffer table,
ByteBuffer row,
ByteBuffer family,
ByteBuffer qualifier,
ByteBuffer value,
TPut put)
Atomically checks if a row/family/qualifier value matches the expected
value.
|
void |
closeScanner(int scannerId)
Closes the scanner.
|
List<TDelete> |
deleteMultiple(ByteBuffer table,
List<TDelete> deletes)
Bulk commit a List of TDeletes to the table.
|
void |
deleteSingle(ByteBuffer table,
TDelete deleteSingle)
Deletes as specified by the TDelete.
|
boolean |
exists(ByteBuffer table,
TGet get)
Test for the existence of columns in the table, as specified in the TGet.
|
TResult |
get(ByteBuffer table,
TGet get)
Method for getting data from a row.
|
List<TResult> |
getMultiple(ByteBuffer table,
List<TGet> gets)
Method for getting multiple rows.
|
List<TResult> |
getScannerResults(ByteBuffer table,
TScan scan,
int numRows)
Get results for the provided TScan object.
|
List<TResult> |
getScannerRows(int scannerId,
int numRows)
Grabs multiple rows from a Scanner.
|
TResult |
increment(ByteBuffer table,
TIncrement increment) |
void |
mutateRow(ByteBuffer table,
TRowMutations rowMutations)
mutateRow performs multiple mutations atomically on a single row.
|
static THBaseService.Iface |
newInstance(THBaseService.Iface handler,
ThriftMetrics metrics) |
int |
openScanner(ByteBuffer table,
TScan scan)
Get a Scanner for the provided TScan object.
|
void |
put(ByteBuffer table,
TPut put)
Commit a TPut to a table.
|
void |
putMultiple(ByteBuffer table,
List<TPut> puts)
Commit a List of Puts to the table.
|
protected ResultScanner |
removeScanner(int id)
Removes the scanner associated with the specified ID from the internal HashMap.
|
public static THBaseService.Iface newInstance(THBaseService.Iface handler, ThriftMetrics metrics)
protected ResultScanner removeScanner(int id)
id
- of the Scanner to removenull
if the Id is invalidpublic boolean exists(ByteBuffer table, TGet get) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
exists
in interface THBaseService.Iface
table
- the table to check onget
- the TGet to check forTIOError
org.apache.thrift.TException
public TResult get(ByteBuffer table, TGet get) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
get
in interface THBaseService.Iface
table
- the table to get fromget
- the TGet to fetchTIOError
org.apache.thrift.TException
public List<TResult> getMultiple(ByteBuffer table, List<TGet> gets) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
getMultiple
in interface THBaseService.Iface
table
- the table to get fromgets
- a list of TGets to fetch, the Result list
will have the Results at corresponding positions
or null if there was an errorTIOError
org.apache.thrift.TException
public void put(ByteBuffer table, TPut put) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
put
in interface THBaseService.Iface
table
- the table to put data input
- the TPut to putTIOError
org.apache.thrift.TException
public boolean checkAndPut(ByteBuffer table, ByteBuffer row, ByteBuffer family, ByteBuffer qualifier, ByteBuffer value, TPut put) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
checkAndPut
in interface THBaseService.Iface
table
- to check in and put torow
- row to checkfamily
- column family to checkqualifier
- column qualifier to checkvalue
- the expected value, if not provided the
check is for the non-existence of the
column in questionput
- the TPut to put if the check succeedsTIOError
org.apache.thrift.TException
public void putMultiple(ByteBuffer table, List<TPut> puts) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
putMultiple
in interface THBaseService.Iface
table
- the table to put data inputs
- a list of TPuts to commitTIOError
org.apache.thrift.TException
public void deleteSingle(ByteBuffer table, TDelete deleteSingle) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
deleteSingle
in interface THBaseService.Iface
table
- the table to delete fromdeleteSingle
- the TDelete to deleteTIOError
org.apache.thrift.TException
public List<TDelete> deleteMultiple(ByteBuffer table, List<TDelete> deletes) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
deleteMultiple
in interface THBaseService.Iface
table
- the table to delete fromdeletes
- list of TDeletes to deleteTIOError
org.apache.thrift.TException
public boolean checkAndDelete(ByteBuffer table, ByteBuffer row, ByteBuffer family, ByteBuffer qualifier, ByteBuffer value, TDelete deleteSingle) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
checkAndDelete
in interface THBaseService.Iface
table
- to check in and delete fromrow
- row to checkfamily
- column family to checkqualifier
- column qualifier to checkvalue
- the expected value, if not provided the
check is for the non-existence of the
column in questiondeleteSingle
- the TDelete to execute if the check succeedsTIOError
org.apache.thrift.TException
public TResult increment(ByteBuffer table, TIncrement increment) throws TIOError, org.apache.thrift.TException
increment
in interface THBaseService.Iface
TIOError
org.apache.thrift.TException
public TResult append(ByteBuffer table, TAppend append) throws TIOError, org.apache.thrift.TException
append
in interface THBaseService.Iface
TIOError
org.apache.thrift.TException
public int openScanner(ByteBuffer table, TScan scan) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
openScanner
in interface THBaseService.Iface
table
- the table to get the Scanner forscan
- the scan object to get a Scanner forTIOError
org.apache.thrift.TException
public List<TResult> getScannerRows(int scannerId, int numRows) throws TIOError, TIllegalArgument, org.apache.thrift.TException
THBaseService.Iface
getScannerRows
in interface THBaseService.Iface
scannerId
- the Id of the Scanner to return rows from. This is an Id returned from the openScanner function.numRows
- number of rows to returnTIOError
TIllegalArgument
org.apache.thrift.TException
public List<TResult> getScannerResults(ByteBuffer table, TScan scan, int numRows) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
getScannerResults
in interface THBaseService.Iface
table
- the table to get the Scanner forscan
- the scan object to get a Scanner fornumRows
- number of rows to returnTIOError
org.apache.thrift.TException
public void closeScanner(int scannerId) throws TIOError, TIllegalArgument, org.apache.thrift.TException
THBaseService.Iface
closeScanner
in interface THBaseService.Iface
scannerId
- the Id of the Scanner to close *TIOError
TIllegalArgument
org.apache.thrift.TException
public void mutateRow(ByteBuffer table, TRowMutations rowMutations) throws TIOError, org.apache.thrift.TException
THBaseService.Iface
mutateRow
in interface THBaseService.Iface
table
- table to apply the mutationsrowMutations
- mutations to applyTIOError
org.apache.thrift.TException
Copyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.