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
1 answer

CloudAMQP Connection Refused Only On Heroku

I am using the CloudAMQP Heroku Add On for my Spring Boot application. I am connecting to the service using a "CLOUDAMQP_URL" environment variable both locally and on Heroku. Locally my environment variable is: amqp://guest:guest@localhost:5672 On…
btbam91
  • 578
  • 2
  • 8
  • 20
0
votes
1 answer

Can celery refresh amqp connection param on the runtime?

I am trying to set up celery broker with cloud AMQP. Since cloud AMQP service only provide Java SDK, so I rewrote the encryption code with Python, and connection works fine. However, there is a problem producer sending task: connection with cloud…
Jx Liu
  • 13
  • 4
0
votes
1 answer

RabbitMQ: clean connection shutdown; reason: Attempt to use closed channel

I am relying on CloudAMQP service and I need to be able to support messages of size up to 10 Megabytes: 1. Map params = new HashMap<>(); 2. params.put("x-ha-policy", "all"); 3. params.put("x-max-length-bytes", 10_000_000); 4.…
coderodde
  • 1,269
  • 4
  • 17
  • 34
0
votes
1 answer

Not able to connect rabbitmq from kubernetes cron jobs

I am using rabbitmq at a remote (cloudamqp.com) and I create a cron job on Kubernetes. On my local machine, my job is working fine and the Kubernetes cronJob schedules perfectly well but the Job redirects the rabbitmq connection URL to…
Yuvraj
  • 66
  • 2
  • 9
0
votes
1 answer

Connection Refused cloud amqp

I am using cloudamqp message service for trying out MQs (RabbitMQ in this case). I am trying to push a message into the Queue from a Java class but it always says: Connection Refused Also System.getenv returns null (I am stuck with that…
Shivam Mishra
  • 73
  • 1
  • 5
0
votes
2 answers

Spring boot Binding to cloudmaqp error when deployed on heroku

I have one service deployed to heroku. my service use cloudamqp as cloud messagging service. when my service running on my local env i connection is success and i never found this error. but when i deploy my service to heroku, i got this…
0
votes
1 answer

vhost support on Bluemix - CloudAMQP

Is it possible to create vhosts for cloudAMQP hosted on IBM Bluemix? If it is possible, which plans would support this? Our product will make use of CloudAMQP on Bluemix. It has to support multiple tenants. Do we have the option to have one vhost…
D Roy
  • 59
  • 1
0
votes
1 answer

Internal working of AMQP protocol

I have a doubt - that which data structure does AMQP internally uses for storing messages. I know it has Transport (TCP/IP) Messaging Protocol & Type System Portable Representation of Message Properties Message Broker – the MOM Layer API…
0
votes
0 answers

How can I configure a local RabbitMQ instance to be exactly like CloudAMQP

I am trying to use the QPID libraries to connect to CloudAMQP and am consistently getting connection refused, or connection reset errors. If I use a locally installed RabbitMQ instance it works just fine. I don't have any issues connecting to…
IanG
  • 1,459
  • 3
  • 13
  • 18
0
votes
0 answers

Is it possible to start rabbit-mq server on mobile device? Should i use CloudAMQP with Android?

I want to make communication between mobile app and desktop app using RabbitMQ for messaging. Is it possible to start rabbitmq-server on mobile device like on PC or you have to use CloudAMQP for that (like here:…
gooornik07
  • 99
  • 12
0
votes
1 answer

RabbitMQ and Audiofiles

How to send an audio file as message in Cloudamqp? I'm guessing I need its byte stream and send it as a JSON. But I'm not sure if that is possible. Or do I just send the link of the location of the audio file for download?
0
votes
0 answers

Consumers stop recieving messages from RabbitMQ broker while connections and channels are still open

I've seen similar issues on other threads but none with conclusive answers. I'll spin up around 4 consumers (written in Ruby using the Bunny client gem) to subscribe to the same queue and process the messages and all works fine until about…
0
votes
0 answers

CloudAMQP & Android

I am planning to use CloudAMQP on an Android app. My query is does AMQP work over sockets on Android? I am concerned since it's going to be a real time app and there will be lot of message passing in a session and I can't batch those messages.
Vinayak Bhavnani
  • 618
  • 1
  • 4
  • 10
0
votes
0 answers

Requeue message on timeout

I'm using RabbitMQ queue, I'm using it in node.js / express app, I'm using Wascally as my library to consume and publish messages. My scenario is, that after consumer finalizes handling message it requeue's the message again, so the task is being…
Łukasz W.
  • 9,538
  • 5
  • 38
  • 63
0
votes
2 answers

Celery worker not able to access files created by Django application on Heroku

My Django application is running on Heroku. Ultimately, I would like to store original and processed image files over on Amazon S3. My first version of the code worked by storing all the files over on S3, but occasionally ran into the Heroku 30…
celiao
  • 56
  • 5