Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
43 views

I'm implementing Telemetry in my Spring Boot web app using OpenTelemetry instrumentation. All is fine except when dealing with async events. When I produce/publish, for example 100 events - all ...
Aatif Rafiq's user avatar
0 votes
0 answers
55 views

I am using the Hot Chocolate GraphQl library to do real time pub/sub messaging, this works if i create the RabbitMQ connection and channel without using the Hot Chocolate library using the same .Net ...
Soni A's user avatar
  • 43
1 vote
1 answer
651 views

I am trying to test MQTT functionality and have installed Eclipse Mosquitto on my workstation. To subscribe to a topic, I use the following command: "C:\Program Files\mosquitto\mosquitto_sub"...
user19471767's user avatar
0 votes
1 answer
151 views

I have a GCP Pub/Sub Streaming Pull subscriber that has an Ack rate equal to the Pull rate. I am seeing a lot of latency on my end and I decided to investigate further. I find that the Publish to Ack ...
tall_tales's user avatar
0 votes
0 answers
73 views

Application is written in C# and running on .NET 8, it uses EventStore 23.10.0-jammy. Code subscribes to event store, but constantly subscription is dropped with exception: { "Status": ...
Maxim Kitsenko's user avatar
0 votes
1 answer
91 views

I need help , I need to develop a Logic app which can be triggered from an API, API backend is a logic app as a backend and HTTP request body payload should be publish to a domain topic . I am having ...
Aluri Balahari's user avatar
0 votes
0 answers
41 views

I have a Spring Boot application where we use Hazelcast to handle pub/sub messaging for WebSockets. However, our current approach has scalability issues: Every STOMP message is sent to every ...
Joe16273's user avatar
0 votes
1 answer
90 views

I want to publish a sale of a product. I just wanted to publish once to a topic like sale/124 where each number represents an id of a store. Then each queue connected to that store only had to ...
João Reis's user avatar
0 votes
0 answers
55 views

I'm trying to move my turtlebot burger model on gazebo without diff_drive_controller. I commented diff drive plugin from the sdf file. I wrote a code but my robot still not moving. Here's my code: #...
Ayşe Sena Şahin's user avatar
0 votes
0 answers
47 views

I have an async PUB socket as follows: import asyncio import zmq import zmq.asyncio async def serve(address: str): context = zmq.asyncio.Context() socket = context.socket(zmq.PUB) socket....
x7r's user avatar
  • 1
2 votes
1 answer
197 views

I am working with Google Cloud Pub/Sub, and I am trying to ensure that messages with the same orderingKey are processed in order, as stated in the official documentation. However, I notice that ...
rafik's user avatar
  • 67
1 vote
1 answer
49 views

I have a subscription in Google Pub/Sub where messages can be either acknowledged (acked) or not acknowledged (nacked). To handle the at-least-once delivery guarantee of Pub/Sub, I use an idempotent ...
Nikita Alkhovik's user avatar
1 vote
1 answer
37 views

I'm implementing subscriptions in Apollo Server using TypeScript and a PubSub class for event handling. However, I've encountered an issue when trying to use a named interface for the PubSub generic ...
Unlucky's user avatar
  • 469
0 votes
0 answers
23 views

What is the way to use Dpar pubsub and connect to a Apache Pulsar proxy instead to a topic directly?
Tink's user avatar
  • 73
0 votes
2 answers
235 views

So, the scenario is simple: I want to configure google's pubsub emulator to have a dead letter queue topic, and if a message results in an exception in the handler that message should be forwarded to ...
Steve Gazzo's user avatar
0 votes
0 answers
181 views

enter image description here Here i have used the pubsub inbound channel adapter for sending and receiving the message from publisher and subscriber. This code is taken from the google cloud pubsub ...
Jhil Bhavsar's user avatar
1 vote
1 answer
160 views

I am trying to send realtime feedback over websockets, and I'm doing that by sending data over redis from a rest-api server to a websocker server (both written in python/django). In the websocket ...
WindowsWeenie's user avatar
0 votes
1 answer
1k views

In our Spring boot apps, we want to use Redis pub-sub to publish messages to a channel that in normal conditions has around 500 listeners. But on certain rare times/days, the listeners can be as large ...
RaRa's user avatar
  • 306
0 votes
1 answer
261 views

I am trying to configure GCP Pub Sub Push subscriptions, Total 3 The push subscriptions have been configured successfully, but i am not able to enable Authentication on the push subscription ...
Pallab's user avatar
  • 2,357
0 votes
2 answers
162 views

I have an issue where, if I subscribe multiple times to the same Redis channel, my subscribers start receiving duplicate messages. Here is my subscription method: public void ...
Gleb Stepanov's user avatar
-1 votes
2 answers
58 views

I need to create a hashmap that stores references to other objects as the values, with the names of those objects as the keys (HashMap<String, Consumer>). The overall system is like a mini-...
Michael Sipos's user avatar
0 votes
1 answer
61 views

Summary I'm using SwiftUI to synchronize a property on a View with an observable object, but I'm losing critical details about the origin of the updates that get sent from the observable object to the ...
shodak's user avatar
  • 95
0 votes
1 answer
339 views

I am using Redis PubSub for a notification system in an application. I usually have around 1000 concurrent users. For each user I have a personal channel with the user's ID through which several ...
Diego L's user avatar
  • 1,008
0 votes
2 answers
109 views

I am a newbie of GCP Pub/Sub, and I try to test the benchmarh of publish message. we have two scenario below: both scenario will publish 6 messages. Scenario 1: create pubsubClient, then publish 6 ...
jun yan's user avatar
  • 11
0 votes
1 answer
1k views

I am implementing a real-time notification system with websockets and redis pub/sub. Basically, the client connects to the server through websockets and from the backend I subscribe to a specific ...
Diego L's user avatar
  • 1,008

1
2 3 4 5
60