RE: Possible Python API Performance Problem

2013-04-24 Thread Wes Parish
That seems to have fixed it! Thanks! Wes -Original Message- From: Ted Ross [mailto:tr...@redhat.com] Sent: Wed 4/24/2013 2:00 PM To: users@qpid.apache.org Subject: Re: Possible Python API Performance Problem Wes, It seems that you are accumulating senders in the service process. You c

Re: Possible Python API Performance Problem

2013-04-24 Thread Ted Ross
Wes, It seems that you are accumulating senders in the service process. You create one per response but never close them. Try adding "sender.close()" after the send in the service program. -Ted On 04/24/2013 11:50 AM, Wes Parish wrote: I have been seeing some strange behavior with the 0.20

Possible Python API Performance Problem

2013-04-24 Thread Wes Parish
I have been seeing some strange behavior with the 0.20 C++ broker (I see the same behavior in the 0.14 broker as well) when sending / receiving messages with the Python API. It seems that the response time increases for each consecutive message. The client sends a message with a reply-to field

Fwd: Possible lose of messages?

2013-04-24 Thread Xiong Zou
Hi, I am testing qpid queue with its default behavior, as below: Connection connection(broker, connectionOptions); try { connection.open(); Session session = connection.createSession(); Receiver receiver = session.createReceiver(address+".FECS.S; {create: always}"