'is it possible to attach multiple azure function to process single blob trigger event

I have one storage account. and i want to trigger two azure function when a new file comes with blob trigger. also want to make sure that both azure function will process different blob file.

How to achieve this scenario?

enter image description here

Thanks in Advance..

I want to trigger multiple function for single blob trigger event.



Solution 1:[1]

Yes ,It is possible we can trigger multiple function for single blob trigger(STORAGE ACCOUNT> CONTAINER) event.

As we have tried at our end using single storage account (container) and trigger successfully to our two Function app.

For test purpose we have follow the below:

  • Created two Azure function using portal and select our one created storage account for both of the function apps .

  • Added blob trigger function to our function apps.

  • Created container with sample-workitems.

  • Added file to container .

OUTPUT SCREENSHOT FOR REFERENCE:-

Make sure to select one storage account for both of the function: enter image description here

enter image description here

enter image description here

enter image description here

For more information please refer the below links:

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 AjayKumarGhose-MT