You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "James Taylor (JIRA)" <ji...@apache.org> on 2017/11/29 16:46:00 UTC

[jira] [Commented] (PHOENIX-4413) Possible queryserver memory leak when reusing connections and statements

    [ https://issues.apache.org/jira/browse/PHOENIX-4413?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16271068#comment-16271068 ] 

James Taylor commented on PHOENIX-4413:
---------------------------------------

Any ideas, [~elserj]?

> Possible queryserver memory leak when reusing connections and statements
> ------------------------------------------------------------------------
>
>                 Key: PHOENIX-4413
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-4413
>             Project: Phoenix
>          Issue Type: Bug
>    Affects Versions: 4.12.0
>            Reporter: Alex Araujo
>
> While testing client-side connection pooling using the [C# client from Microsoft|https://github.com/Azure/hdinsight-phoenix-sharp], we attempted to avoid creating new connections and statements for every Phoenix statement execution (essentially just a simple SELECT for single key).  The results were very positive from a performance perspective.  However, after a certain amount of statements executed in this manner, memory on the PQS appears to spike, and performance degrades significantly.
> Steps to Recreate
> Setup
> 1) Create the table: "CREATE TABLE  <TableName> (TestKey varchar(255) PRIMARY KEY, TestValue varchar(10000))".
> 2) Populate the table with 100 random TestKey and TestValue records.
> Execution (if done with one thread, this can take up to 24 hours, so we multithreaded it)
> 1) Create connection using OpenConnectionRequestAsync.
> 2) Create statement using CreateStatementRequestAsync.
> 3) Loop n times, selecting a record with a single random key: "SELECT TestKey, TestValue FROM <TableName> WHERE TestKey = <TestKey>'' issued using PrepareAndExecuteRequestAsync.
> 4) Close statement.
> 5) Close connection.
> Teardown
> 1) Drop the table.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)