glommio

Glommio is a thread-per-core crate that makes writing highly parallel asynchronous applications in a thread-per-core architecture easier for rustaceans. (by DataDog)

Glommio Alternatives

Similar projects and alternatives to glommio

  1. rust

    2,858 glommio VS rust

    Empowering everyone to build reliable and efficient software.

  2. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  3. bevy

    595 glommio VS bevy

    A refreshingly simple data-driven game engine built in Rust

  4. tauri

    512 glommio VS tauri

    Build smaller, faster, and more secure desktop and mobile applications with a web frontend.

  5. Redis

    For developers, who are building real-time data-driven applications, Redis is the preferred, fastest, and most feature-rich cache, data structure server, and document and vector query engine.

  6. tokio

    222 glommio VS tokio

    A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ...

  7. actix-web

    Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.

  8. libuv

    Cross-platform asynchronous I/O

  9. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  10. dragonfly

    A modern replacement for Redis and Memcached

  11. pest

    47 glommio VS pest

    The Elegant Parser (by pest-parser)

  12. tokio-uring

    An io_uring backed runtime for Rust

  13. uniffi-rs

    a multi-language bindings generator for rust

  14. Seastar

    29 glommio VS Seastar

    High performance server-side application framework

  15. monoio

    27 glommio VS monoio

    Rust async runtime based on io-uring.

  16. cats-effect

    The pure asynchronous runtime for Scala

  17. MIO

    22 glommio VS MIO

    Metal I/O library for Rust.

  18. cachegrand

    cachegrand - a modern data ingestion, processing and serving platform built for today's hardware

  19. async-std

    Async version of the Rust standard library

  20. aquatic

    High-performance open BitTorrent tracker (UDP, HTTP, WebTorrent)

  21. tcpproxy

    A cross-platform TCP proxy in tokio and rust (by mqudsi)

  22. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better glommio alternative or higher similarity.

glommio discussion

Log in or Post with

glommio reviews and mentions

Posts with mentions or reviews of glommio. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-05-13.
  • OpenTelemetry Protocol with Apache Arrow
    2 projects | news.ycombinator.com | 13 May 2025
  • Gazette: Cloud-native millisecond-latency streaming
    6 projects | news.ycombinator.com | 7 Aug 2024
    I feel a bit paralyzed by Fear Of Missing Io_Uring. There's so much awesome streaming stuff about (RisingWave, Materialize, NATS, DataFusion, Velox, many more), but it all feels built on slower legacy system libraries.

    It's not heavily used yet, but Rust has a bunch of fairly high visibility efforts. Situation sort of feels similar with http3, where the problem is figuring out what to pick. https://github.com/tokio-rs/tokio-uring https://github.com/bytedance/monoio https://github.com/DataDog/glommio

  • I want to share my latest hobby project, dbeel: A distributed thread-per-core nosql db written in rust
    3 projects | /r/rust | 13 Nov 2023
    I used glommio as the async executor (instead of something like tokio), and it is wonderful. For people wondering whether it's "good enough" or to use C++ and seastar (as I have thought about a lot before starting this project), take the leap of faith, it's fast - both in terms of run time and to code.
  • The State of Async Rust
    9 projects | news.ycombinator.com | 25 Sep 2023
    My understanding is you always need a runtime, somethings needs to drive the async flow. But there are others on the market, just not without the.. market domination... of tokio.

    https://github.com/smol-rs/smol looks promising simply for being minimal

    https://github.com/bytedance/monoio looks potentially easier to work with than tokio

    https://github.com/DataDog/glommio is built around linux io_uring and seems somewhat promising for performance reasons.

    I haven't played with any of these yet, because Tokio is unfortunately the path of least resistance. And a bit viral in how it's infected tings.

  • Learning Async Rust with Too Many Web Servers
    4 projects | news.ycombinator.com | 18 Aug 2023
    I think you missed one which is based on io_uring [1].

    In my benchmarks with a slightly tweaked version it was 2x faster than Nginx and and 30x faster than Python's SimpleHttpServer.

    [1] https://github.com/DataDog/glommio/blob/master/examples/hype...

  • How much reason is there to be multi-threaded in the k8s environment
    2 projects | /r/scala | 4 Jul 2023
    b) It's proven now e.g Seastar, Glommio that the fastest way to run a multi-threaded application is to have one instance with one thread pinned per CPU core. Then to have fibers/lightweight threads on top handling all of the asynchronous code. Your approach of lots of instances is the slowest so there will be a ton of unnecessary thread context-switching.
  • Why does Actix-web's handler not require Send?
    3 projects | /r/rust | 18 Jun 2023
    I assume Tokio itself, see e.g monoio or glommio, but also Seastar for C++.
  • How does async Rust work
    6 projects | /r/rust | 27 Apr 2023
    https://github.com/DataDog/glommio Rust thread per core library.
  • Use io_uring for network I/O
    11 projects | news.ycombinator.com | 12 Apr 2023
    > Few of us have really figured out io_uring. But that doesn't mean it is slower.

    seastar.io is a high level framework that I believe has "figured out" io_uring, with additional caveats the framework imposes (which is honestly freeing).

    Additionally the rust equivalent: https://github.com/DataDog/glommio

  • Is async runtime (Tokio) overhead significant for a "real-time" video stream server?
    5 projects | /r/rust | 8 Mar 2023
    This use case is perfect for https://github.com/DataDog/glommio which is a thread-per-core runtime that is appropriate for latency sensitive code.
  • A note from our sponsor - Stream
    getstream.io | 15 Jul 2025
    Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure. Learn more →

Stats

Basic glommio repo stats
31
3,335
3.6
3 months ago

Sponsored
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io

Did you know that Rust is
the 5th most popular programming language
based on number of references?