Azure Blob Storage event to trigger pipeline not working .

JS 0 Reputation points
2025-05-12T17:59:02.4266667+00:00

folks ..

I have a created a Blob storage event as per the docs here , tied it to pipeline and event is started . however when a file is uploaded nothing happens . I read thru similar posts but still cant find the missing info to get this working .

1.png

2.png

I also see the file in preview section ...

3.png

read thru some of the posts here which says i need an event subscription but not always .. I checked

by going to go storage account > event subscription i see nothing here...

thoughts /advice be very appreciated . Thanks in advance.

Azure Synapse Analytics
Azure Synapse Analytics
An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
5,373 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Ganesh Gurram 7,295 Reputation points Microsoft External Staff Moderator
    2025-05-12T18:55:30.17+00:00

    @JS

    Based on the review and configuration you've shared, it appears the root cause is an incorrect container name format in your event trigger configuration. Please ensure the following points are addressed:

    Correct Container Name Format - In the trigger configuration, the container name should be set as test
    Incorrect - //test/
    Correct - test

    Incorrect formatting can prevent the necessary Event Grid subscription from being created, which is required to trigger your pipeline.

    Ensure Event Subscription Exists - Go to your Storage Account > Events > Event Subscriptions. If you do not see a subscription created for your Synapse pipeline, this confirms the trigger didn't register correctly. After correcting the container name, publish the trigger again to auto-create the subscription.

    Trigger Configuration in Synapse Studio - Ensure the trigger is Started and Published. Make sure the "Blob path begins with" is set correctly (e.g., test/). Check that the correct event type ("Blob Created") is selected.

    Permissions - Ensure that the Synapse Managed Identity has Storage Blob Data Reader permission on the Storage Account.

    Try Recreating the Trigger - If issues persist, delete and re-create the trigger with the correct settings. Re-publish and confirm the Event Subscription is created.

    For more details refer:

    I hope this information helps.

    Kindly consider upvoting the comment if the information provided is helpful. This can assist other community members in resolving similar issues.

    0 comments No comments

Your answer

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