Kubernetes

44 articles

backend6 min read

Auto-Scaling Gone Wrong — When Your Scaler Makes Things Worse

Auto-scaling is supposed to save you during traffic spikes. But misconfigured scalers can thrash (scaling up and down every few minutes), scale too slowly to help, or scale to so many instances they exhaust your database connection pool. Here''s how to tune auto-scaling to actually work.

Read →
ebpf7 min read

eBPF for Backend Engineers — Zero-Instrumentation Observability

eBPF runs sandboxed programs in the Linux kernel to observe traffic and performance without modifying application code. Learn Cilium for network visibility, Hubble for service-to-service flows, Parca for continuous profiling, and bpftrace for ad-hoc investigation.

Read →
backend6 min read

Load Balancer Misconfiguration — The Hidden Single Point of Failure

A misconfigured load balancer can route all traffic to one server while others idle, drop connections silently, or fail to detect unhealthy backends. These problems are invisible until they cause production incidents. Here are the most dangerous LB misconfigurations and how to fix them.

Read →