You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "James E. King, III (JIRA)" <ji...@apache.org> on 2017/02/24 15:29:44 UTC

[jira] [Resolved] (THRIFT-4102) TBufferedTransport performance issue since 0.10.0

     [ https://issues.apache.org/jira/browse/THRIFT-4102?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

James E. King, III resolved THRIFT-4102.
----------------------------------------
       Resolution: Fixed
    Fix Version/s: 0.11.0

> TBufferedTransport performance issue since 0.10.0
> -------------------------------------------------
>
>                 Key: THRIFT-4102
>                 URL: https://issues.apache.org/jira/browse/THRIFT-4102
>             Project: Thrift
>          Issue Type: Bug
>          Components: Python - Library
>    Affects Versions: 0.10.0
>            Reporter: Jin Yao
>            Assignee: James E. King, III
>             Fix For: 0.11.0
>
>
> I upgrade thrift from 0.9.3 to 0.10.0, and our rpc calls slow down.
> I digged around the code, and find maybe it caused by the write function in TBufferedTransport.
> The last line seems useless, but cost time.
> {code:title=TTransport.py|borderStyle=solid}
> def write(self, buf):
>     try:
>         self.__wbuf.write(buf)
>         except Exception as e:
>             # on exception reset wbuf so it doesn't contain a partial function call
>             self.__wbuf = BufferIO()
>             raise e
>     self.__wbuf.getvalue() # it seems useless, but cost time
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)