Re: default limits of qpid-c++ broker, dispatch router, or proton?

2020-07-09 Thread Gordon Sim
On 09/07/2020 3:43 pm, tomt wrote: Hello, I have been trying to determine the highest rate of messages that can be sent at any given time through my environment that includes the qpid-cpp broker and the dispatch router all using AMQP 1.0 (via Proton). There seems to be some maximum cap that

Re: Error while creating message - The Session was closed due to an unrecoverable error

2020-07-09 Thread Robbie Gemmell
I didn't say 0.52.0 would change the behaviour, as it wont, just that 0.45.0 is getting on in age. Even in your updated testing there are still multiple threads involved within the client plus the applications. There is no guarantee your test will throw from createTextMessage as opposed to during

default limits of qpid-c++ broker, dispatch router, or proton?

2020-07-09 Thread tomt
Hello, I have been trying to determine the highest rate of messages that can be sent at any given time through my environment that includes the qpid-cpp broker and the dispatch router all using AMQP 1.0 (via Proton). There seems to be some maximum cap that only lets me send up to 2500

Re: Error while creating message - The Session was closed due to an unrecoverable error

2020-07-09 Thread Timothy Bish
On 7/9/20 8:41 AM, akabhishek1 wrote: Hi Robbie, Thanks a lot for your reply. In our application there are multiple ServiceBus connection which serves for different endpoints. However we didn't oberserve this issue for other endpoints but we observed this issue for two endpoints. Yes you are

Re: Broker-J: Message larger than 2GB

2020-07-09 Thread Tomas Soltys
Hi Rob, We actually have one special case where we are sending messages with size larger than 1GB. So I wanted to test what happens when larger message is sent. We also noticed that in code sometimes message size is defined as Integer and in other cases as Long. I have created a Jira QPID-8452

Re: Error while creating message - The Session was closed due to an unrecoverable error

2020-07-09 Thread akabhishek1
Hi Robbie, Thanks a lot for your reply. In our application there are multiple ServiceBus connection which serves for different endpoints. However we didn't oberserve this issue for other endpoints but we observed this issue for two endpoints. Yes you are are right multiple threads are envolved.

Re: Broker-J: Message larger than 2GB

2020-07-09 Thread Rob Godfrey
I think it's quite likely that there is a limitation somewhere where int is used (or possibly just an array created) which means that 2Gb is the effective message size limit. Do you actually have a requirement for such an enormously sized message - or are you just testing? -- Rob On Thu, 9 Jul

Broker-J: Message larger than 2GB

2020-07-09 Thread Tomas Soltys
Hi, I set qpid.max_message_size to -1 (unlimited) and tried to send some large messages. I noticed that once I get beyond 2GB I'm not able to send anything. Sender just hangs. And there is no error nor anything interesting in broker log as well. I tried with this command: Is there a hard

Re: Error while creating message - The Session was closed due to an unrecoverable error

2020-07-09 Thread Robbie Gemmell
There are multiple threads involved and an asynchronous core in play, so there just isn't a guarantee that it's going to be in the necessary state to throw before it gets to the createTextMessage call as opposed to say when it gets to the subsequent send call that actually tries to hit the

Re: Set Custom MessageID for duplicate message detection

2020-07-09 Thread akabhishek1
Hi Robbie, Thanks a lot for giving idea for ThreadLocal. I tested and it is working fine at this moment. Regards, ABhishek Kumar -- Sent from: http://qpid.2158936.n2.nabble.com/Apache-Qpid-users-f2158936.html - To