Alex Maie
Alex Maie

Reputation: 269

Azure WebJobs - Multiple Web Apps - Single Storage account conflict

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

Answers (1)

Fei Han
Fei Han

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

Related Questions