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
43
votes
4 answers

What are the consequences of disabling gossip, mingle and heartbeat for celery workers?

What are the implications of disabling gossip, mingle, and heartbeat on my celery workers? In order to reduce the number of messages sent to CloudAMQP to stay within the free plan, I decided to follow these recommendations. I therefore used the…
nbeuchat
  • 6,575
  • 5
  • 36
  • 50
15
votes
0 answers

Heroku Celery Exceeding Connection Limit of 6 when Broker Pool Limit > None

I am using Django/Celery on Heroku with the CloudAMQP add-on. In my settings file, if I set BROKER_POOL_LIMIT to any value other than None, I quickly exceed my CloudAMQP connection limit of 6. I'm wondering why I would have more connections than…
Jeff Ames
  • 1,555
  • 11
  • 27
10
votes
1 answer

Celery/CloudAMQP error in a Heroku Flask App

I'm running a Flask app on Heroku (on the free tier) and running into some trouble when scheduling tasks using apply_async. If I schedule more than two tasks, I get a long stacktrace with the exception: AccessRefused(403, u"ACCESS_REFUSED - access…
Michael Marsh
  • 593
  • 3
  • 15
5
votes
1 answer

Monitoring with Celery Flower

Since Celery docs recommends using flower for monitoring, I am trying to get it to work with a hosted RabbitMQ provider (CloudAMQP) celery flower --broker=amqp://username:password@lemur.cloudamqp.com/vhost…
Pratik Mandrekar
  • 9,362
  • 4
  • 45
  • 65
5
votes
2 answers

Designing a good interface for using RabbitMQ from ASP.NET MVC and worker apps

Looking into building a web app that runs on MVC4 at AppHarbor. In the interest of responsiveness and performance, slightly longer running tasks (typically, generating/sending emails, resizing images, payment transaction processing etc) would be…
Rune Jacobsen
  • 9,907
  • 11
  • 58
  • 75
4
votes
3 answers

Switching to CloudAMQP gives com.rabbitmq.client.ShutdownSignalException

As the titles says, I'm trying to switch to CloudAMQP for deployment purposes. Application.properties look as followed: #spring.rabbitmq.host = rabbitmq #spring.rabbitmq.host =…
zhrgci
  • 584
  • 1
  • 6
  • 25
4
votes
1 answer

Why do I have so many Celery messages with CloudAMQP on Heroku?

My Django site running on Heroku is using CloudAMQP to handle its scheduled Celery tasks. CloudAMQP is registering many more messages than I have tasks, and I don't understand why. e.g., in the past couple of hours I'll have run around 150 scheduled…
Phil Gyford
  • 13,432
  • 14
  • 81
  • 143
4
votes
2 answers

Celery RabbitMQ CloudAMQP task queues not being consumed on Heroku

This example works on dev environment. On Heroku tasks get queued but are not consumed. Any ideas what I might be doing wrong? RabbitMQ Dashboard Shows: Name Parameters Policy State Ready Unacked…
Carlos Ferreira
  • 1,980
  • 2
  • 14
  • 18
4
votes
1 answer

Celery Cloudamqp creates new connection for each task

I am currently using nitrous.io running Django with Celery and then Cloudamqp as my broker with the free plan (max 3 connections). I'm able to connect just fine and start up a periodic task just fine. When I run celery -A proj worker -l info …
Tomdanizer
  • 66
  • 4
4
votes
2 answers

RabbitMQ keeps connections running for a long time

I am using a hosted RabbitMQ provider i.e CloudAMQP and running a django app server on heroku. In local environment everything seems to work fine but on Heroku where CloudAMQP has a limit on the number of simultaneous connections to the broker, the…
Pratik Mandrekar
  • 9,362
  • 4
  • 45
  • 65
4
votes
2 answers

MT in the cloud with AppHarbor and CloudAMQP

Anybody successfully got MassTransit working with AppHarbor and CloudAMQP? I am having a bear of a time with it. I have the publisher (the web site) sending messages, but the server (a background worker) does not appear to be picking them up. One of…
Joe Young
  • 1,076
  • 1
  • 14
  • 27
4
votes
2 answers

Connection Error with Django/Celery and CloudAMQP/Heroku

I have a Django app that I've already deployed to Heroku. This app uses Celery for message queuing and I've run it locally using RabbitMQ without incident. Unfortunately, when I went to deploy this baby to Heroku, I found that the RabbitMQ addon…
3
votes
2 answers

pika Exception when consuming messages with auto_ack=True

I am using pika with a hosted CloudAMQP instance. Messages are being published to the queue in short bursts: ~10 messages/second and then nothing for a few minutes. The consumer sometimes can take up to ~30 seconds to process a single message. My…
Greg Sadetsky
  • 4,863
  • 1
  • 38
  • 48
3
votes
0 answers

How can I minimise connections with django-celery when using CloudAMQP through dotcloud?

After spending a few weeks getting django-celery-rabbitmq working on dotcloud I have discovered that dotcloud is no longer supporting rabbitmq. Instead they recommend CloudAMQP. So I've set up CloudAMQP as per the…
user714852
  • 2,054
  • 4
  • 30
  • 52
2
votes
0 answers

Configuration issue on heroku with rabbitMQ (cloudamqp addon) - ruby application

First of all this is working fine in my local machine. I have one publisher app (Rails 3), which is publishing message to cloudamq(addon) in heroku, we are getting messages in cloudamq and one consumer application (Rails 5) which is also running…
Developer
  • 561
  • 7
  • 29
1
2 3 4 5 6