Hi ,
Thanks for reaching out to Microsoft Q&A.
Fixes i would suggest trying for blob trigger not firing in function app (consumption plan)
- Keep the function "warm" using a Timer Trigger to prevent idling.
- Reset blob trigger leases by deleting
$AzureWebJobsStorage/blobtriggerlease
. - Restart the function app to refresh the host runtime.
- Ensure correct logging levels in Application Insights and check Log Streaming.
- Verify
host.json
settings for correct timeout and logging configurations. - Check
FUNCTIONS_EXTENSION_VERSION
in application settings. - Consider switching to Event Grid Trigger for more reliable event-driven execution.
Please feel free to click the 'Upvote' (Thumbs-up) button and 'Accept as Answer'. This helps the community by allowing others with similar queries to easily find the solution.