Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

After Creating Trigger on Azure Storage Event - It Fails to trigger Pipeline

I want Folder Name  which is newly created in my Azure blob storage account   I tried the Trigger (Preview) in fabric pipeline and I was able to successfully create the Alert (which connects to my ...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi Anonymous 

     

    It sounds like you've set up most of the components correctly, but there might be a few details to check to ensure your trigger works as expected.

     

    Subject Property: This field should match the path of the folder or file you want to monitor. For a newly created folder, you can use a wildcard to capture any new folder creation. For example:

     

    /blobServices/default/containers/test-upload-container/blobs/{new-folder}/*
    /blobServices/default/containers/test-upload-container/blobs/{new-folder}/


    Ensure that {new-folder} is replaced with the actual folder name or a wildcard if you want to capture any new folder creation.

     

    Operator: The operator should be set to StartsWith to capture any event that starts with the specified path. This is useful for capturing new folder creation events.

     

    Event Type: Make sure you are selecting the correct event type, such as Microsoft.Storage.BlobCreated, to trigger the pipeline when a new folder or blob is created.

     

    Permissions: Verify that the Azure Blob Storage account and the Fabric pipeline have the necessary permissions to access and trigger events.

     

    Preview Limitations: Since the storage event triggers are in preview, there might be some limitations or bugs. Ensure you are following the latest documentation and updates from Microsoft.

     

    Regards,

    Nono Chen

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.