Serverless & Microservices

Functions, event buses, and resilient service meshes at scale.

  • 19 Tracked terms
  • Last 30 days Feed window

What this topic collects on

An article joins this feed when it matches these terms. Each one is also a search of its own.

Latest in Serverless & Microservices


dev.to > chrispybacondev > dockflare-docker-labels-cloudflare-tunnels-and-a-little-less-dashboard-clicking-3i29

DockFlare: Docker labels, Cloudflare Tunnels, and a little less dashboard clicking

2+ hour, 35+ min ago   (792+ words) I wanted to share a project I started in 2025 to solve something that kept getting on my nerves in my own homelab. Every time I deployed another container, I found myself back in the Cloudflare dashboard. Add a hostname, point…...


dev.to > wantsvibes > serverless-execution-architecture-how-platforms-start-functions-without-persistent-processes-52oh

Serverless Execution Architecture: How Platforms Start Functions Without Persistent Processes

6+ hour, 19+ min ago   (142+ words) When designing distributed systems, engineers must weigh the operational overhead of persistent infrastructure against the runtime unpredictability of serverless execution. FaaS platforms eliminate idle capacity costs by scaling down to zero, but they trade away deterministic latency profiles and continuous…...


dev.to > andriiboyko > aws-step-functions-vs-camunda-for-sagas-two-orchestrators-different-blast-radii-4l7l

AWS Step Functions vs Camunda for Sagas: Two Orchestrators, Different Blast Radii

7+ hour, 34+ min ago   (39+ words) Here's a trap I've watched smart teams walk into. They pick a saga orchestrator by comparing the two... Tagged with aws, architecture, microservices, saga....


dev.to > paganini2008 > turn-a-spring-boot-app-into-a-distributed-cron-cluster-3pd0

Turn a Spring Boot app into a distributed cron cluster

7+ hour, 33+ min ago   (343+ words) @Scheduled is fine until it isn't.... Tagged with architecture, java, opensource, springboot....


infoq.com > news > 2026 > 09 > lambda-90-minute-timeout

AWS Lambda Pushes Serverless Toward Long-Running Workloads

1+ day, 16+ hour ago   (656+ words) Lily Mara explains how to avoid high-risk software rewrites through incremental FFI refactoring. She shares how engineering teams can replace Python bottlenecks with Rust via PyO3, demonstrating how to achieve dramatic function-level speedups, seamless integration testing, and meaningful infrastructure cost savings…...


dev.to > beefedai > diagnosing-and-fixing-flaky-microservice-tests-4iag

Diagnosing and Fixing Flaky Microservice Tests

10+ hour, 10+ min ago   (337+ words) Flaky tests are the silent productivity tax on microservice teams: they consume developer time, erode trust in CI, and hide real defects behind intermittent noise. I treat test flakiness the same way I treat production incidents—measure impact, isolate scope,…...


dev.to > irosh-perera > i-built-a-spring-boot-starter-to-handle-duplicate-api-requests-2m4j

I Built a Spring Boot Starter to Handle Duplicate API Requests

10+ hour, 40+ min ago   (342+ words) A client sends a request to create an order. The server processes it, but the connection drops before the response reaches the client. The client retries. How can the API recognise that retry and avoid creating another order? This is…...


dev.to > mtahir27 > edge-computing-in-practice-lowering-latency-with-cloudflare-workers-5gj8

Edge Computing in Practice: Lowering Latency with Cloudflare Workers

12+ hour, 35+ min ago   (171+ words) Cloudflare Workers provide a serverless execution environment directly on Cloudflare's global edge network. This is not merely a CDN; it's a compute platform that runs JavaScript, TypeScript, or WebAssembly code in isolated V8 isolates. The key architectural advantages are: Let's walk…...


dev.to > ailaohuyu > what-breaks-when-you-self-host-a-turn-server-coturn-symptom-cause-fix-g10

What breaks when you self-host a TURN server (coturn — symptom, cause, fix)

14+ hour, 12+ min ago   (1592+ words) The first article in this series was the traps inside the code. The second was the layer underneath — the candidates that lie, the UDP firewall nobody looks at, the reverse proxy that reaps an idle socket. This one is about…...


dev.to > bilal_bukhari_75aeb34a969 > presigned-urls-and-event-notifications-with-s3-and-sns-56m0

Presigned URLs and Event Notifications with S3 and SNS

21+ hour, 30+ min ago   (1250+ words) Up until now, every file I've touched in S3 has gone through the console, or through a bucket policy that made things public for everyone. Today's problem was different: how do you let one specific person upload or download one specific…...