Tagged articles
7 articles
Page 1 of 1
DevOps Coach
DevOps Coach
Mar 23, 2026 · Cloud Native

How Distroless Images Cut Rust Service Startup from 8 s to 1.2 s

After building a fast Rust microservice, the team discovered Kubernetes pods took 8‑10 seconds to start due to Alpine‑based images; switching to minimal Distroless containers and static linking reduced the image size from 40 MB to 6.7 MB, cut cold‑start time to ~1.2 seconds, lowered memory usage, and improved security.

Container OptimizationDistrolessDocker
0 likes · 8 min read
How Distroless Images Cut Rust Service Startup from 8 s to 1.2 s
MaGe Linux Operations
MaGe Linux Operations
Sep 30, 2025 · Cloud Native

Boosting Docker CPU Utilization: From 30% to 90% in 3 Months

This article recounts a three‑month deep‑dive into Docker container performance, detailing how we identified root causes such as Java container‑awareness, CPU pinning, memory limits, I/O bottlenecks, and network overhead, and applied systematic tuning of cgroups, JVM flags, Docker Compose settings, and storage/network configurations to raise CPU usage to 90% and double throughput.

Container OptimizationDockerJVM
0 likes · 26 min read
Boosting Docker CPU Utilization: From 30% to 90% in 3 Months
Code Mala Tang
Code Mala Tang
Dec 4, 2024 · Cloud Native

7 Proven Dockerfile Tricks to Shrink Images and Speed Up Builds

Learn seven practical Dockerfile optimization techniques—from picking lightweight base images and reducing layers to leveraging cache, .dockerignore, environment variables, multi-stage builds, and locking dependency versions—to create smaller, faster, and more reliable container images.

Cloud NativeContainer OptimizationDevOps
0 likes · 6 min read
7 Proven Dockerfile Tricks to Shrink Images and Speed Up Builds
Java Architecture Diary
Java Architecture Diary
Sep 4, 2020 · Cloud Computing

Boost Java Cloud Run Performance: Proven JVM and Container Optimizations

Learn how to accelerate Java applications on Google Cloud Run by minimizing container image size, leveraging container-aware JVM settings, reducing thread usage, and applying Spring Boot-specific tweaks such as layered JARs, lazy initialization, and avoiding background tasks to cut startup latency and memory consumption.

Cloud RunContainer OptimizationDocker
0 likes · 17 min read
Boost Java Cloud Run Performance: Proven JVM and Container Optimizations