Uma Mahesh

Uma Mahesh

Author is working as an Architect in a reputed software company. He is having nearly 21+ Years of experience in web development using Microsoft Technologies.

Serverless Architecture (AWS Lambda, GCP Functions, Azure Functions): Mechanisms for Event-Driven Systems

Introduction Serverless architecture represents a paradigm shift in cloud computing, where developers focus on writing code without managing underlying infrastructure. Serverless computing, exemplified by platforms like AWS Lambda, Google Cloud Functions (GCP Functions), and Azure Functions, enables event-driven systems that automatically scale, execute code…

Resiliency Patterns: Circuit Breaker, Bulkhead, Retry, and Timeout for Building Resilient Microservices

Introduction In microservices architectures, ensuring system resilience is critical to maintain high availability (e.g., 99.999% uptime) and handle failures gracefully under high load (e.g., 1M req/s). Resiliency patterns such as Circuit Breaker, Bulkhead, Retry, and Timeout address these challenges by mitigating cascading failures, isolating faults, and managing…