HBASE-3670 Fix error handling in get(List<Get> gets)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1098702 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
659da04632
commit
6c32f36250
|
@ -196,6 +196,8 @@ Release 0.91.0 - Unreleased
|
|||
framework (Mingjie Lai)
|
||||
HBASE-1512 Support aggregate functions (Himanshu Vashishtha)
|
||||
HBASE-3796 Per-Store Enties in Compaction Queue
|
||||
HBASE-3670 Fix error handling in get(List<Get> gets)
|
||||
(Harsh J Chouraria)
|
||||
|
||||
TASKS
|
||||
HBASE-3559 Move report of split to master OFF the heartbeat channel
|
||||
|
|
|
@ -117,8 +117,8 @@ public interface HTableInterface {
|
|||
* @return The data coming from the specified rows, if it exists. If the row
|
||||
* specified doesn't exist, the {@link Result} instance returned won't
|
||||
* contain any {@link KeyValue}, as indicated by {@link Result#isEmpty()}.
|
||||
* A null in the return array means that the get operation for that
|
||||
* Get failed, even after retries.
|
||||
* If there are any failures even after retries, there will be a null in
|
||||
* the results array for those Gets, AND an exception will be thrown.
|
||||
* @throws IOException if a remote or network exception occurs.
|
||||
*
|
||||
* @since 0.90.0
|
||||
|
|
Loading…
Reference in New Issue