Making a Webjob a singleton using multiple deployments using Web Apps in Azure
问题 With Azure WebApps I know I can make a WebJob a singleton by adding the "is_singleton": true to the WebJob settings.job file, and this works great if I have for example, 3 instances in a single WebApp deployment. However - how can I publish to two WebApps (use case, two different regions) and make the WebJob run as a singleton and only on one of the deployments. Example of desired behavior: Sydney Deployment My Singleton Webjob (Running) My other WebJobs that process a queue (Running)