Questions tagged [cloudamqp]

An externally hosted RabbitMQ instance

CloudAMQP is a cloud-based RabbitMQ service that has interfaces in many different languages.

Full documentation

78 questions
0
votes
0 answers

RabbitMQ Message deduplication working in localhost but not in CloudAMQP

I installed RabbitMQ with the message deduplication plugin on my localhost and deduplication worked out of the box without me having to explicitly specify an exchange. The moment I opted for CloudAMQP and installed the Message Deduplication plugin,…
ololo
  • 1,326
  • 2
  • 14
  • 47
0
votes
0 answers

Getting 401 not_authorised when sending a request to a RabbitMQ Exchange

I'm getting the following response when trying to publish to a RabbitMQ exchange whose virtual host the user has access to: { "error": "not_authorised", "reason": "Not management user" } I can give the user the management tag but that would…
Iliablun
  • 17
  • 1
  • 6
0
votes
0 answers

How can solve this Parallel Queues problem in RabbitMQ?

So I have multiple Customers using my software. These customers have stored multiple contacts in our CRM. Now, these customers want to reach these contacts via SMS/WhatsApp. We have a broadcasting functionality, where customers can reach out to all…
Mayur More
  • 11
  • 2
0
votes
1 answer

local AMQP messages between MicroServices on same machine

I have developed a modular system based on MicroServices, that can be deployed in one or different machines. Each MicroService actually is a package, and communicate to other MSs sending AMQP messages. In this way each server can specify which…
DeLac
  • 1,068
  • 13
  • 43
0
votes
0 answers

Send message to cloudAMQP over TLS?

We have been using the stomp client developed by Julian Lyndon-Smith/dot.r for a couple of years. So far, we have been sending unencrypted messages. We would now like to send messages over TLS. So naturally, I've changed the port from 61613 to 61614…
AXMIM
  • 2,424
  • 1
  • 20
  • 38
0
votes
1 answer

amqplib sendToQueue() is not sending messages to RabbitMQ

I am building a Typescript package around amqplib's Promise API to make it simpler for me to send messages between two RabbitMQ queues. This is a method inside a class of said package that is responsible for sending a message to RabbitMQ. It's not…
Zenul_Abidin
  • 573
  • 8
  • 23
0
votes
0 answers

How to bind RabbitListeners to CloudAMQP?

I am currently encountering issues in implementing RabbitMQ messaging between my two applications (web/worker). My RabbitMQ service is hosted on CloudAMQP (Heroku addon). However, any @RabbitListener I declare seems to attempt connecting to…
Kanghu
  • 561
  • 1
  • 10
  • 23
0
votes
1 answer

Connecting a Cloud Run Instance to External RabbitMQ Instance(CloudAMQP)

There is a VPC connector enabled Route all traffic through the VPC connector and a firewall rule to allow all egress traffic for the VPC. Still, I am not able to connect to the RabbitMQ instance(cloudamqp) due to timeout.
0
votes
1 answer

What clients does cloudamqp think are "up-to-date" what does this mean and why?

On the rabbitmq diagnositic page of cloudamqp (a hosted rabbitmq service), I'm getting warnings about rabbitmq clients being out of date. However, no information seems to provided about what clients rabbitmq thinks are out of date, what clients are…
Att Righ
  • 1,439
  • 1
  • 16
  • 29
0
votes
1 answer

Java RabbitMQ connection is already closed

I need to push messages to external rabbitmq. My java configuration successfully declares queue to push, but every time I try to push, I have next exception: web_1 | com.rabbitmq.client.AlreadyClosedException: connection is already closed due…
Ivan Rud
  • 3
  • 2
0
votes
2 answers

Printing not happening in python pika microservice consumer inside a docker-compose service

I am trying to receive messages from my pika producer. I am following along with this tutorial: https://www.youtube.com/watch?v=0iB5IPoTDts. I can see that when I manually run docker-compose exec backend bash and then run python consumer.py, I can…
advaiyalad
  • 144
  • 1
  • 11
0
votes
1 answer

spring-boot-starter-amqp not able to send message to AMQP exchange using user credentials with only write permission

I am trying to send message to RabbitMQ from a springboot application. Dependencies used (springboot & amqp) : org.springframework.boot
0
votes
1 answer

Django Celery RabbitMQ access denied (403) ACCESS_REFUSED

I have a django project with heroku with celery integrated. I've got the rabbitmq add-on through heroku and have tested my task locally to success. The issue I'm having is connecting my remote server to rabbitmq/cloudamqp. I believe the credentials…
user3050491
  • 95
  • 4
  • 12
0
votes
1 answer

consumer: Cannot connect to amqp://dfmngfek:**@salamander.rmq.cloudamqp.com:5672/dfmngfek: [Errno 104] Connection reset by peer

My site runs with Python 3.5.6, Django 1.11.20, Celery 4.3.0, CloudAMQP (through Heroku), based on RabbitMQ. Celery returns the following error when the app is deployed to Heroku: consumer: Cannot connect to…
Paul Noon
  • 656
  • 1
  • 8
  • 25
0
votes
1 answer

Error creating bean with name 'rabbitTemplate' - CloudAMQP with Spring Boot

So I want to create a simple queue where I just send data every time I send a text message into it. I'm using CloudAMQP, their documentation gives me a Java code to use, which does work when running on its own, the issue comes when I add Spring Boot…
Darkly
  • 385
  • 1
  • 3
  • 18