Migrating Azure Service Bus Queue to Topic and Subscription - c#

We have created Azure service bus queue and have a azure function - servicebus queue trigger subscribed to it. We now want this queue to convert to Topic as we will need multiple subscription to it. is there a way that we can convert queue to Topic without deleting queue and re creating this as a Topic. I understand that Azure function code which is in c# needs to be changed so it points to service bus topic.
Thanks,
Punit Singhi

Use the ForwardTo feature for forwarding a message to the topic entity.

Related

Subscribing to messages sent using Service Bus Active Passive Replication approach in Azure

We have a microservice publishing events to service bus using active passive replication or passive replication approach where it would send the message to a topic using primary region service bus if that fails, then it would send that same message to secondary region service bus. Both service bus have same topics and subscriptions configured and they are on standard tier.
https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-outages-disasters#passive-replication
https://blog.nilayparikh.com/azure/messaging/cloud-architecture-patterns-high-availability-and-disaster-recovery-for-azure-service-bus/#Active-Passive-Azure-Service-Bus-Replication
Now we want to build a service (function app) which needs to subscribe to a topic. Is there a way for a service bus trigger function to listen to two service buses rather than creating a function for each service bus subscription separately?
Or is there another easier and more cleaner way to achieve this if the subscriber is a function app?
Any thoughts and suggestion are much appreciated :)
A Function has to create a listener on a pre-defined entity. You could have two function triggers, one for each namespace, with shared logic.

AWS SQS subscribed to SNS topic high latency

I have several .Net 5.0 microservices with RabbitMQ as message broker. Right now I am switching to AWS SQS. Few services are listening the same message (this is done with Exchange in RabbitMQ). In AWS this could be implemented by subscribing SQS Queue to SNS topic. I created SNS fifo topic and SQS fifo queues, subscribed those queues to topic. When I publish message directly to queue everything works immediately, but when I publish message to SNS topic it takes more than 7 minutes to get message from queue subscribed to topic. Does anybody noticed such huge delay ? Maybe latency?
Btw, all the service are running on aws the same region.
Any ideas ? Will appreciate any advice!
thank you all for your comments and help! In my case lack of experience with sqs was the main problem. I found parameter in queue settings "Delivery delay" and set smaller value and now I receive messages immediately.

Azure Service Bus Queue delete specific queued message

I know I can call up the scheduled message in c#/code and delete a scheduled message like this
Scheduled messages can be removed by calling CancelScheduledMessageAsync(sequenceNumber)
But I can't seem to figure out how to do it with Service Bus Explorer or in the Azure dashboard. Is it possible with either?
It's possible to delete specific messages using QueueExplorer (I'm the author). It is a commercial tool, but if it's a one-of thing you can use free trial.
https://www.cogin.com/mq/
Btw. we are a bit lucky with scheduled messages, since Azure Service Bus API has that CancelScheduledMessageAsync function. It's more problematic for regular messages. All we can do, whether from some script or from QueueExplorer, is to start receiving all messages before the one we want deleted, and then "abandon" receive for all of those in front. It's not only slow, but increments their Delivery count and they could end up in dead letter queue. It would be great if Azure Service Bus would have "delete message" functionality in API.
Both Azure dashboard and Service Bus Explorer do not support this option.
For Service Bus Explorer you can raise a feature request here.

Azure Service Bus Topics Multiple subscribers

I am new to Azure Service Bus and would like to know if I can multiple subscribers to a queue or topic? In rabbit MQ I can have multiple subscribers to 1 publisher.
What I am trying to do is, I am using CQRS and when certain commands come into the system when the event is handled I want to push them into a message queue.
I want 2 subscribers to be able to get the messages from that queue, one for me to process internally. another one for process and send externally.
I am new to Azure Service Bus and would like to know if I can multiple
subscribers to a queue or topic?
Yes. This is possible with Azure Service Bus Topics. There can be multiple subscribers to a message sent to a topic. From this link:
In contrast to queues, in which each message is processed by a single
consumer, topics and subscriptions provide a one-to-many form of
communication, in a publish/subscribe pattern. Useful for scaling to
very large numbers of recipients, each published message is made
available to each subscription registered with the topic. Messages are
sent to a topic and delivered to one or more associated subscriptions,
depending on filter rules that can be set on a per-subscription basis.
The way it works is that you create a topic and then create multiple subscriptions in that topic. In each subscription, you can define message filtering rules. When a message is sent to a topic, Azure Service Bus matches that message against the filtering rules in each subscription and if a matching rule is found, then the message is sent to that subscription.
I wanted to add something to the discussion: from the following article it seems that each listener would have to create a different subscriber in azure before listening to the same topic. Basically a topic will have multiple subscribers (every subscription with a single listener) and so the service bus will know exactly how many subscribers will need to listen to the message before it can be completed.
https://medium.com/awesome-azure/azure-difference-between-azure-service-bus-queues-and-topics-comparison-azure-servicebus-queue-vs-topic-4cc97770b65

How to create durable queue consumer using ActiveMq and C#?

I am new to activemq and trying to use it as a messaging service in C#.net application.
I was able to create Publisher/Subscriber for durable topics. But for my application requirement I need to use Durable queue's. I don't see any create consumer method available for durable queue in Apache.NMS api. So, how can I create pub/sub using durable queues?
Queue's are durable by nature. You don't have to do anything special for a consumer when subscribing to a Queue, messages sent to the Queue that are marked as Persistent will survive a broker restart and remain on the Queue. Your Queue subscription will pull messages off in order and they will only be removed from the Queue when you Ack them.

Categories

Resources