'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?

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:

For more information please refer the below links:
- MICROSOFT DOCUMENTATION:- Create a function in Azure that's triggered by Blob storage & Azure Blob storage trigger for Azure Functions
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 |



