Member-only story
Azure Functions CI CD — DevOps
Azure Functions is a serverless solution that allows you to write less code, maintain less infrastructure, and save on costs.
It is a serverless computing service that enables users to run event-triggered code without having to provision or manage infrastructure. Being a “trigger-based” service, it runs a script or piece of code in response to a variety of events.
Event-driven architecture (EDA) is a software design pattern that enables an organization to detect “events” or important business moments (such as a transaction, site visit, shopping cart abandonment, etc) and act on them in real-time or near real-time.
buymeacoffee ☕ 👈 Click the link
This pattern replaces the traditional “request/response” architecture where services would have to wait for a reply before they could move on to the next task. The flow of event-driven architecture is run by events and it is designed to respond to them or carry out some action in response to an event.
Event Types
- Simple Events
- Composite Events
- Temporal Events
- System Events
- Business Events
- Error Events
- Resource Events
- Lifecycle Events