Home > database >  Azure: enable partitioning for existed service bus queue
Azure: enable partitioning for existed service bus queue

Time:03-01

my department has set up a service bus queue before, but the partitioning is not enabled. Are there any ways to enable it? or do I have to delete it and create a new one with the same name to enable the partitioning? Thank you.

CodePudding user response:

You can only enable partitioning at the time of creation of a queue. So your only option would be to delete the existing queue and recreate it with partitioning enabled.

  • Related