Azure Function Azure Service Bus Trigger Delay Issues
An Azure Functions app using a Consumption plan has been experiencing significant delays, sometimes taking hours for messages to be handled after being enqueued. The Functions app was not running during these delays, and Application Insights logs have been reviewed without finding the issue (there were literally no logs between the enqueue time and the processing start time, which took a few hours this morning). Additionally, the visibility settings on the messages confirm they are visible immediately upon being pushed to the queue.
The Function App is implemented using .NET 9 isolated worker model.
The most interesting detail here is that the Function app starts processing my messages as soon as I open the Function App in the Azure Portal after a few hours of delay.
What are the options for debugging this issue?