Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Intelligence View
⚡ tsecurity.de Intelligence

The Gamedev Server That Broke at 300 Concurrent Hunters and How We Fixed It

The Problem We Were Actually Solving The hunt engine ran on Veltrix 1.6, a LuaJIT micro-framework we had bolted together in three weeks so the art team could script events. Every hunter spawned a coroutine, every coroutine did an EVALSHA…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




The Problem We Were Actually Solving



The hunt engine ran on Veltrix 1.6, a LuaJIT micro-framework we had bolted together in three weeks so the art team could script events. Every hunter spawned a coroutine, every coroutine did an EVALSHA against Redis to atomically award loot, then wrote the result to a single hunt_session table using Postgres 12 with fsync=on.



At 300 hunters the coroutine scheduler was still fine, but the Redis call grew from 0.4 ms to 42 ms when the connection pool had 20 active slots. We watched RESP_PROTOCOL_ERROR spike, exactly 413 times in sixty seconds. Postgres autovacuum started at 60 s intervals because the loot table churned two million rows per day, and each freeze added 400–600 ms to INSERT latency. The engines P99 dropped to 1.8 s, then clients started timing out.



What we needed was a story boundary that could absorb a 100× traffic spike without re-architecting the whole hunt script engine.






What We Tried First (And Why It Failed)



First, we upgraded Redis to 7.0 and enabled pipelining inside the Lua script. That dropped EVALSHA to 6 ms, but now the coroutine scheduler itself became the bottleneck—LuaJIT coroutines are cheap, but 3 400 of them suspending on a 6 ms Redis call created 20 k context switches per second. The kernel showed run queue 22 with 85 % steal time on the bare-metal box.



Next, we split the hunt session into two tables: hunt_session_metadata and hunt_session_loot. We added an index on (hunter_id, hunt_id) and turned fsync off for the metadata table. Autovacuum still ran, but the freeze time fell to 80 ms. The P99 latency dropped to 550 ms—good, but still above the 200 ms SLA we promised streamers.



Then we tried a managed Postgres with PgBouncer in transaction mode. For 300 hunters the latency looked perfect, but when traffic climbed to 3 000 hunters the Bouncer hit max_client_conn=100 and started rejecting connections. The error message was pgbouncer 1.17.0, ERROR rejecting connection because server b1 has 101 active connections.



We realized we had optimized for the wrong layer: the bottleneck wasnt the database, it was the LuaJIT engine treating each hunter as if it were a persistent coroutine. The engine assumed state would fit in RAM, but at 3 000 hunters the RSS grew to 8 GB and the allocator started stalling.






The Architecture Decision



We drew an explicit service boundary at the LuaJIT boundary.



Every hunt became a stateless, short-lived process called hunt_worker. Instead of spawning coroutines, we spawned fork-exec hunt_worker with the hunter_id as the only argument. hunt_worker ran a single LuaJIT VM, executed the treasure script in <50 ms, and exited. No context switching, no connection pooling inside the worker.



The hunt_worker image itself is a Docker multi-stage build with LuaJIT 2.1, the compiled hunt bytecode, and a stripped-down musl libc. We push it to our private ECR repo tagged with the bytecode hash. The worker starts in 8 ms and dies in 50 ms—perfect for scaling to zero when traffic drops.



We placed hunt_worker behind an Envoy proxy that uses consistent hashing on hunter_id to route sessions to the same worker pod. If a pod dies, Envoy retries on another pod; the proxy guarantees at-least-once delivery so hunt_worker can be idempotent.



On the persistence side we moved loot writes out of the hunt session table entirely. hunt_worker emits a single row to a firehose-style event table loot_events (hunter_id, hunt_id, loot_id, timestamp) via a fire-and-forget HTTP POST to an internal Kafka REST proxy. A separate aggregator service reads the stream and materializes the hunt_session table every fifteen minutes. This gives us eventual consistency on hunt progress while keeping the P99 write latency to 12 ms.



We chose Kafka REST proxy (Confluent 7.5) over Kafka binary protocol because our ingress tier already speaks HTTP. The REST proxy buffers writes for 10 ms before flushing to the broker; at 3 000 hunters we observed 2.3 MB/s ingress with zero broker-side backpressure.



The entire worker layer autoscales via KEDA using the envoy_hunter_requests_per_second metric exported by Envoy. We set the scale target to 500 RPS per pod, and the HPA checks every fifteen seconds. When traffic drops to zero the pods scale to zero in 42 s.






What The Numbers Said After



We ran a synthetic load test at 10 000 concurrent hunters for twenty minutes. The worker layer spawned 1 200 pods on EKS (m6i.large nodes), each pod sustaining 8 RPS. The Envoy proxys consistent hash ensured 99.9 % of sessions never left their initial pod. The loot_events topic grew to 70 GB, but the aggregator consumed at 45 MB/s, keeping the consumer lag under 3 s.



P99 latency on the hunt API stayed at 72 ms, down from 1.8 s.

Redis connections dropped to 40 active slots; the EVALSHA latency never exceeded 3 ms.

Post

1. Sofort-Triage & Abwehrmaßnahmen

SOC Incident Playbook: Vulnerability Remediation & Verification
Syntax validiert (0 Fehler)
title: Detect Exploitation - The Gamedev Server That Broke at 300 Concurrent Hunters and How We Fixed It
id: eb21c50f-760c-47db-9475-f49f8f4e0223
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-26
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-26"
        description = "YARA Signature for "
    strings:
        $str = "The Gamedev Server That Broke " ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("The Gamedev Server That Broke at 300 Con")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*The Gamedev Server That Broke at 300 Con*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "The Gamedev Server That Broke at 300 Con"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc

2. Cyber Threat Intelligence & Forensik

🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich The Gamedev Server That Broke at 300 Con.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten The Gamedev Server That Broke at 300 Concurrent Hunters and How We Fixed It

Thematisch verwandte Begriffe: Gamedev, Server, That, Broke · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-100539 | OpenClaw (npm package 'openclaw') before 2026.8.1 fails to revoke memor…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag