Punit
Punit

Reputation: 1445

Migrating Azure Service Bus Queue to Topic and Subscription

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

Upvotes: 0

Views: 641

Answers (1)

Roman Kiss
Roman Kiss

Reputation: 8265

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

Upvotes: 1

Related Questions