amqp
amqp copied to clipboard
Go client for AMQP 0.9.1
I have a publisher that uses JMS to publish data to a topic via AMQP. It uses a message broker called WSO2 message broker. In the default java implementation a...
The consumer can not create a connection after the main node of the RabbitMQ restart. SpringBoot has conf to solve this issue by setting `missing-queues-fatal: false`. Connection issue occurs just...
I created two queues with two different queue names and keys in the same channel. I use the Consume function like this: `delivery, err := consumer.channel.Consume("", "", true, false, false,...
I can not found document that support connection pool. In the web, connection pool is necessary that avoid connect and reconnect ..
Hi, Using same channel for publishing messages prevents us from using `channel.NotifyPublish`, `channel.NotifyReturn` and `channel.NotifyConfirm` methods. As soon as the **first a few** messages are delivered, we can not receive...
I have encountered the problem using example that exports Session object. Connection sends close notification before channels shutdown. Client must continue to check for channel notifications before trying to reconnect....
While debugging an intermittent hang when calling Connection.Close() I discovered the following: When it hangs I can see it waiting on channel send at this line: https://github.com/streadway/amqp/blob/70e15c650864f4fc47f5d3c82ea117285480895d/connection.go#L390 Interestingly, to reach...
It seems the activity on this repo, and especially on open issues has progressively waned in 2019 and 2020. The most conspicuous outstanding issue (IMHO) is #412, plus some other...
Please and thank you.
I am having single channel handler to publish message and this handler is passed to multiple go routine at same time. Are channel handlers thread safe?