Questions tagged [cloudamqp]

An externally hosted RabbitMQ instance

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

Full documentation

63 questions
19
votes
3 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
  • 4,802
  • 2
  • 28
  • 37
14
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,485
  • 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
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,297
  • 11
  • 51
  • 72
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
  • 10,767
  • 11
  • 51
  • 112
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,424
  • 1
  • 9
  • 17
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
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
  • 8,388
  • 3
  • 33
  • 59
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
  • 8,388
  • 3
  • 33
  • 59
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,026
  • 12
  • 26
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
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
  • 1,884
  • 3
  • 29
  • 49
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
  • 909
  • 5
  • 22
2
votes
1 answer

Creating custom scaling trigger for elastic beanstalk

I have a worker that uses RabbitMq as the message queue I want to configure the worker to scale depending on the number of messages in the queue Am using cloudamqp how do I add a custom scaling trigger in elastic beanstalk
user2388404
  • 101
  • 9
2
votes
0 answers

Unable to get the messages from cloud AMQP queue

Hi i am trying to use rabbitmq in my sails app. when I try to post data in my model after giving the connections adapter I can see the data received in my rabbit queue but the database has not created. I'm using mongo database for my models and…
Anandapriyan S.D
  • 317
  • 4
  • 15
1
2 3 4 5