Good morning everyone, i am new to prefect. Questi...
# ask-community
t
Good morning everyone, i am new to prefect. Question in regards to webhooks in azure blob storage triggers. Is it possible for a stream to listen to a blob storage event end trigger in response ?
b
Hi Tobias! This should be possible. I believe what you'll need to do in Azure is create an event system topic (ie: for
blob created
events), and then create an event subscription for that system topic which processes the event. When creating the event subscription, you can set the URL of a Prefect Webhook which will transform the Azure event into a Prefect event that you can incorporate into an automation (ie: used as a trigger in an automation which kicks off a flow run to process the new data arriving in blob storage).
🙌 1
t
cool i will try that, thank you 🙂