[hbase] Add a method of getting multiple (but not all) cells for a row at once
------------------------------------------------------------------------------
Key: HADOOP-2724
URL: https://issues.apache.org/jira/browse/HADOOP-2724
Project: Hadoop Core
Issue Type: New Feature
Components: contrib/hbase
Reporter: Bryan Duxbury
Priority: Minor
Fix For: 0.17.0
We should have the ability to return some but not all cells from a row at once.
There are likely to be a number of situations when getFull will return much
more data than needed, but using individual get calls would likely be too
small. This method should support returning a specific list of columns all at
once.
{code}
Map<Text, byte[]> results = table.getMulti(new Text[]{cellA, cellB, cellC},
timestamp);
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.