Quantcast
Channel: Service Bus forum
Viewing all articles
Browse latest Browse all 1916

Peek and Complete a message from Different Receiver Instances

$
0
0

Scenario

When business transactions are performed, we're supposed to make that data available to end clients.

Current Design

Our web app publishes messages to the Service Bus, so the transaction are added to a topic.

We expose APIs to clients through which they can consume the data from those transactions.

Upon calling these APIs, we read the messages from the Subscription and return it to the client.

Problem

We want a guaranteed delivery - we want to make sure the client acknowledges the delivery of the data. So we don't want to remove the message from the subscription immediately. We want to keep it until the client acknowledges it.

So we only want to do a "Peek" instead of "Receive".

So the client calls the first API, to get the data, where we do a Peek.

And once the client has received the packets, the client would call a second API, to acknowledge.
At this point, we want to remove the message from the Subscription, making it Complete.

The current design of the Service Bus Message Receiver is that, a Complete can be performed only using the same Receiver instance that performed the Peek, as per the documentation, and we also observed the same when we tried it out.

Both the APIs, are two separate APIs and we cannot do the Peek and Complete using the same instance of the Receiver.

Thinking about options to somehow make the Receiver as a Singleton, across APIs within that App Service.
However this will be a problem when the App Service scales out.

Is there a different way to achieve what we're trying to do here ?




Viewing all articles
Browse latest Browse all 1916

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>