Introducing LiteFS

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

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
featured
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.
www.influxdata.com
featured
  1. fuse

    FUSE library for Go.  go get bazil.org/fuse   (by bazil)

    Yes, FUSE adds overhead. However,

    1. kernel page cache fully removes the read overhead for in-memory pages

    2. There's a FUSE_PASSTHROUGH mode that removes that overhead for all reads & writes. I haven't studied exactly what writes LiteFS needs to observe (just journal vs all data writes), but at least for reads it seems to pass them straight through. We could well submit a FUSE_PASSTHROUGH_READ patch to the kernel, and use that to remove all read overhead. The patch should be trivial, since the full FUSE_PASSTHROUGH mode is there already.

    Disclaimer: I wrote the FUSE framework LiteFS uses, https://bazil.org/fuse

    https://source.android.com/docs/core/storage/fuse-passthroug...

  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. litestream

    Streaming replication for SQLite.

    Thios is distributed SQLite 3, running (I assume at least partially managed?) Litestream[0] for you. Which is pretty cool!

    What I'd like to have seen is how this compares to things like rqlite[1] addressed directly in the article

    [0]: https://litestream.io/

  4. litefs

    FUSE-based file system for replicating SQLite databases across a cluster of machines

    The TH3 test is proprietary and, IIRC, it might only be available to SQLite Consortium members and that's $125k/year. We do pay for SQLite support at Fly.io but not quite to that level.

    We do have plans to run against the Tcl test suite[1] although most of that test suite is not applicable to LiteFS since it tests higher level constructs.

    Since LiteFS acts on the raw pages, it really just functions similar to a VFS. Out of the 130K source lines of code in SQLite, only 4.8k are for the Unix VFS. As such, the testing coverage from the SQLite test suite mostly tests non-VFS code.

    [1]: https://github.com/superfly/litefs/issues/17

  5. rqlite

    The lightweight, user-friendly, distributed relational database built on SQLite.

  6. wunderbase

    Serverless GraphQL Database built on top of Firecracker, SQLite and Prisma

    Sound like a drop in solution to add high availability to WunderBase (https://github.com/wundergraph/wunderbase).

  7. 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
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Why SQLite Is Taking over with Brian Holt and Marco Bambini

    5 projects | news.ycombinator.com | 12 Jun 2024
  • LiteSync – Easy synchronization of SQLite databases

    4 projects | news.ycombinator.com | 5 Jan 2023
  • Ask HN: What is your distributed and fault-tolerant PostgreSQL setup?

    2 projects | news.ycombinator.com | 26 Dec 2022
  • Litestream doesn't do SQLite replication anymore (LiteFS does)

    9 projects | news.ycombinator.com | 14 Oct 2022
  • Good embedded database with replication support?

    3 projects | /r/golang | 9 Sep 2022

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