Re: Python client: Connection pool

2014-06-25 Thread Alex De la rosa
Hi Sean, Thank you very much for your answer. So although I put 5 nodes in the connection string, only 1 would be use for the overall process (PUT, PUT, PUT, GET, etc...) until the end of the execution. My second question was, if I have 5 nodes initially and i put them on my connection string, an

Re: Python client: Connection pool

2014-06-25 Thread Sean Cribbs
Alex, No, it will only randomize the node when *opening* a connection. After that, it just uses what is first available in the pool. We have an outstanding plan to support auto-configuring clients, but that work did not make it into the 2.0 cycle. On Wed, Jun 25, 2014 at 7:18 AM, Alex De la ros