분류 전체보기 14

Building Resilient Serverless Architecture: SQS-Lambda Asynchronous Processing Pattern

When developing serverless applications, developers often face a critical dilemma: choosing between fast response times and system reliability. While some features require real-time responses, there are situations where safely processing requests without losing them is far more important than response speed.Today, I'll share the SQS-Lambda asynchronous processing pattern that I chose to enhance ..

Development/AWS 2025.07.07

Serverless Web App Pattern for Real-Time Response: CloudFront + API Gateway + Lambda Synchronous Processing Architecture

When building serverless web applications, many developers face a common challenge: "How can we efficiently manage real-time API responses alongside static file delivery?"This becomes especially critical for features like search autocomplete or real-time search, where asynchronous patterns like SQS → Lambda simply won't work due to their inherent limitations.Today, we'll explore a practical arch..

Development/AWS 2025.07.05

Efficient Serverless Development with AWS Lambda Layers: A New Approach to Common Library Management

In my previous post, I introduced Configuration-Driven Multi-Lambda Architecture as an effective way to manage multiple Lambda functions. We successfully managed 13 Lambda functions with a single configuration file, eliminating over 90% of code duplication. However, when operating multiple Lambda functions, you'll inevitably encounter another critical challenge.That challenge is common library m..

Development/AWS 2025.07.04

Configuration-Driven Multi-Lambda Architecture with AWS CDK: A Scalable Serverless Pattern

In the rapidly evolving landscape of serverless development, certain architectural patterns have emerged as indispensable tools for enterprise-scale applications. As someone who has navigated the complexities of real-world serverless projects, I want to share a battle-ested development pattern that has proven invaluable in production environments. This blog post focuses on a configuration-driven..

Development/AWS 2025.06.29