I've discovered that Azure Function Timer triggers fail to execute when the server is under heavy load with other Azure Functions. I suspect this is by design, or simply a failed consideration. I need to designed a solution that enables triggering high priority Azure Functions regardless of current trigger requests and server load.
What is the best approach to prioritize mission critical Azure Functions over lower priority executions?
You can see from the example that a timer trigger scheduled every 5 minutes fails to execute when the server is under heavy load.
Server is on an S2 Plan. Application is C# running Azure Function v1.0.29. Cannot update to v3.x because this is not a .NET Core project.

host.json? - J.Wincewicz