Versity S3 Gateway
An open-source (Apache 2.0) S3-compatible gateway that translates S3 API calls into POSIX filesystem operations. A thin translation layer rather than a full object store — the underlying bytes live on NFS, XFS, ext4, or any other POSIX filesystem, and Versity surfaces them under S3 semantics. Hosted at github.com/versity/versitygw, ~2,400 stars as of April 2026.
Summary
An open-source (Apache 2.0) S3-compatible gateway that translates S3 API calls into POSIX filesystem operations. A thin translation layer rather than a full object store — the underlying bytes live on NFS, XFS, ext4, or any other POSIX filesystem, and Versity surfaces them under S3 semantics. Hosted at github.com/versity/versitygw, ~2,400 stars as of April 2026.
The "S3 facade over existing POSIX" niche. Where MinIO and RustFS are full object stores with their own on-disk layout, Versity preserves the existing filesystem and adds S3 as an access mode. The natural fit for lab clusters, HPC parallel filesystems, archival NAS, and any environment where data already lives in POSIX but downstream applications expect S3.
- Versity is not a complete object store — S3 API coverage is a deliberate subset. Don't expect feature parity with MinIO or AWS S3.
- Performance is bounded by the underlying filesystem's directory and inode performance, not by Versity itself. Large LIST operations on directories with millions of files will reflect that.
- Concurrent S3 + POSIX writes to the same path can produce surprising results — Versity does not arbitrate between the two access modes.
implementsS3 API — GET / PUT / LIST / DELETE / multipart upload subsetdepends_onPOSIX — gateway translates rather than storingalternative_toMinIO — for POSIX-backed deployments where MinIO would mean rebuilding the data layoutcompetes_withCeph — specifically the RADOS Gateway componentsolvesVendor Lock-In +solvesAGPL Licensing Risk — Apache 2.0 license, no rewrite of underlying storage
Definition
An open-source S3-compatible gateway that translates S3 API calls into POSIX filesystem operations — a thin "S3 facade" over any underlying NFS, XFS, ext4, or other POSIX-mounted storage. Apache 2.0 licensed, hosted at [github.com/versity/versitygw](https://github.com/versity/versitygw) (~2,400 stars as of April 2026). Unlike MinIO, Ceph, or RustFS — which are full object storage systems with their own on-disk layout — Versity is purely a translation layer. The actual bytes live on the underlying filesystem; Versity exposes them under S3 semantics.
Many organizations have large existing POSIX deployments (lab clusters, on-prem NAS, archive tiers, HPC parallel filesystems) that they want to expose to S3-native applications without rewriting either side. Versity fills the gap that MinIO abandoned when it went proprietary, and that newer Rust-based object stores (RustFS) don't address — those store data in their own internal format, not as POSIX files that other tools can also read.
S3-compatible bridge over existing NAS or HPC parallel filesystems, multi-protocol access (POSIX + S3) to the same dataset, S3 facade on archival / cold-storage tiers, lab and research environments where data already lives in POSIX but downstream tooling expects S3.
Connections 8
Outbound 8
scoped_to2implements1alternative_to1depends_on1competes_with1Resources 3
Apache 2.0 S3-compatible gateway that exposes any POSIX filesystem as S3. The "S3 facade over POSIX" niche that full object stores like MinIO and RustFS do not address.
v1.4.1 release notes (April 22, 2026) — improved multipart upload support and expanded S3 API coverage. Authoritative source for what the current release actually delivers vs roadmap claims.
Versity Software's commercial site — context on the vendor backing the open-source gateway (their commercial product is a different scale-out object storage system; the gateway is the Apache 2.0 piece).