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

Getting a "Error Connecting to server (111): Connection refused" from CloudAMQP

I am prototyping a message queue solution developed using CodeIgniter. The code is hosted on a GoDaddy basic shared hosting plan and connects to a trial instance of RabbitMQ on CloudAMQP. I use the videlalvaro/php-amqplib library. The solution…
Vikas Mujumdar
  • 312
  • 5
  • 10
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
  • 121
  • 1
  • 12
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
  • 315
  • 4
  • 15
2
votes
1 answer

using rabbitmqadmin to access CloudAMQP / Heroku

I'm starting out to learn about AMQP and RabbitMQ. To get myself going I have used a CLI tool, rabbitmqadmin, to successfully publish data to a RabbitMQ development install I have created upon my Mac OS X box. So far so good, I can publish messages,…
sicruse
  • 23
  • 1
  • 4
1
vote
0 answers

connect localhost to cloudamqp cloud

im new comer in rabbitmq and i want to connect to cloudamqp instance from localhost that i created just for train and test . but when i run php artisan rabbitmq:consume i get this error: ACCESS_REFUSED - Login was refused using authentication…
sina
  • 226
  • 3
  • 11
1
vote
2 answers

How to connect MassTransit with RabbitMq on CloudAMQP

I have problem to connect MassTransit with RabbitMq on CloudAMQP. Below is my code var bus = Bus.Factory.CreateUsingRabbitMq(otions => { var host = otions.Host(new Uri("rabbitmq://llama-01.rmq.cloudamqp.com"), h => {…
SigGP
  • 716
  • 1
  • 11
  • 24
1
vote
1 answer

Can't get SSL to work with MassTransit and cloudamqp

I've been struggling to figure out how I'm meant to configure MassTransit and our new dedicated cloudamqp instance to work with SSL (note:everything is working without SSL fine). I tried adding the UseSsl line in the code below, which I found in…
Ben Thomson
  • 1,083
  • 13
  • 29
1
vote
1 answer

RabbitMQ with sidekiq

I have two rails applications, App1 and App2(added cloudAMQP gem) in heroku, App1 is producing some message when click on a button App1 class Publisher def publish # Start a communication session with RabbitMQ connection = Bunny.new(:host…
Developer
  • 561
  • 7
  • 29
1
vote
0 answers

cloudampq client does not connect to rabbitmq server

my code is as shown below: var mqtt = require('mqtt'), url = require('url'); var url = "mqtt://cloudamqp_username:cloudamqp_password@hostname:port"; var options = { port: 1883, clientId: 'mqttjs_' + Math.random().toString(16).substr(2, 8), …
Mrugesh
  • 4,381
  • 8
  • 42
  • 84
1
vote
0 answers

RabbitMQ API returning incorrect queue statistics

I'm working with RabbitMQ instances hosted at CloudAMQP. I'm calling the management API to get detailed queue statistics. About 1 in 10 calls to the API return invalid numbers. The endpoint is…
Matt S
  • 14,976
  • 6
  • 57
  • 76
1
vote
1 answer

Spring & CloudAMQP on Heroku giving "Unknown Host Exception"

I am trying to get Spring to work with CloudAMQP on the heroku platform. This is my context:
olli93
  • 91
  • 5
1
vote
1 answer

writing a json object to buffer in nodejs

I am trying to use amqplib a AMQP 0-9-1 library and client for Node.JS and I have a question about buffers. How can I write a JSON object to them. The channel.publish requires content in the form of a buffer. And after I publish the message, when…
Rockstar5645
  • 4,376
  • 8
  • 37
  • 62
1
vote
1 answer

Cannot connect to any rabbitmq cloud service

I was working fine with cloudamqp until all of a sudden wascally/rabbot stopped being able to connect to my endpoint. I have installed RabbitMQ locally and my system works fine. I have since then tried to setup a RabbitMq instance on Heroku via…
Jonny
  • 2,787
  • 10
  • 40
  • 62
1
vote
0 answers

Celery works with local broker url but not with a url from CloudAMQP

I'm using Celery to handle background tasks in my flask app and I have troubles making it work with CloudAMQP celery = Celery(app.name, broker=app.config["BROKER_URL"], backend="amqp://" ) where the broker url is…
Ali Faki
  • 3,928
  • 3
  • 17
  • 25
1
vote
1 answer

ColdFusion/RabbitMQ Fails on factory.newConnection()

I'm attempting to connect my Coldfusion app to CloudAMQP's RabbitMQ service. I've been able to create the java object, but when I attempt to create a newConnection(), it fails miserably. I'm thinking it may have something to do with my config?…
Chris Geirman
  • 9,474
  • 5
  • 37
  • 70