Adela Maznikar created HBASE-10910:
--------------------------------------

             Summary: [89-fb] Change get(List<Get>) to batchGet(List<Get>)
                 Key: HBASE-10910
                 URL: https://issues.apache.org/jira/browse/HBASE-10910
             Project: HBase
          Issue Type: Improvement
          Components: Client
    Affects Versions: 0.89-fb
            Reporter: Adela Maznikar
             Fix For: 0.89-fb


batchGet(List<Get>) is more performant since it splits the list of Gets on 
regionserver level, and get(List<Get>) does that on region level. 
If we have a list of gets for regions on a same regionserver, get(List<Get>) 
will do #regions rpc calls and batchGet(List<Get>) will do just one rpc call. 

Changing HTable.get(List<Get>) to internally call HTable.batchGet(List<Get>)



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to