Skip to content

Latest commit

 

History

History
206 lines (166 loc) · 9.02 KB

File metadata and controls

206 lines (166 loc) · 9.02 KB

Ruvoy

Ruby, carried by Envoy.

Rust 2024 Ruby 4.0.5 Envoy 1.39.0 Apache License 2.0

English | 简体中文 | 日本語

Ruvoy is a Ruby application runtime inside Envoy. Envoy speaks HTTP, Ruby speaks Rack, and owned Rust messages bridge the two.

Status

Ruvoy is a proof of concept. The data path — request dispatch, streaming responses with backpressure, cancellation, and admission control — is implemented and covered by the test scripts, and the performance claim below was measured under a pre-registered protocol. It has not been proven in production: each process runs a single Ruby execution context, configuration reload inside a running Envoy has not been verified, and no long-duration soak has been run. Interfaces may change.

Features

  • Envoy-native HTTP — HTTP/1.1, HTTP/2, connections, timeouts, and downstream lifecycle remain under Envoy's control.
  • Rack applications — load an ordinary config.ru and receive a Rack environment built from the Envoy request.
  • Fiber concurrency — scheduler-aware Ruby I/O overlaps on a dedicated CRuby owner thread without entering Ruby from Envoy workers.
  • Owned-data boundary — only Rust-owned requests and responses cross threads; Ruby objects never do.
  • Streaming responses — response bodies are delivered chunk by chunk as the application produces them, with downstream backpressure applied to the Ruby producer instead of buffering.
  • Bounded admission — request-count and aggregate request-body budgets reject excess work before it reaches Ruby.
  • No upstream HTTP hop — Rack calls do not require a loopback connection to a separate Ruby application server.

With and without Ruvoy

Without Ruvoy With Ruvoy
Request path Envoy → upstream HTTP → Ruby server Envoy → owned Rust message → Ruby
Ruby host Separate server process or processes Dedicated CRuby owner thread inside Envoy
Protocol handoff Request is serialized onto another HTTP connection Request crosses the worker boundary as owned data
I/O concurrency Server threads or workers Async fibers on the Ruby owner thread
Failure boundary Envoy and Ruby are separate processes Envoy and Ruby share one process
CPU-bound Ruby Multiple Ruby workers can use multiple cores One CRuby VM remains limited by the GVL

Ruvoy is designed for scheduler-aware I/O and short CPU-light Rack work. It does not make CPU-bound Ruby execute in parallel.

Architecture

client
  → Envoy worker
  → owned Rust request
  → CRuby owner thread
  → Async Fiber
  → owned Rust response
  → original Envoy worker
  → client

Envoy workers never acquire a Ruby handle or enter the VM. The Ruby owner thread runs the Rack application, while the result is committed back onto the worker that owns the downstream stream.

Current scope

Ruvoy constructs the Rack environment, provides binary rack.input, preserves repeated response headers, consumes enumerable response bodies, and calls close when the body supports it.

Response bodies stream incrementally: headers are sent once and each chunk is forwarded as the application yields it, so the first bytes reach the client before the body is complete. A slow client applies backpressure to the Ruby producer rather than accumulating in memory, and a client that disconnects stops the enumeration and closes the body.

Request bodies are read completely before the application is called; request streaming is not implemented. Raw socket hijacking (rack.hijack) is not supported; the connection always belongs to Envoy.

Benchmarks

Environment

Component Configuration
Machine 4 vCPU, 32 GiB memory, x86_64
System Linux
Envoy 1.39.0, concurrency 1
Ruby 4.0.5
Rust 1.97.1
Rack 3.2.6
Load generator oha 1.15.0

Mixed stress

This run tested admission control, recovery, client cancellation, and resource stability. It used three complete cycles:

  • steady traffic: 45,000 HTTP/2 no-op requests, 6,000 HTTP/1.1 requests with a 200 ms wait, and 1,200 HTTP/1.1 requests with a 256 KiB body per cycle;
  • request-count overload: 15 seconds with at most 256 admitted requests;
  • aggregate-body overload: 15 seconds with a 64 MiB admitted-body budget;
  • client cancellation: 128 deliberately cancelled requests;
  • recovery: 20,000 no-op and 2,000 waiting requests per cycle.
