amqp Questions
2
Solved
I have installed celery and RabitMQ and flower. I am able to browse to the flower port. I have the following simple worker that I can attach to celery and call from a python program:
# -*- coding:...
6
Solved
Simple question, but Google or the Pika open source code did not help. Is there a way to query the current queue size (item counter) in Pika?
9
Solved
I need to have a python client that can discover queues on a restarted RabbitMQ server exchange, and then start up a clients to resume consuming messages from each queue. How can I discover queues ...
2
Solved
I am able to create a fanout exchange using the Publish/Subscribe RabbitMQ Java tutorial, and any connected consumer will receive a copy of a message. Instead of declaring an exchange and binding d...
Pindling asked 11/3, 2013 at 15:24
5
i want to install AMQP in windows 10 with PHP 7.3 for use in symfony 4. windows not use any apache/iis/nginx and run directly by symfony.
everything ok!
until, i decide to use rabbitmq in project...
4
Solved
To my knowledge, Celery acts as both the producer and consumer of messages. This is not what I want to achieve. I want Celery to act as the consumer only, to fire certain tasks based on messages th...
2
Solved
I understand below
prefetch simply controls how many messsages the broker allows to be outstanding at the consumer at a time. When set to 1, this means the broker will send 1 message, wait for the ...
Erythrite asked 8/12, 2020 at 15:0
2
Solved
I need some help.
I'm developing a spring boot application, and I want wo publish messages to a rabbitMQ. I want to send it to a queue, that is named in the message itself. This way i want to crea...
4
I have a RabbitMQ consumer script in Go. This is a simple script from RabbitMQ tutorial that uses streadway/amqp library.
The problem is that if the RabbitMQ server is stopped, the consumer script ...
2
Solved
One of my projects requires authentication for using RabbitMQ. Only authenticated users can connect to the rabbitmq server and subscribe to queues etc. For example, when a user connects to the serv...
Caesaria asked 16/12, 2011 at 9:41
2
Solved
I try to send an object via AMQP messaging (RabbitMQ) but when I receive the message the converter raise a JsonMappingException because it was unable to deserialize that message.
Order.java:
impo...
Trula asked 13/7, 2016 at 6:52
1
As I follow the celery documentation
> from celeryapp import app
> i = app.control.inspect()
> i.active()
The inspection seems to hang. Has anyone seen this before? And can anyone shed ...
Ube asked 10/9, 2018 at 17:18
8
Solved
I am trying to understand what JMS and how it is connected to AMQP terminology.
I know JMS is an API and AMQP is a protocol.
Here are my assumptions (and questions as well)
RabbitMQ uses AMQP p...
Deviltry asked 1/3, 2013 at 3:43
5
Solved
In my (limited) experience with rabbit-mq, if you create a new listener for a queue that doesn't exist yet, the queue is automatically created. I'm trying to use the Spring AMQP project with rabbit...
2
In the REST world, we have something like a Swagger Specification, which fully describes the contract over a REST interface boundary (between client and server). Those Swagger specifications ...
Clipclop asked 15/6, 2016 at 12:55
6
2
I'm using Celery with an AMQP broker to call tasks, but the response needs to be passed back with a different queue architecture than Celery uses, so I want to pass the messages back using Kombu on...
Kinky asked 14/11, 2013 at 19:52
2
I am writing amqp 1.0 client (using rabbitMQ.Client in .NET) for a broker who provided me the following information:
amqps://brokerRemoteHostName:5671
certificate_openssl.p12
password for certifi...
3
I'm trying to constantly listen for the queue, but after about a minute (assuming my queue is empty ) I got disconnected with this error:
DEBUG:pika.adapters.blocking_connection:Outbound buffer si...
2
I have found Example for Sending String in rabittMq and Receiving from the queue but I am not clear about about these methods - assertQueue , sendToQueue
send.js
var amqp = require('amqplib/call...
1
I'm using amqplib which I'm trying to implement a reconnecting mechanism. However, after the connection is reestablished it looks like my channel is still closed. How do I fix this issue? This is m...
3
Solved
I am very new to RabbitMQ.
I have set up a 'topic' exchange. The consumers may be started after the publisher. I'd like the consumers to be able to receive messages that have been sent before they ...
2
Solved
So I am using rabbitmqs http api to do some very basic actions in rabbit. It works great in most situations but I am having an issue figuring out how to use it to publish a message to the default r...
2
I need some help cause I don't have any idea what to do. I have to use 'amqplib' in my Angular project. Firstly I have tried to use 'amqp-ts', but as soon as I've opened a browser I had an error:
A...
3
I´m sending a message to a topic exchange which hasn´t any bindings to any queues. Just a blank exchange.
The channel is created as confirm channel and my confirm callback is called each time I sen...
© 2022 - 2024 — McMap. All rights reserved.