Serverless architecture পরিচালিত, ইভেন্ট-চালিত সেবা (Lambda, API Gateway, DynamoDB, S3, SQS, ইত্যাদি) থেকে অ্যাপ্লিকেশন তৈরি করে সার্ভার পরিচালনা না করে — AWS স্কেলিং এবং অবকাঠামো পরিচালনা করে। সার্ভারলেস সিস্টেম কীভাবে ডিজাইন করতে হয় এবং তাদের ট্রেড-অফগুলি বোঝা আধুনিক ক্লাউড আর্কিটেকচারের জন্য মূল্যবান।
একটি সাধারণ সার্ভারলেস আর্কিটেকচার
A serverless web app/API often combines:
API GATEWAY → receives HTTP requests, routes to Lambda (the API entry point)
LAMBDA → functions handle the business logic (run on demand, auto-scale)
DYNAMODB → serverless NoSQL database (scales automatically)
S3 → static assets / file storage (host the frontend, store uploads)
COGNITO → managed authentication
SQS/SNS/EventBridge → async messaging and event-driven flows
CLOUDFRONT → CDN for the frontend
→ No servers to manage; everything scales automatically; pay per use.
