You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Sean Busbey (JIRA)" <ji...@apache.org> on 2015/08/05 19:00:07 UTC

[jira] [Created] (HBASE-14187) Add Thrift 1 RPC to batch gets in a single call

Sean Busbey created HBASE-14187:
-----------------------------------

             Summary: Add Thrift 1 RPC to batch gets in a single call
                 Key: HBASE-14187
                 URL: https://issues.apache.org/jira/browse/HBASE-14187
             Project: HBase
          Issue Type: Improvement
          Components: Thrift
            Reporter: Sean Busbey
            Assignee: Sean Busbey
             Fix For: 2.0.0, 1.3.0


add a method to pull a set of columns from a set of non-contiguous rows in a single RPC call.

e.g.
{code}
   /**
     * Parallel get. For a given table and column, return for
     * the given rows.
     *
     * @param tableName table to get from
     * @param column column to get
     * @param rows a list of rows to get
     * @result list of TRowResult for each item
     */
    list<TRowResult> parallelGet(1:Text tableName,
                                 2:Text column,
                                 3:list<Text> rows)
                                 throws (1:IOError io)
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)