Home > Mobile >  Azure Pipeline storage file trigger doesn't fire
Azure Pipeline storage file trigger doesn't fire

Time:10-25

enter image description hereI´ve created an Azure Synapse Analytics Pipeline that must be triggered by the creation of a file within a Azure Gen2 storage account.

Somehow the blob creation event (i.e. when I upload the file in the corresponding container and folder) doesn´t fire anything and the pipeline does not start. I´ve registered the Microsoft.EventGrid and Microsoft.Synapse resource providers in the subscription, enter image description here

usually when that is blank, event trigger is not initiated

CodePudding user response:

I tried to reproduce your scenario in my environment, and it works for me (i.e., when I upload the file in the corresponding container and folder). Let me share my implementation and then you can compare with yours.

enter image description here

This is the setup for the trigger

enter image description here

The trigger is firing as expected.

  • Files uploaded date time enter image description here

  • Trigger firing date time enter image description here

  • Related