Overview

Monolake

Monolake is a framework for developing high-performance network services like proxies and gateways. It is built from the ground up as a blank slate design, starting with a custom async runtime called Monoio that has first-class support for the io_uring Linux kernel feature.

While the most widely used Rust async runtime is Tokio, which is an excellent and high-performance epoll/kqueue-based runtime, Monolake takes a different approach. The monoio runtime developed by Bytedance is designed with a thread-per-core model in mind, allowing Monolake to extract maximum performance from io_uring’s highly efficient asynchronous I/O operations.

By building Monolake on this novel runtime foundation, the team was able to incorporate new first-class support for io_uring throughout the ecosystem. This includes io_uring-specific IO traits and a unique service architecture that differs from the popular Tower implementation. Monolake also includes io_uring-optimized implementations for protocols like Thrift and HTTP.

The Monolake framework has been used to build various high-performance proxies and gateways, and it is actively deployed in production at ByteDance. Its use cases are wide-ranging and include:

  • Application Gateways: For protocol conversion, such as HTTP to Thrift
  • Security Gateways: Providing pseudonymization for gRPC and Thrift RPCs
  • Service ingress controller: Serves as ingress controller for FaaS services

Monolake Proxy

Monolake Proxy is a reference implementation that leverages the various components within the Monolake framework to build a high-performance HTTP and Thrift proxy. This project serves as a showcase for the unique features and capabilities of the Monolake ecosystem. By utilizing the efficient networking capabilities of the monoio-transports crate, the modular service composition of service-async, and the type-safe context management provided by certain-map, Monolake Proxy demonstrates the practical application of the Monolake framework. Additionally, this reference implementation allows for the collection of benchmarks, enabling comparisons against other popular proxy solutions like Nginx and Envoy.

Performance

Test environment

  • AWS instance: c6a.8xlarge
  • CPU: AMD EPYC 7R13 Processo, 16 cores, 32 threads
  • Memory: 64GB
  • OS: 6.1.94-99.176.amzn2023.x86_64, Amazon Linux 2023.5.20240805
  • Nginx: nginx/1.24.0

Request Per Second (RPS) vs. Body Size

HTTPS HTTP
image image

Concurrency performance

HTTPS HTTP
image image
  • Monoio: A high-performance thread-per-core io_uring based async runtime
Crate Description
monoio-transports A foundational crate that provides high-performance, modular networking capabilities, including connectors and utilities for efficient network communications
service-async A foundational crate that introduces a refined Service trait with efficient borrowing and zero-cost abstractions, as well as utilities for service composition and state management
certain-map A foundational crate that provides a typed map data structure, ensuring the existence of specific items at compile-time, useful for managing data dependencies between services
monoio-thrift Monoio native, io_uring compatible thrift implementation
monoio-http Monoio native, io_uring compatible HTTP/1.1 and HTTP/2 implementation
monoio-nativetls The native-tls implementation compatible with monoio
monoio-rustls The rustls implementation compatible with monoio

Last modified November 14, 2024 : Add FaaS ingress controller use case (#1171) (26300cc)