Reputation: 269
Use case: We have one App service plan, with multiple azure web apps, hosting the same web applications. Each web application also has one web job. For the Webjob Dashboards, we use the same storage account for all web apps. Can there be any potential conflict between the webjobs? Like the Webjob dashboards show wrong information, or deployment of a webjob could be affected
Thanks
Upvotes: 1
Views: 835
Reputation: 27825
Can there be any potential conflict between the webjobs?
It depends on your WebJobs functions logic, concurrent access can result in resource contention, which might cause conflicts. For example, if two jobs access and operate same resource at the same time, these jobs may affect each other, and conflicts would happen.
Please refer to the Conflicts section to consider conflicts issue when you design the WebJobs.
Upvotes: 1