Re: Dispatch Router: Changing buffer size in buffer.c blows up AMQP.

2021-02-11 Thread Michael Goulish
*Can you explain how you are measuring AMQP throughput? What message sizes are you using? Credit windows? How many senders and receivers? Max frame* * size?* Oops! Good point. Describe the Test! 100 senders, 100 receivers, 100 unique addresses -- each sender sends to one receiver. Each sender

Re: broker j REST API getMessageContent help

2021-02-11 Thread Oleksandr Rudyy
Hi, As per error message "Operation 'getMessageContent' can only be performed over a secure (HTTPS) connection", you need to use https in order to call getMessageContent. The message content can contain sensitive private information. In order to protect that information from eye dropping a secure

Re: Dispatch Router: Changing buffer size in buffer.c blows up AMQP.

2021-02-11 Thread Ted Ross
On Thu, Feb 11, 2021 at 2:08 PM Michael Goulish wrote: > OK, so in the file Dispatch Router file src/buffer.c I changed this: > size_t BUFFER_SIZE = 512; > to this: > size_t BUFFER_SIZE = 4096; > > Gordon tells me that's like 8 times bigger. > > > It makes a terrific differenc

Re: broker j REST API getMessageContent help

2021-02-11 Thread bltw15
Thank you for pointing that out Alex. I tried again with curl ( I was using Postman) curl --user guest -X POST -d '{"messageId":1}' http://localhost:8080/api/latest/queue/default/default/TempQueue344060fa-b39c-4953-87bd-b98567f61e4e/getMessageContent Enter host password for user 'guest': { "er

Re: broker j REST API getMessageContent help

2021-02-11 Thread bltw15
I don't see any log corresponding to this in the broker log. Is there a specific place the stack trace show up? -- Sent from: http://qpid.2158936.n2.nabble.com/Apache-Qpid-users-f2158936.html - To unsubscribe, e-mail: users-un

Dispatch Router: Changing buffer size in buffer.c blows up AMQP.

2021-02-11 Thread Michael Goulish
OK, so in the file Dispatch Router file src/buffer.c I changed this: size_t BUFFER_SIZE = 512; to this: size_t BUFFER_SIZE = 4096; Gordon tells me that's like 8 times bigger. It makes a terrific difference in throughput in the TCP adapter, and if you limit the sender to the t

Re: broker j REST API getMessageContent help

2021-02-11 Thread Oleksandr Rudyy
Hi, It seems that you invoked getMessageContent API using either method POST or PUT rather than GET. If PUT/POST is required to use, you need to specify operation parameters in a message body. Something like curl --user admin -X POST -d '{"messageId":1}' http://localhost:8080/api/latest/queue/de

[RESULT] [VOTE] Release Apache Qpid Dispatch 1.15.0

2021-02-11 Thread Ganesh Murthy
There were 5 binding +1 votes and no other votes received. The vote has passed. I will add the files to the dist release repo and create the final tag shortly. The website will be updated after the release has had time to sync to the mirrors. Thanks to everybody for testing/voting.

Re: [VOTE] Release Qpid Dispatch Router 1.15.0 (RC1)

2021-02-11 Thread Ganesh Murthy
+1 * Validated checksum * Checked for presence of LICENSE and NOTICE files * Built from source against Proton 0.33.0 in Fedora 33 and ran system tests. All tests passed On Mon, Feb 8, 2021 at 10:41 AM Ganesh Murthy wrote: > > Hello All, > Please cast your vote on this thread to release R

Re: [VOTE] Release Qpid Dispatch Router 1.15.0 (RC1)

2021-02-11 Thread Ken Giusti
+1 overnight oslo.messaging smoke test On Mon, Feb 8, 2021 at 10:47 AM Ganesh Murthy wrote: > Hello All, > Please cast your vote on this thread to release RC1 as the > official Qpid Dispatch Router version 1.15.0. > > RC1 of Qpid Dispatch Router version 1.15.0 can be found here: > > ht

Re: [RABBITMQ/QPID-JMS/VHOST] failed to connect to a virtual host

2021-02-11 Thread Rob Godfrey
So, as per the docs at https://qpid.apache.org/releases/qpid-jms-0.56.0/docs/index.html#amqp-configuration-options the amqp vhost needs to be set via a URL option rather than putting the vhost in the path, so I'd assume something like amqp://localhost:5672?amqp.vhost=tst -- Rob On Thu, 11 Feb 20

RE: [RABBITMQ/QPID-JMS/VHOST] failed to connect to a virtual host

2021-02-11 Thread KOELMAN Herbert
We are indeed using AMQP version 1.0. Plugin list: Enabled plugin file: /etc/rabbitmq/enabled_plugins Enabled plugins: * rabbitmq_web_stomp * rabbitmq_stomp * rabbitmq_amqp1_0 * amqp10_common * rabbitmq_management * amqp_client * rabbitmq_web_dispatch * cowboy * cowlib * rabbitmq_manage

Re: [VOTE] Release Qpid Dispatch Router 1.15.0 (RC1)

2021-02-11 Thread Gordon Sim
On 08/02/2021 15:41, Ganesh Murthy wrote: Hello All, Please cast your vote on this thread to release RC1 as the official Qpid Dispatch Router version 1.15.0. RC1 of Qpid Dispatch Router version 1.15.0 can be found here: https://dist.apache.org/repos/dist/dev/qpid/dispatch/1.15.0-rc1/

Re: broker j REST API getMessageContent help

2021-02-11 Thread Rob Godfrey
Did you see any sort of Java stack trace in the logs corresponding to this issue? If so, can you paste the stack trace here? Thanks, Rob On Wed, 10 Feb 2021 at 09:45, bltw15 wrote: > I'm trying to retrieve message content from the queue, but can't seem to > get > it right. What is an example o

Re: [RABBITMQ/QPID-JMS/VHOST] failed to connect to a virtual host

2021-02-11 Thread Rob Godfrey
Are you enabling AMQP 1.0 support on RabbitMQ via their plugin (RabbitMQ does not support AMQP 1.0 by default - see https://www.rabbitmq.com/protocols.html). The Qpid JMS client uses AMQP 1.0 only. -- Rob On Thu, 11 Feb 2021 at 13:06, KOELMAN Herbert < herbert.koel...@soprasteria.com> wrote: >

[RABBITMQ/QPID-JMS/VHOST] failed to connect to a virtual host

2021-02-11 Thread KOELMAN Herbert
Hello, I'd like to connect to a RabbitMQ virtual host, but it's not quite clear how I should setup my JMS connection. I'm using - RabbiMQ version 3.8.9 - Qipid-jms : 0.55.0 I thought it was just a matter of adding the virtual host name at the end of the connection URL. But

Re: [VOTE] Release Qpid Dispatch Router 1.15.0 (RC1)

2021-02-11 Thread Michael Goulish
+1 Tested TCP adapter for 1 hour at 600 Mbits/sec between two boxes -- total 253 GBytes -- using iperf3 as TCP client and server -- normal router shutdown. On Mon, Feb 8, 2021 at 11:43 AM Chuck Rolke wrote: > +1 > > * downloaded and checked sha512 > * built debug build using proton master@537d