Questions tagged [rabbitmq-stream]
10 questions
2
votes
1 answer
Spring cloud stream and backpressure using PubSubReactiveFactory
I am trying to implement a flow control similar to https://cloud.google.com/pubsub/docs/pull#flow_control using spring cloud stream reactive client.
@Bean
ApplicationRunner reactiveSubscriber(PubSubReactiveFactory reactiveFactory,…

Jonathan Chevalier
- 993
- 1
- 9
- 18
1
vote
1 answer
unable to connect to rabitmq streams getting RabbitMQ.Stream.Client.StreamSystemInitialisationException: 'no endpoints could be reached' error
i am trying to create a new rabbitmq stream where my rabbitmq is installed in docker.
Bellow are the steps which i implemented.
installed RabbitMQ in docker under the TCP port 5672
enabled rabbit stream and stream management
installed…

Anil Kumar
- 23
- 6
1
vote
1 answer
Add delay in consuming messages in rabbitmq stream
i'm using rabbitmq stream and i need to add a delay between messages because the stream handles messages very fast.
how can I do that?

Rawan AlKhalawi
- 23
- 4
1
vote
1 answer
RabbitMQ Streams
Using this document as a reference: https://blog.rabbitmq.com/posts/2021/07/rabbitmq-streams-first-application I have created a stream in RabbitMQ and added 1 million messages to it.
try (Environment environment =…

BigBug
- 6,202
- 23
- 87
- 138
0
votes
0 answers
Is it possible to read one rabbitmq stream message with a single service instance?
Is it possible to read stream messages one by one with a replicated consumer? If yes, how to do it?
My situation is: I have one service-consumer with 3 replications. I want it to read stream messages as like from queue, when one message is processed…

Yerbol Suleimanov
- 115
- 1
- 1
- 5
0
votes
0 answers
RabbitMQ Stream Perf Test Tool Grafana Dashboard
RabbitMQ provides the following official dashboards: https://grafana.com/rabbitmq
They also provide a perf-test tool dashboard (nice!), unfortunately I can not find the ones for the stream-perf-test tool.
I have enabled the prometheus port with the…

Philbo
- 1
- 2
0
votes
1 answer
RabbitMQ Java Stream Client and RabbitMQ Kubernetes Operator
I deployed a Kubernetes cluster using the RabbitMQ Operator and activated the rabbitmq_stream plugin. This is my yaml:
apiVersion: rabbitmq.com/v1beta1
kind: RabbitmqCluster
metadata:
name: rabbitmq-deployment
namespace:…

Stefan
- 2,028
- 2
- 36
- 53
0
votes
1 answer
How to subscribe to multiple streams in RabbitMQ with single consumer? (C#)
Is it possible to subscribe to receive messages from multiple streams with a single consumer in RabbitMQ?
I have the following code to subscribe to a single stream and this works correctly. Is it possible to have similar code to subscribe to…

blank_yield
- 11
- 2
0
votes
0 answers
Flink connector for RabbitMQ Streams?
The RabbitMQ Connector for Apache Flink apparently can't be used for RabbitMQ Streams. At least I wasn't able to make it work.
Does someone have experience with that and/or has been able to connect Apache Flink to RabbitMQ Stream queue?

Julien Charon
- 600
- 1
- 7
- 21
0
votes
0 answers
Cannot send stream messages to rabbitmq which in docker
I have a rabbitmq container in docker and another service to send stream type messages to it. But it is only ok when the service is outside the docker, if I build the service as a container run in docker,and send stream messages, It always shows…

Allen
- 1
- 1