All Projects → dotnwat → fusell-seed

dotnwat / fusell-seed

Licence: MIT license
FUSE (the low-level interface) file system boilerplate 📂 🔌 💾

Programming Languages

shell
77523 projects
C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to fusell-seed

Fusell Seed
FUSE (the low-level interface) file system boilerplate 📂 🔌 💾
Stars: ✭ 9 (-30.77%)
Mutual labels:  fuse, filesystem, posix, starter-kit, fuse-filesystem
Goofys
a high-performance, POSIX-ish Amazon S3 file system written in Go
Stars: ✭ 3,932 (+30146.15%)
Mutual labels:  fuse, filesystem, posix, fuse-filesystem
loggedfs-python
Filesystem monitoring with Fuse and Python
Stars: ✭ 21 (+61.54%)
Mutual labels:  fuse, filesystem, fuse-filesystem
fuse xattrs
add xattrs support using sidecar files.
Stars: ✭ 28 (+115.38%)
Mutual labels:  fuse, filesystem, fuse-filesystem
GitFS
A FUSE filesystem that stores data on Git
Stars: ✭ 26 (+100%)
Mutual labels:  fuse, filesystem, fuse-filesystem
Supertag
A tag-based filesystem
Stars: ✭ 207 (+1492.31%)
Mutual labels:  fuse, filesystem, fuse-filesystem
Catfs
Cache AnyThing filesystem written in Rust
Stars: ✭ 404 (+3007.69%)
Mutual labels:  fuse, filesystem, fuse-filesystem
Fuse Ts
Stars: ✭ 6 (-53.85%)
Mutual labels:  fuse, filesystem, fuse-filesystem
Distribyted
📂 ➡️ 📺 🎶 🎮 Torrent client with on-demand file downloading as a filesystem.
Stars: ✭ 791 (+5984.62%)
Mutual labels:  fuse, filesystem, fuse-filesystem
S3fs Fuse
FUSE-based file system backed by Amazon S3
Stars: ✭ 5,733 (+44000%)
Mutual labels:  fuse, filesystem, fuse-filesystem
Securefs
Filesystem in userspace (FUSE) with transparent authenticated encryption
Stars: ✭ 518 (+3884.62%)
Mutual labels:  fuse, filesystem, fuse-filesystem
Moosefs
MooseFS – Open Source, Petabyte, Fault-Tolerant, Highly Performing, Scalable Network Distributed File System (Software-Defined Storage)
Stars: ✭ 1,025 (+7784.62%)
Mutual labels:  fuse, filesystem, posix
Cryfs
Cryptographic filesystem for the cloud
Stars: ✭ 1,560 (+11900%)
Mutual labels:  fuse, filesystem, fuse-filesystem
Gcsf
a FUSE file system based on Google Drive
Stars: ✭ 2,251 (+17215.38%)
Mutual labels:  fuse, filesystem
Gotenksfs
A file system on top of your file system
Stars: ✭ 203 (+1461.54%)
Mutual labels:  fuse, filesystem
ltfs
Reference implementation of the LTFS format Spec for stand alone tape drive
Stars: ✭ 130 (+900%)
Mutual labels:  filesystem, fuse-filesystem
Phoenixfs
🔥 a versioning filesystem inspired by git
Stars: ✭ 191 (+1369.23%)
Mutual labels:  fuse, filesystem
Tifs
A distributed POSIX filesystem based on TiKV, with partition tolerance and strict consistency.
Stars: ✭ 209 (+1507.69%)
Mutual labels:  fuse, filesystem
luufs
Lazy man's, user-mode union file system
Stars: ✭ 28 (+115.38%)
Mutual labels:  fuse, filesystem
Containerfs
a cluster filesystem for containers
Stars: ✭ 264 (+1930.77%)
Mutual labels:  fuse, filesystem

Low-level FUSE file system boilerplate

Build Status

This project is a bare bones implementation of an in-memory FUSE file system that uses the low-level FUSE interface. It passes a large percentage of the POSIX compliance test suite (some things like unix sockets aren't yet handled), is regularly stress tested with numerous workloads, and can serve as a good starting point for your next file system project.

Many FUSE file systems found out in the wild use the high-level FUSE interface that operates on file paths. In contrast to the path-based interface, the low-level interface in FUSE operates on inodes, and offers a lot of flexibility. However, there seems to be relatively few examples of how to build a file system with this more advanced interface.

Testing Process

The testing we perform focuses on support across many distributions, compliance to the POSIX standard, and stress testing with many workloads. Continuous integration builds and mounts the file system for a variety of OS distributions. In addition, the continuous integration process runs the Tuxera POSIX test suite on Ubuntu Trusty.

A broader set of tests are periodically run (e.g. before new releases) that exercise the file system using a variety of real-world workloads. Interestingly, during development, a significant number of issues were surfaced by running real applications that did not show up when using the POSIX test suite. This larger set of test is not run as part of the continuous integration process because they either take too long or require too much memory.

The set of tests can be found in the test/ directory. A selection:

  • Run the Tuxera POSIX test suite (test/posix.sh)
  • Build the Linux kernel (test/kernel.sh)
  • Build the Ceph storage system (test/ceph.sh)
  • Multiple configurations of iozone (test/iozone.sh)
  • Build PostgreSQL and run tests (test/postgres.sh)
  • Build Git and run unit tests (test/git.sh)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].