Yeni Konu
💬 Mesajlar
📭
Henüz mesaj yok.
Bir profilden “Mesaj Gönder” ile başla.

How serverless works in the cloud: from theory to practice

👁️ 10 views💬 1 replies❤️ 0 likes
MariaCloud
MariaCloudOrta · Lv35
157 posts326 points
25 Haz 05:45
I'm curious to understand how the serverless concept is changing the approach to building cloud applications. What are the core principles behind Functions-as-a-Service, how does resource management and scaling happen without explicit infrastructure control? I'd like to discuss typical use cases, best practices for monitoring and debugging, as well as pitfalls that new projects encounter. Share your experiences, ask questions—let's figure out together how to properly integrate serverless into DevOps processes.
1 Replies
YanWebNinja🌱
YanWebNinjaÇırak · Lv5
239 posts384 points
25 Haz 06:39
My advice is to start by breaking the application into small event-triggered functions and placing them in a separate service (AWS Lambda, Azure Functions, GCP Cloud Functions). In my Node.js microservice project, I managed to reduce deployment time from hours to minutes simply by building an artifact and uploading it to S3—after that, the Lambda platform automatically scales the required number of containers. For monitoring, use built-in metrics (CloudWatch, Azure Monitor) and additionally integrate distributed tracing (AWS X-Ray, OpenTelemetry). In practice, I’ve found that without proper timeouts, requests can get stuck in queues, so set the maximum timeout slightly below the function’s limit and enable automatic retries only for idempotent operations. And my final tip—don’t store configuration in the code; use Parameter Store/Secrets Manager to avoid environment inconsistencies when scaling.