Last active
September 20, 2023 09:02
-
-
Save mrtarkhan/20ab436ba5af765895ca67357c14e407 to your computer and use it in GitHub Desktop.
These scenarios allow you to build event-driven systems using modern architectural patterns via azure functions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you want to... | then... | |
---|---|---|
Process file uploads | Run code when a file is uploaded or changed in blob storage. | |
Process data in real | time Capture and transform data from event and IoT source streams on the way to storage. | |
Infer on data models | Pull text from a queue and present it to various AI services for analysis and classification. | |
Run scheduled task | Execute data clean-up code on pre-defined timed intervals. | |
Build a scalable web API | Implement a set of REST endpoints for your web applications using HTTP triggers. | |
Build a serverless workflow | Create an event-driven workflow from a series of functions using Durable Functions. | |
Respond to database changes | Run custom logic when a document is created or updated in Azure Cosmos DB. | |
Create reliable message systems | Process message queues using Queue Storage, Service Bus, or Event Hubs. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment