NFS v4.1
IETF RFC 5661 — a stateful evolution of NFS that introduces sessions, parallel NFS (pNFS), and close-to-open consistency semantics. In the 2026 S3 ecosystem, it's the mount protocol sitting underneath Amazon S3 Files, letting ordinary POSIX clients treat an S3 bucket as a mutable file system.
Summary
IETF RFC 5661 — a stateful evolution of NFS that introduces sessions, parallel NFS (pNFS), and close-to-open consistency semantics. In the 2026 S3 ecosystem, it's the mount protocol sitting underneath Amazon S3 Files, letting ordinary POSIX clients treat an S3 bucket as a mutable file system.
NFS v4.1 is the path the industry took to reconcile object storage's atomic-PUT model with file-system mutability — not by inventing a new protocol, but by leaning on a familiar, widely implemented one. Its file-lock semantics, compound RPCs, and delegated caching map cleanly onto the EFS-backed translation layer S3 Files uses, giving agent and legacy workloads the file API they expect without changes on the client side.
- Close-to-open consistency is weaker than atomic-PUT — writes are visible on the same client immediately but only propagate to other clients after close.
- NFS v4.1 is not the same as NFSv3. The stateful session model means misbehaving clients can hold locks that linger until session timeout.
- The protocol is not the guarantee. Behavior under S3 Files depends on the EFS cache flush interval and the S3-wins conflict policy layered on top.
enablesAmazon S3 Files — the mount protocol exposed by S3 Filesscoped_toObject Storage — bridge between file and object worlds
Definition
The IETF-standardized Network File System protocol (RFC 5661), a stateful evolution of NFS introducing sessions, parallel NFS (pNFS), and explicit close-to-open consistency semantics. The mount protocol underneath **Amazon S3 Files**, exposing general-purpose S3 buckets as POSIX file systems.
Object storage and file storage operate on fundamentally different consistency and lifecycle models. NFS v4.1 is the path the industry took to bridge that gap without inventing a new protocol — its file-lock semantics, compound RPCs, and delegated caching map cleanly onto the EFS-backed translation layer that S3 Files uses to present atomic-PUT objects as mutable files.
POSIX mount of S3 buckets via S3 Files, shared workspace file systems for agentic AI pipelines, legacy file-oriented ML tooling that cannot be rewritten to the REST API.
Connections 3
Outbound 2
scoped_to1enables1Inbound 1
implements1Resources 2
IETF RFC 5661 — the canonical NFS v4.1 specification, covering sessions, pNFS, and close-to-open consistency semantics referenced by S3 Files.
RFC Editor metadata and errata index for RFC 5661 — important when tracking protocol-level fixes since initial publication.