back to home

bytedance / monoio

Rust async runtime based on io-uring.

4,914 stars
283 forks
74 issues
RustRenderScript

AI Architecture Analysis

This repository is indexed by RepoMind. By analyzing bytedance/monoio in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.

Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.

Source files are only loaded when you start an analysis to optimize performance.

Embed this Badge

Showcase RepoMind's analysis directly in your repository's README.

[![Analyzed by RepoMind](https://img.shields.io/badge/Analyzed%20by-RepoMind-4F46E5?style=for-the-badge)](https://repomind.in/repo/bytedance/monoio)
Preview:Analyzed by RepoMind

Repository Overview (README excerpt)

Crawler view

Monoio A thread-per-core Rust runtime with io_uring/epoll/kqueue. [![Crates.io][crates-badge]][crates-url] [![MIT/Apache-2 licensed][license-badge]][license-url] [![Build Status][actions-badge]][actions-url] [![Codecov][codecov-badge]][codecov-url] [中文说明][zh-readme-url] [crates-badge]: https://img.shields.io/crates/v/monoio.svg [crates-url]: https://crates.io/crates/monoio [license-badge]: https://img.shields.io/crates/l/monoio.svg [license-url]: LICENSE-MIT [actions-badge]: https://github.com/bytedance/monoio/actions/workflows/ci.yml/badge.svg [actions-url]: https://github.com/bytedance/monoio/actions [codecov-badge]: https://codecov.io/gh/bytedance/monoio/branch/master/graph/badge.svg?token=3MSAMJ6X3E [codecov-url]: https://codecov.io/gh/bytedance/monoio [zh-readme-url]: README-zh.md Design Goal Monoio is a pure io_uring/epoll/kqueue Rust async runtime. Part of the design has been borrowed from Tokio and Tokio-uring. However, unlike Tokio-uring, Monoio does not run on top of another runtime, rendering it more efficient. Moreover, Monoio is designed with a thread-per-core model in mind. Users do not need to worry about tasks being or , as thread local storage can be used safely. In other words, the data does not escape the thread on await points, unlike on work-stealing runtimes such as Tokio. This is because for some use cases, specifically those targeted by this runtime, it is not necessary to make task schedulable between threads. For example, if we were to write a load balancer like NGINX, we would write it in a thread-per-core way. The thread local data does not need to be shared between threads, so the and do not need to be implemented in the first place. As you may have guessed, this runtime is primarily targeted at servers, where operations are io-bound on network sockets, and therefore the use of native asynchronous I/O APIs maximizes the throughput of the server. In order for Monoio to be as efficient as possible, we've enabled some unstable Rust features, and we've designed a whole new IO abstraction, which unfortunately may cause some compatibility problems. Our benchmarks prove that, for our use-cases, Monoio has a better performance than other Rust runtimes. Quick Start To use monoio, you need rust 1.75. If you already installed it, please make sure it is the latest version. Also, if you want to use io_uring, you must make sure your kernel supports it(5.6+). And, memlock is configured as a proper number. If your kernel version does not meet the requirements, you can try to use the legacy driver to start, currently supports Linux and macOS(ref here). 🚧Experimental windows support is on the way. Here is a basic example of how to use Monoio. You can find more example code in of this repository. Limitations • On Linux 5.6 or newer, Monoio can use uring or epoll as io driver. On lower versions of Linux, it can only run in epoll mode. On macOS, kqueue can be used. Other platforms are currently not supported. • Monoio can not solve all problems. If the workload is very unbalanced, it may cause performance degradation than Tokio since CPU cores may not be fully utilized. Contributors Thanks for their contributions! Associated Projects • local-sync: A thread local channel. • monoio-tls: TLS wrapper for Monoio. • monoio-codec: Codec utility for Monoio. HTTP framework and RPC framework are on the way. Licenses Monoio is licensed under the MIT license or Apache license. During developing we referenced a lot from Tokio, Mio, Tokio-uring and other related projects. We would like to thank the authors of these projects.