Azure Function in Consumption Plan Not Triggering (But Works in Premium)
I’m working with an Azure Function app that utilizes the Consumption plan. The function seems to execute flawlessly when deployed to the Premium plan, but it doesn’t trigger at all in Consumption. I’ve verified the function code itself works as expected.
Here’s what I’ve tried so far:
Manual Invocation: I’ve manually triggered the function through the Azure portal and it executes successfully in both Consumption and Premium plans. This suggests the function code itself is functional.
Trigger Configuration: I’ve double-checked the trigger configuration (e.g., Blob storage connection string) and ensured it’s accurate for both plans.
Trigger Source Testing: I’ve simulated the trigger event from the source (e.g., uploaded a test blob) to see if the function fires in Consumption, but there’s no response.
Has anyone encountered this behavior with Azure Functions in Consumption plans? Any insights or suggestions on troubleshooting steps would be greatly appreciated!
Additional Information (if applicable):
Function trigger type (e.g., HTTP trigger, Blob storage trigger)
Any error messages encountered in the function logs (Consumption plan)