rqlite VS fuse

Compare rqlite vs fuse and see what are their differences.

fuse

FUSE library for Go.  go get bazil.org/fuse   (by bazil)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
rqlite fuse
112 7
14,862 1,550
1.3% 1.5%
9.9 0.0
2 days ago 4 months ago
Go Go
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

rqlite

Posts with mentions or reviews of rqlite. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-04.

fuse

Posts with mentions or reviews of fuse. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-05.
  • FUSE Filesystem
    3 projects | dev.to | 5 Jan 2023
    For this first implementation I used Go. After a reviewing some solutions I decided to use https://github.com/bazil/fuse. It seemed to be the easiest way to prototype.
  • Introducing LiteFS
    9 projects | news.ycombinator.com | 21 Sep 2022
    Often, the SQLite database would fit in RAM, and reads would be served straight from the page cache, with no overhead.

    Disclaimer: I wrote the FUSE framework LiteFS uses, https://bazil.org/fuse -- and I also have some pending performance-related work to finish, there...

  • I just upgraded to 13.1-RELEASE
    2 projects | /r/freebsd | 18 May 2022
    I'd love to upgrade but I rely on mounting my Google Drive via /dev/fuse and rclone. There was a post yesterday saying that is broken in 13.1-RELEASE and linking to a FreeBSD bug which links to a rclone bug which links to a bazil bug which seems to have no traction. Someone mentioned a commandline utility that can interact with gdrive but this seems like a pretty bad replacement. IIUC the FreeBSD devs' theory is that a new async system call path exposed a bug in rclone and the blame is there. Anyway, I'm still on 13.0 for now, unfortunately.
  • Just updated to 13.1-Release, some sort of rclone/fuse issue
    4 projects | /r/freebsd | 17 May 2022
    This was also reported to rclone where someone pointed out that the problem is with fuse lib on FreeBSD and as such is a FreeBSD fuse lib porting problem.
  • Distributed Systems Shibboleths
    3 projects | news.ycombinator.com | 2 May 2022
    > 'failed' state and the process itself leaving the accounting tables.

    Once again, that cannot be done until the parent process consumes the exit status. That's what the zombie is there for. Zombies don't take up much space.

    > Stuck mounts have a half solution (lazy unmounts) but even _that_ interface really also needs a timeout value after which operations on the target should be assumed to fail rather than return correctly.

    These days most NFS etc mounts are "soft mounts", that is operations will eventually time out.

    Lazy unmount doesn't really apply here, it makes the mountpoint disappear from the global namespace, but all existing open files remain untouched, and the mount lives as long as anything is still using it; it just removes the "entry point" to the mount.

    On today's Linux, it's up to each filesystem to provide abort/timeout mechanism. For timeouts, this is the right design, as demonstrated by macOS complications with FUSE. I do wish there was a common way to make things abort.

    There was a patch in circulation a long time ago, that could seamlessly switch all open FDs of any given mountpoint into a whole different filesystem named badfs. badfs would just return an error on any operation. As far as I know, that patch never got merged, probably because nobody ever got it working 100%.

    That kind of a DoS would require a local attacker, and then the victim to access a mountpoint owned by the attacker. Using FUSE, you could get a lot of processes hanging like that, for sure. I guess you could trap a mail delivery agent, if you still had a system where mail was delivered to users' home directories.

    However, forcibly aborting any FUSE mount is a single `echo 1 >/sys/fs/fuse/connection/NNNN/abort`, the only challenge is finding the right ID. (See https://github.com/bazil/fuse/blob/fb710f7dfd05053a3bc9516dd...)

What are some alternatives?

When comparing rqlite and fuse you can also consider the following projects:

dqlite - Embeddable, replicated and fault-tolerant SQL engine.

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

litestream - Streaming replication for SQLite.

cockroach - CockroachDB - the open source, cloud-native distributed SQL database.

fuse-filesystem - In memory filesystem of top of FUSE

bolt

libfuse - The reference implementation of the Linux FUSE (Filesystem in Userspace) interface

etcd - Distributed reliable key-value store for the most critical data of a distributed system [Moved to: https://github.com/etcd-io/etcd]

tigerbeetle - A distributed financial accounting database designed for mission critical safety and performance. [Moved to: https://github.com/tigerbeetledb/tigerbeetle]

TinyGo - Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.

go-cache - An in-memory key:value store/cache (similar to Memcached) library for Go, suitable for single-machine applications.