Result Value
Total requests 2,503,763
HTTP 200 251,400
Expected overload HTTP 503 2,252,363
Transport errors 0
Steady and recovery failures 0
Control-listener maximum latency 35.615 ms
File descriptors after every cycle 59
Ruby live-heap change, recovered cycle 1 → 3 +2 slots
Peak RSS during body overload 489,332 KiB

Every steady and recovery request returned HTTP 200. All HTTP 503 responses were generated during deliberate overload and are reported as rejected work, not successful throughput.

The load generator ran on the same machine, and the server did not saturate the host CPU. This result therefore supports resilience and bounded-overload claims only; it is not a maximum-throughput measurement.

Server comparison

A fixed-commit comparison of Ruvoy, direct Falcon 0.55.6, direct Puma 7.2.0, and Envoy → Puma, all serving the same Rack fixture:

  • oha ran on a separate 2 vCPU host over a local network (RTT ≈ 0.03 ms), so the load generator never competed with the servers for CPU.
  • Each measurement is 10 s warm-up plus 30 s under load; 7 rounds per cell with the architecture order rotated every round.
  • A round only counts if every request returned HTTP 200 with zero transport errors. Reported values are medians with relative standard deviation.
  • Every architecture runs one Ruby execution context: Puma in single mode with 100 threads, one Falcon instance, one Ruvoy owner thread, and Envoy concurrency 1.
  • Judgement was fixed before the run: an advantage is claimed only when both throughput and p99 improve by more than the larger of 5% and the observed round-to-round variance.

No-op Rack application, HTTP/1.1, 100 connections, plaintext:

Server RPS median (RSD) p50 ms p99 ms CPU RSS MiB
Ruvoy 31,270 (1.9%) 3.06 5.01 189% 94
Falcon 12,716 (0.5%) 7.67 9.63 99% 83
Puma 10,410 (5.5%) 8.84 20.96 87% 127
Envoy → Puma 9,754 (4.0%) 9.92 17.63 159% 185

The same workload with TLS 1.3, terminated by Envoy for Ruvoy and Envoy → Puma and in-process by Falcon and Puma:

Server RPS median (RSD) p50 ms p99 ms CPU RSS MiB
Ruvoy 32,065 (2.9%) 2.98 4.85 192% 95
Falcon 11,401 (3.0%) 8.73 10.61 99% 91
Envoy → Puma 9,674 (4.4%) 9.97 17.44 162% 191
Puma 8,728 (6.7%) 9.87 25.52 87% 148

Falcon is the comparison that isolates the architecture: both are fiber-per-request, so the difference is carrying requests as owned data inside one process instead of over a loopback HTTP hop. Against Falcon, Ruvoy holds +146% throughput with −48% p99 in plaintext and +181% with −54% under TLS — both past the pre-registered noise threshold. Against Envoy → Puma the margin is +221% and +231%.

Three honest qualifications:

  • The no-op scenario measures per-request framework overhead, so these are ceiling numbers. As real application time grows, the relative margin shrinks: with a 200 ms simulated wait at 100 connections, all four servers sit at the same ~495 RPS concurrency limit.
  • Ruvoy's CPU column includes the Envoy worker handling HTTP in the same process (~1.9 cores versus Falcon's ~1.0). Per core the margin is roughly +29%; the rest comes from pairing the Ruby thread with a proxy-grade HTTP front end.
  • A 1 MiB-response scenario was also run and produced no ranking: above ~1,000 such responses per second all four architectures converged on the network path's throughput limit with 59–96% variance, so that scenario measures the link, not the servers.

Measurements were produced by scripts/run-benchmark.sh, which enforces the protocol above — remote load generation, rotation, warm-up, per-round validation, and the pre-registered judgement — and writes raw oha output, CPU and RSS samples, and the generated summary for every run.

License

Apache License 2.0. See LICENSE.