We are planning to use azure service bus queue along with topic/subscription.
We have multiple subscriptions for a given topic with different filter conditions.
My question is can we change the filter of subscription dynamically once subscription is created? How can I change the filter condition for subscription once it is created?
I cannot find any methods which allows this?
The only option I see is delete subscription and recreate it.
Any idea how to change filter without deleting subscription?
You can use AddRule and RemoveRule on SubscriptionClient to modify the filters in a subscription.
Resources: