Blob trigger deployed to Azure function app not firing

Nordfjord 20 Reputation points
2025-09-22T09:49:38.7433333+00:00

Hi
I have a function created in VS code which is based on a blob trigger (function should run when blob is updated/added). When running locally in VS code the trigger functions but when I deploy it to Azure it fails to trigger. The storage account with the trigger and its path is valid.

Can anyone help? I have tried all the chatGPT suggestions but the log stream shows no sign of the trigger firing

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.


Answer accepted by question author
Anonymous
2025-09-22T11:30:28.8033333+00:00

Hello Nordfjord,

Thanks for reaching out on Microsoft Q&A.

From your description, we are sorry to hear you're running into an issue with your Azure Function that's supposed to trigger off a blob storage update or addition. Since it's working locally but not after deployment, let’s break down some common issues you might want to check:

Function Configuration: Ensure that the blob trigger configuration in Azure matches what you have locally. Check the path and connection string in your function app settings. The AzureWebJobsStorage connection string must be correctly set and pointing to the right storage account.

Log Stream: You mentioned that the log stream shows no sign of the trigger firing. This is helpful in identifying issues:

Check for any application errors in the logs that might indicate why the function is not executing. Make sure that logging is enabled for your function app and that you are looking in the right place. Container and Blob Operations: Double-check that the blob storage container exists and permissions are set correctly. Also, verify that you're uploading blobs to the right container that your function is listening to.

Delay in Trigger: Sometimes, if using the Consumption plan, there may be a short delay before the function triggers in response to blob updates. You might want to wait a few moments after uploading a file to see if it prompts the function.

Development vs. Production: If you are using local development settings that don't match with your Azure settings, ensure all necessary application settings (especially those in local.settings.json) are uploaded to Azure under Application settings.

If you’ve checked the above and it’s still not firing, I’d recommend gathering some more details, such as:

What runtime and version are you using for your Azure Function? Can you confirm the exact path and connection string settings in your Azure Function app?

  • Have you looked at the Application Insights (if enabled) for any startup or invocation errors?
  • Is your Function App deployed in the same region as your storage account?  Please provide the information requested in the private message so we can look into this further.

Thanks

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.