You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2013/05/01 00:46:16 UTC

[jira] [Created] (HBASE-8471) Server-side, remove convertion from pb type to client type before we call method

stack created HBASE-8471:
----------------------------

             Summary: Server-side, remove convertion from pb type to client type before we call method
                 Key: HBASE-8471
                 URL: https://issues.apache.org/jira/browse/HBASE-8471
             Project: HBase
          Issue Type: Improvement
          Components: IPC/RPC, regionserver
            Reporter: stack


In the regionserver, when the rpc receives a call, the call is described using protobufs.  Before we make the server-side invocation, we do a transform on the pb param objects to make a native pojo -- e.g. from a pb Puts into an hbase o.a.h.h.client.Put -- and only then do we make the call against the server.

On the way out, similar, before putting the result on the wire, we will do a convertion from o.a.h.h.client.Result into pb Result.

This issue is about our first INVESTIGATING if it is possible to do away w/ this marshalling/unmarshalling serverside especially given the pb objects themselves are rich in accessor and getters, etc.  If it is possible to do w/ pbs alone serverside, then we should go ahead and rip out all the serverside convertions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira