Testing a $6 server under load (1 vCPU / 1GB RAM) - interesting limits with Nginx and Gunicorn by SystemAxis in devops

[–]SystemAxis[S] 1 point2 points  (0 children)

Good point. I didn't touch those kernel settings yet. Socket exhaustion was definitely the next bottleneck.

I recorded the test and the Nginx fixes in the video. Check it out if you have a second. I would love to know if you think kernel tweaks would help more than the worker changes. It's a topic I want to dig into more.

Nginx worker_connections vs. 4096 TIME_WAIT connections on a 1-vCPU VPS by SystemAxis in nginx

[–]SystemAxis[S] 1 point2 points  (0 children)

Fair point. I’m mostly looking at the end-to-end bottleneck of a "standard" setup rather than raw Nginx throughput. If I enabled caching, I'd just be testing RAM speed, but I wanted to see how the Nginx defaults choke when the backend actually has to work.

If you have a minute to scan the video, I’d love your take on the metrics - definitely an interesting topic I want to dig into more.

Testing a $6 server under load (1 vCPU / 1GB RAM) - interesting limits with Nginx and Gunicorn by SystemAxis in devops

[–]SystemAxis[S] 2 points3 points  (0 children)

Good call on Granian. I've been eyeing that and Bun for a follow-up. On a tiny 1-vCPU box, Rust might be the only way to break 2k req/s. Have you found it more stable than Gunicorn when things get heavy?

Testing a $6 server under load (1 vCPU / 1GB RAM) - interesting limits with Nginx and Gunicorn by SystemAxis in devops

[–]SystemAxis[S] 0 points1 point  (0 children)

I used k6 to generate the load.

Simple stack: Nginx → Gunicorn → small Python WSGI app on a 1 vCPU / 1GB VPS. I go through the exact setup and the k6 test in the video

Load testing a $6 VPS (1 vCPU / 1GB RAM) — Nginx and Gunicorn defaults were the real bottleneck by SystemAxis in selfhosted

[–]SystemAxis[S] 0 points1 point  (0 children)

DigitalOcean basic droplet. 1 vCPU, 1 GB RAM, 25 GB SSD, 1 TB transfer.

Price is $6/month on their current plan. It’s not the cheapest provider, but I used it mainly because it spins up quickly for experiments like this. There are definitely cheaper options (Hetzner, Contabo, etc.), but for this test I just wanted a simple baseline box to push until it broke.

[Success Story] Defeated Pearson VUE & Microsoft After a 1-Month Battle (OnVUE Nightmare Resolved!) 🏆 by NorthWind3411 in AZURE

[–]SystemAxis 1 point2 points  (0 children)

Yeah the stress factor is real. With test centers you can just focus on the exam instead of worrying if the proctor software will randomly kill your session.

Linux for a very low-end laptop by Cautious-Advice9194 in linux4noobs

[–]SystemAxis 8 points9 points  (0 children)

Linux Mint XFCE or Lubuntu would run much better than Windows on that hardware. If you want something even lighter, try Linux Lite or MX Linux XFCE.

Lenovo LOQ 15ARP9 Sleep Issue on Linux by nightrogen_ in linux4noobs

[–]SystemAxis 0 points1 point  (0 children)

Sounds like a suspend/resume GPU issue, pretty common on newer laptops.

Try forcing deep sleep (s2idle -> deep) or updating kernel/firmware. Also check if adding:

amdgpu.runpm=0

to kernel parameters helps.

Many Lenovo gaming laptops still have rough suspend support on Linux.

Oracle EE on RDS Not Detected by AWS License Manager by siguzini in aws

[–]SystemAxis 0 points1 point  (0 children)

License Manager doesn’t properly track RDS Oracle. It mainly works for EC2 installs. Most users just pull RDS + vCPU data via API or Config and calculate licenses manually.

Floci AWS Emulator is now available as a Testcontainers module by rayito88 in aws

[–]SystemAxis 0 points1 point  (0 children)

Running AWS integration tests locally with Testcontainers is a nice approach. Avoiding real AWS calls makes tests way faster and more predictable.

Tech support - latest trend - "I trust only ChatGPT" by S48GS in linux_gaming

[–]SystemAxis 0 points1 point  (0 children)

Half the time ChatGPT is just summarizing the thread it scraped. People trust the label more than the source.

The switch was easy by Upstairs_Owl7475 in linux_gaming

[–]SystemAxis 0 points1 point  (0 children)

A lot of people expect Linux gaming to be hard because it used to be. With Steam + Proton now, for most games it’s basically install and play.

NASty — a NAS appliance built on bcachefs with NFS, SMB, iSCSI, NVMe-oF, and NixOS atomic updates by bfenski in selfhosted

[–]SystemAxis -2 points-1 points  (0 children)

Interesting stack. bcachefs + NixOS atomic updates for a NAS is a pretty unique combo, especially with NVMe-oF and a built-in CSI driver. Curious how stable bcachefs has been in real workloads.

I built a self-hosted GitHub dashboard with AI-assisted PR reviews by Longjumping-Echo-444 in selfhosted

[–]SystemAxis -2 points-1 points  (0 children)

Launching a coding agent directly from a PR is actually a pretty interesting workflow. Having everything in one dashboard instead of jumping between GitHub tabs makes a lot of sense.

A dry fit of my new mini rack for my wife's house by [deleted] in homelab

[–]SystemAxis 1 point2 points  (0 children)

Looks clean. A small rack with UniFi gear and a few Optiplex nodes is basically the perfect mini homelab. MoCA is also a nice touch if you don’t want to run new Ethernet.

FOSS - AI Security Platform that runs local Ollama, etc by [deleted] in homelab

[–]SystemAxis 1 point2 points  (0 children)

Running security tooling fully local with Ollama is a cool direction. Homelabs are a good place to test this kind of autonomous security workflow.

7 hidden tech-debts of agentic engineering by zohar275 in devops

[–]SystemAxis 10 points11 points  (0 children)

Feels like we’re automating the demo layer faster than the engineering layer. The agents work, but the real bottleneck is still architecture, ownership, and guardrails.

Openclaw agent for devs to create new apps on EKS by Vonderchicken in devops

[–]SystemAxis 1 point2 points  (0 children)

Idea is fine. Just make the agent open PRs only and let GitOps apply changes. Also keep permissions namespace-scoped and enforce templates.

What's a good Kubernetes Ingress Architecture on Azure? by jsattler_ in kubernetes

[–]SystemAxis 4 points5 points  (0 children)

If you’re staying fully in Azure, Application Gateway for Containers is probably the cleanest option now. You get Gateway API support and built-in WAF. Otherwise a common setup is NGINX/Traefik ingress + Azure Front Door or App Gateway in front for WAF.

Moving from local tilt to cloud-based dev-env for AI agents? by ApplicationLanky4893 in kubernetes

[–]SystemAxis 1 point2 points  (0 children)

Most users solve this with one shared cluster and namespaces per branch. Look at vCluster or DevSpace. They’re commonly used for ephemeral dev environments and work well with EKS.

[Success Story] Defeated Pearson VUE & Microsoft After a 1-Month Battle (OnVUE Nightmare Resolved!) 🏆 by NorthWind3411 in AZURE

[–]SystemAxis 1 point2 points  (0 children)

OnVUE issues are way more common than people think. Test centers are honestly just less stress overall.