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

Create connection from RabbitMQ to ActiveMQ

I have details of a ActiveMQ server which i would like to connect to and view the data availble. I would like to use RabbitMQ(CloudAMQP). I have read the documentation, but I cant work out how to make this connection? The connection details I have…
user636322
  • 1,151
  • 3
  • 12
  • 23
1
vote
1 answer

ssl with django, celery, cloudamqp and heroku

I’m trying to connect my django heroku app with cloudamqp over ssl. Without it works fine. To use ssl in celery I set BROKER_USE_SSL settings variable to True. Unfortunately the default 5672 port can’t handle ssl. So I tried to set the heroku config…
t_io
  • 1,952
  • 1
  • 19
  • 27
1
vote
0 answers

Number of connections to RabbitMQ when using Django with Celery on Heroku

I'm trying to understand what is happening between Web-Dynos, Worker-Dynos and RabbitMQ on my Heroku-hosted backend. I notice that I have over 10 connections to RabbitMQ, although I so far I'm using one Web-Dyno and one Woker-Dyno. I am using…
silentser
  • 2,083
  • 2
  • 23
  • 29
1
vote
1 answer

How To Configure Spring Websockets With CloudAMQP

I have a Spring Boot application which I am deploying to a Cloud Foundry instance (BlueMix). I have bound a CloudAMQP instance to the application and would like to use it for sending my STOMP meessages. I have not been able to properly configure…
Ryan Baxter
  • 1,237
  • 2
  • 8
  • 16
1
vote
0 answers

AMQP 1.0 topic non-durable consumer

For some time now I'm trying to create topic consumer that will not require subscription. So i would like to achieve similar behavior like with JMS non-durable topic subscriber. I'm using MS Azure AMQP 1.0 service bus and apache qpid amqp 1.0 client…
ichtio
  • 33
  • 4
1
vote
1 answer

MassTransit throws exception "None of the specified endpoints were reachable" when using with CloudAMQP

The initialization code of MT service bus looks as follows: var messageQueueUri = ConfigurationManager.AppSettings["messageQueueUri"]; messageQueueUri = messageQueueUri.Replace("amqp://", "rabbitmq://"); var bus = ServiceBusFactory.New(sbc => { …
Maxim Ozerov
  • 71
  • 2
  • 8
1
vote
0 answers

cloudamqp/Heroku/Play2: creating connection in web process causes logging to stop in current thread

In my web process in a play 2/heroku app, I have this code: LOG.info("=======1"); ConnectionFactory factory = new ConnectionFactory(); LOG.info("=======2"); factory.setUri(new URI(CLOUDAMQP_URL)); LOG.info("=======3"); …
Bjorn Roche
  • 11,279
  • 6
  • 36
  • 58
1
vote
1 answer

Error handling exclusive queue subscription in node-amqp (node.js)

When you subscribe to an exclusive queue (only one consumer allowed at a time), node-amqp throws an exception when the queue is oversubscribed (already has a consumer). I've tried using the .on("error",cb) syntax. I've tried error domains (node…
DrFriedParts
  • 469
  • 10
  • 18
1
vote
1 answer

AppHarbor MassTransit CloudAMQP constantly consuming 1,9kB/s

After making it work: AppHarbor MassTransit CloudAMQP throws Exception None of the specified endpoints were reachable Now I see in CloudAMQP Management that I have 2 connections constantly consuming 1,9kB/s and 1,4 kB/s which will blow my 30 Mb…
cdiazal
  • 988
  • 11
  • 28
1
vote
1 answer

AppHarbor MassTransit CloudAMQP throws Exception None of the specified endpoints were reachable

I am trying to use Masstransit with CloudAMQP LEMUR from my AppHarbor application, but I am receiving the exception: "None of the specified endpoints were reachable" This is how Masstransit is configured: Bus.Initialize(sbc => …
cdiazal
  • 988
  • 11
  • 28
0
votes
0 answers

RabbitMQ Container Consumer Receives Producer message but Producer doesnt Receive Consumer Response

I have setup a RabbitMQ container with the following command line > sudo docker run -d --hostname my-rabbit --network test-network --name some-rabbit -p3001:5672 -p3002:15672 -e RABBITMQ_DEFAULT_USER=user -e RABBITMQ_DEFAULT_PASSWORD=password…
0
votes
0 answers

Does CloudAMQP have dual support for AMPQ 1.0 and 0.9.1

On CloudAMQP there are logs which are telling that AMQP 1.0 is not supported and that it requires enabling the rabbitmq_amqp1_0 plugin =ERROR EVENT==== Wed, 07 Jun 2023 10:37:59 GMT === 2023-06-07 10:37:59.477653+00:00 [error] <0.8920.2> closing…
Stevan Tosic
  • 6,561
  • 10
  • 55
  • 110
0
votes
0 answers

Cloudamqp amqp-client.js connection recovery

I am integrating the ampq-client into my javaScript application but I am wondering how this library handles recovery in case of network failures. I do not see any options for recovery and after a simple test, it seems it does not recover. I want to…
horak90
  • 105
  • 9
0
votes
0 answers

Debug queue AMQP that loses messages using low prefetch

My ampq system seems loosing messages, so I'd like a way to see if messages are effectively queued before being consumed. I have several MicroServices communicating by amqp messages on NodeJs, using CloudAmqp. One of this microservice MS[B]…
DeLac
  • 1,068
  • 13
  • 43
0
votes
0 answers

Separate DLQ for expiration and rejection

Is it possible to have a separate DLQ for messages which are expire (TTL) and that are rejected (NACK)? For the expiration it's simple - the queue could have x-message-ttl and x-dead-letter-exchange defined. Having a DLQ for rejected messages we're…
gusto2
  • 11,210
  • 2
  • 17
  • 36