Amazon EFS — The Architecture Behind the Elastic File System

Amazon EFS — The Architecture Behind the Elastic File System

A deep, advanced-level walkthrough of how EFS actually works under the hood — its distributed storage engine, throughput mechanics, consistency model, replication, and the patterns that let thousands of instances and containers share one file system without ever thinking about disk size again.

Picture a shared filing cabinet that lives outside of any single office, that automatically grows a new drawer the instant a folder no longer fits, and that can be opened from a thousand different offices in different cities at the same time — with every person seeing the exact same files, updated instantly. That is the promise Amazon EFS makes to distributed applications: a single, shared, elastic file system that thousands of compute instances can mount concurrently, with capacity that expands and shrinks automatically as files are added and removed. This tutorial skips past “EFS is a managed NFS file system” — you already know that — and goes straight into the distributed systems engineering underneath it: how it partitions data across storage servers, how its throughput and performance modes actually trade off against each other, how its consistency guarantees work across concurrent writers, and how organizations at real scale replicate, secure, and optimize it in production.

1What Makes EFS a Distributed File System

EFS is not a bigger EBS volume — it is a fundamentally different storage architecture.

Object Storage Underneath a File Protocol

An EFS file system is not a single disk with a filesystem format like ext4 written on top of it. Internally, AWS distributes file data and metadata across a fleet of storage servers, and a metadata layer tracks which physical shards hold which parts of the directory tree and file content. Applications only ever see a standard NFSv4.1 interface — the distribution across shards happens entirely beneath that interface, invisible to any mounted client.

Simple Analogy

Think of a single EBS volume like a personal filing cabinet bolted to one desk — only that desk can use it directly. EFS is more like a library with a card catalog system: the catalog (metadata layer) knows exactly which shelf and which shelf-section (storage server) holds any given book, so any visitor, from any entrance, can find and read the same book at the same time.

Why It Scales Without Provisioning

Because storage capacity is not tied to a single fixed volume but spread elastically across the underlying storage fleet, EFS never requires you to declare a size ahead of time. Adding a terabyte of files simply causes the system to allocate more shards behind the metadata layer — there is no “resize the volume” operation because there was never a fixed volume to resize.

flowchart TB
    subgraph Clients["Mounting Clients (across many AZs)"]
        C1["EC2 Instance"]
        C2["ECS Task"]
        C3["Lambda Function"]
        C4["EKS Pod"]
    end
    C1 & C2 & C3 & C4 -->|NFSv4.1| MT["Mount Targets\n(one ENI per AZ)"]
    MT --> META["Distributed Metadata Layer"]
    META --> S1["Storage Shard 1"]
    META --> S2["Storage Shard 2"]
    META --> S3["Storage Shard N..."]
        
FIG 1 — Every client talks NFS to a nearby mount target; the metadata layer transparently spreads the actual file data across an elastic pool of storage shards.

Production Example — Media Rendering Farms

Visual-effects studios use EFS to let hundreds of render nodes read and write frames of the same project simultaneously, relying on the shared, elastic namespace instead of copying assets to every node’s local disk before a render job starts.

2Internal Working — Mount Targets & the Network Path

A mount target is the actual doorway between your VPC and the distributed storage fleet.

One Mount Target Per Availability Zone

A mount target is an Elastic Network Interface, provisioned inside a specific subnet, that exposes an NFS endpoint IP address for that Availability Zone. Because each AZ gets its own mount target, instances in that AZ talk to the file system without their NFS traffic crossing an AZ boundary for the connection itself, keeping latency low and avoiding a single point of network entry for the entire Region.

DNS Resolution and the Regional Endpoint

When a client mounts EFS using the standard file-system DNS name, that name resolves — through Availability-Zone-aware DNS — to the mount target’s IP address in the same AZ as the requesting instance whenever possible. This means the same mount command behaves differently depending on where it is issued from, automatically routing to the closest mount target without any explicit configuration.

flowchart LR
    subgraph AZ1["Availability Zone A"]
        E1["EC2 Instance"] --> MT1["Mount Target A\n(ENI)"]
    end
    subgraph AZ2["Availability Zone B"]
        E2["EC2 Instance"] --> MT2["Mount Target B\n(ENI)"]
    end
    MT1 --> FS["Single Logical\nEFS File System"]
    MT2 --> FS
        
FIG 2 — Multiple mount targets present one logical, consistent file system, each acting as a local doorway for its own Availability Zone.

Security Groups on Mount Targets, Not on EFS Itself

Because a mount target is an ENI, network access control is applied through standard VPC security groups attached to that ENI — meaning NFS port 2049 access is governed by exactly the same stateful, hardware-enforced security group mechanism used for any other ENI in the VPC, rather than a separate EFS-specific firewall construct.

!
Common Mistake

Teams sometimes create a mount target in only one Availability Zone to save on ENI cost, then wonder why instances in a second AZ experience mount failures or cross-AZ data transfer charges — every AZ that hosts a client should have its own mount target.

3Performance Modes — General Purpose vs. Max I/O

Performance mode is chosen once, at creation time, and defines the latency-versus-parallelism trade-off for the file system’s entire life.

Default

General Purpose

Optimized for the lowest per-operation latency, suited to the vast majority of workloads including web serving, content management, and home directories where per-file responsiveness matters most.

Specialized

Max I/O

Trades a small amount of per-operation latency for the ability to scale to much higher levels of aggregate throughput and IOPS across a very large number of concurrently connected clients.

The reason this choice cannot be changed later is architectural: Max I/O spreads metadata operations across a larger number of internal partitions to remove contention at extreme concurrency, and that partitioning scheme is decided when the file system is provisioned. Highly parallel workloads — such as thousands of nodes in a big-data cluster reading and writing simultaneously — benefit from Max I/O’s wider fan-out, even though any single operation might take slightly longer.

Simple Analogy

General Purpose mode is like a small coffee shop with one skilled barista — every order is fast, but the line gets long if too many people show up at once. Max I/O is like a large food-court with many stalls — each individual order might take a touch longer to reach the counter, but thousands of people can be served in parallel without anyone truly blocking anyone else.

i
Interview-Relevant Detail

AWS has stated that General Purpose mode now handles the overwhelming majority of workloads well, including many that previously required Max I/O, because of ongoing improvements to General Purpose’s internal partitioning — meaning Max I/O should only be chosen after specifically observing metadata operation limits being hit under General Purpose mode.

4Throughput Modes — Bursting, Provisioned & Elastic

Throughput mode determines how many megabytes per second a file system can move — and this one can be changed on a running file system.

Bursting Throughput — Credits Tied to Storage Size

In Bursting mode, baseline throughput scales directly with how much data is stored — more stored data means a higher sustained baseline. On top of that baseline, the file system accumulates burst credits during quiet periods and spends them during traffic spikes, in a credit-accounting system conceptually similar to EC2’s T-family CPU credits.

Provisioned Throughput — Decoupling Throughput From Storage

Provisioned Throughput mode lets you specify a fixed throughput level independent of how much data is stored, which matters enormously for workloads that need high throughput on a relatively small data set — a scenario where Bursting mode’s storage-tied baseline would never earn enough credits to keep up.

Elastic Throughput — Automatic, No Configuration

Elastic Throughput mode removes the provisioning decision entirely: the file system automatically scales throughput up and down in near real time based on actual workload demand, billing only for throughput actually consumed. This mode is designed for unpredictable or spiky access patterns where guessing a provisioned number in advance would either waste money or risk throttling.

ModeThroughput BasisBest Fit
BurstingTied to total stored data + credit balanceSteady-state workloads whose throughput naturally grows with data size
ProvisionedFixed value set independent of storageHigh-throughput needs on a small data set, or predictable steady demand
ElasticAutomatically scales with real-time demandSpiky, unpredictable, or highly variable access patterns
flowchart LR
    A["Workload Pattern"] --> B{"Predictable &\nproportional to size?"}
    B -- "Yes" --> C["Bursting Mode"]
    B -- "No, but steady\nand known" --> D["Provisioned Mode"]
    B -- "No, unpredictable\nor spiky" --> E["Elastic Mode"]
        
FIG 3 — Choosing a throughput mode is really about how predictable the relationship is between data size and required throughput.

Production Example — CI/CD Build Caches

Engineering platforms often mount a shared EFS file system as a build cache across many ephemeral CI runners, using Elastic Throughput mode because build traffic is extremely spiky — near zero overnight, then a sudden burst of concurrent builds during business hours.

5Storage Classes & Lifecycle Management

EFS quietly moves files between storage classes based on real access patterns, without changing a single file path.

Hot Data

Standard

The default class for frequently accessed files, replicated redundantly across multiple Availability Zones for maximum durability and lowest latency.

Cold Data

Infrequent Access (IA)

Lower per-GB storage cost for files not accessed recently, with a small per-access retrieval fee — designed for files that are kept but rarely opened.

Archive

Archive Storage Class

The lowest-cost tier for data accessed extremely rarely, such as long-term compliance retention, with correspondingly higher retrieval latency and cost per access.

Lifecycle Management Policies

Rather than requiring an application to move files manually, EFS Lifecycle Management observes the last-accessed timestamp on every file and transitions it between storage classes automatically according to a configured policy — for example, moving a file to Infrequent Access after 30 days without a read, and to Archive after 90 days without a read — while the file’s path and permissions remain completely unchanged.

Intelligent-Tiering Behavior

When Intelligent-Tiering is enabled, EFS also monitors for a file being accessed again after it has moved to a colder tier, and automatically transitions it back to the Standard class — meaning applications never need special logic to “know” which tier a file currently lives in; the access pattern itself drives placement in both directions.

i
Cost Optimization Insight

Because retrieval from IA or Archive carries a small per-access cost, Lifecycle Management delivers the biggest savings on file systems with a genuinely “cold tail” — large volumes of rarely touched historical data sitting alongside a much smaller set of actively used files.

6Data Flow, Locking & the Consistency Model

Understanding exactly what “shared” means when many clients write concurrently.

Read-After-Write Consistency

EFS guarantees read-after-write consistency for data — once a write is acknowledged as successful to one client, any other client reading that same byte range afterward will see the new data, without any propagation delay window to reason about. This differs from eventually-consistent object storage systems where a read shortly after a write could still return stale data.

NFSv4.1 Locking Semantics

EFS implements standard NFSv4.1 file locking, including both advisory byte-range locks and mandatory locking behavior expected by POSIX-compliant applications. This is what allows applications originally written assuming a local Linux file system — databases doing their own file-level locking, for instance — to run largely unmodified against a shared, network-attached file system.

sequenceDiagram
    participant C1 as Client A
    participant C2 as Client B
    participant EFS as EFS File System
    C1->>EFS: Write to file.txt
    EFS-->>C1: Write acknowledged
    C2->>EFS: Read file.txt
    EFS-->>C2: Returns data written by Client A
        
FIG 4 — Because EFS guarantees read-after-write consistency, Client B is guaranteed to see Client A’s write the moment it was acknowledged.
Simple Analogy

Read-after-write consistency is like a shared whiteboard in a meeting room rather than a group chat with delivery delays — the instant one person finishes writing on it, anyone else looking at the board sees exactly what was written, with no lag to wait out.

!
Common Mistake

Developers sometimes assume NFS-mounted storage behaves identically to a local disk for every operation, including atomic rename and append semantics under heavy concurrent access. While EFS follows POSIX semantics closely, applications performing extremely high-frequency small writes from many clients to the same file should still test locking behavior explicitly rather than assume local-disk performance characteristics.

7High Availability & Reliability

Durability in EFS is a property of the storage architecture itself, not a configuration you turn on.

Redundancy by Design

Standard storage classes store file data and metadata redundantly across multiple Availability Zones within a Region automatically — this is not an optional replication setting but the baseline architecture, designed to deliver 99.999999999% (eleven nines) of durability without any customer configuration.

One-Zone Storage Classes — A Deliberate Trade-off

For workloads where AZ-level redundancy is not required — typically development, testing, or easily reproducible data — EFS offers One Zone storage classes that store data in a single Availability Zone at a meaningfully lower cost, trading durability and availability for price. Choosing this class is an explicit acceptance that an AZ failure could make that data temporarily or permanently unavailable.

Standard (Multi-AZ)

  • Data replicated redundantly across multiple Availability Zones
  • Survives the loss of an entire Availability Zone
  • Higher per-GB cost than One Zone classes

One Zone

  • Data confined to a single Availability Zone
  • Lower cost, appropriate for reproducible or non-critical data
  • Vulnerable to an entire-AZ failure event

Availability From the Client’s Perspective

Because each Availability Zone has its own independent mount target, an AZ-level network disruption only affects clients mounted through that specific mount target — clients in other AZs, mounted through their own local mount targets, continue operating against the same underlying (Standard-class) file system uninterrupted.

8Security — Identity, Permissions & Encryption

EFS layers three independent, complementary access-control systems.

Network Layer

Security Groups

Control which instances can reach a mount target’s NFS port at all — the outermost gate, enforced before any file-level check occurs.

Identity Layer

IAM & Client Authorization

Optional IAM-based authorization can require that NFS clients authenticate using AWS credentials before mount operations succeed, adding an identity check on top of network access.

File Layer

POSIX Permissions

Standard Unix user/group/other permission bits enforced on every file and directory, exactly as they would be on a local Linux file system.

Encryption at Rest and In Transit

Data at rest can be encrypted using AWS KMS-managed keys with no measurable performance penalty, since encryption is handled transparently by the underlying storage layer. Data in transit is protected separately through TLS, enabled at mount time via the EFS mount helper, which wraps the NFS connection in an encrypted tunnel rather than relying on NFS’s native (weaker) transport security.

Access Points — Scoped, Application-Specific Entry Points

An EFS Access Point defines an application-specific entry point into a shared file system, enforcing a specific POSIX user and group identity and a specific root directory for every request that comes through it — without changing anything about the underlying file system itself. This lets many different containers or applications share one file system while each only ever seeing its own designated subdirectory, under its own enforced identity.

flowchart TB
    FS["Single EFS File System\n/shared-data"]
    AP1["Access Point: App A\nRoot: /shared-data/app-a\nUID: 1001"]
    AP2["Access Point: App B\nRoot: /shared-data/app-b\nUID: 1002"]
    FS --> AP1
    FS --> AP2
    C1["Container A"] --> AP1
    C2["Container B"] --> AP2
        
FIG 5 — Access Points let multiple applications safely share a single file system while each is scoped to its own directory and identity.
i
Container-Native Pattern

Access Points are the mechanism that makes EFS practical for multi-tenant container platforms — an orchestrator can hand every task its own Access Point rather than trusting application code to respect directory boundaries voluntarily.

9Replication & Backup

Durability within a Region is automatic; durability across Regions and time is something you deliberately configure.

EFS Replication — Continuous Cross-Region Copying

EFS Replication continuously and asynchronously copies changes from a source file system to a read-only replica in another Region (or the same Region), tracking a typical replication lag of minutes rather than requiring a scheduled batch job. In a disaster recovery event, the replica can be promoted to a standalone, writable file system.

sequenceDiagram
    participant Src as Source EFS (Region A)
    participant Rep as Replica EFS (Region B, read-only)
    Src->>Rep: Continuous async change propagation
    Note over Rep: Normally read-only
    Note over Src,Rep: Disaster in Region A
    Rep->>Rep: Promoted to writable
        
FIG 6 — EFS Replication keeps a continuously updated, read-only copy that can be promoted to a fully writable file system during failover.

AWS Backup Integration

Point-in-time backups are managed through AWS Backup, which can apply a policy-driven schedule and retention period to EFS file systems the same way it does for EBS volumes and RDS databases, giving a single unified backup and compliance story across otherwise very different storage types.

!
Common Mistake

Teams sometimes treat cross-Region Replication as a backup strategy on its own. It protects against a Regional disaster, but a destructive operation on the source (an accidental mass delete) propagates to the replica just as quickly — Replication and point-in-time Backup solve two different failure modes and are typically used together.

10Monitoring, Logging & Metrics

Advanced EFS operators watch a specific set of metrics that reveal problems long before users notice slowness.

Burst Credit Balance

For file systems on Bursting throughput mode, the BurstCreditBalance metric is the single most important early-warning signal — a steadily declining balance during sustained high traffic predicts an imminent drop to baseline throughput, well before users experience the slowdown itself.

PercentIOLimit

This metric reports how close a file system is to its metadata operation ceiling — a critical signal specifically for General Purpose performance mode, since exceeding this limit is the exact scenario that would justify considering Max I/O mode instead.

Capacity Signal

StorageBytes

Tracks total stored data by storage class, useful for validating that Lifecycle Management policies are actually shifting data to colder, cheaper tiers as expected.

Throughput Signal

DataReadIOBytes / DataWriteIOBytes

Direct visibility into read and write throughput, essential for validating whether a Provisioned Throughput setting is correctly sized or being wasted.

Client-Side Signal

NFS Client Statistics

Mount-side statistics available via standard Linux NFS client tooling reveal per-client latency and retransmission rates the file-system-level CloudWatch metrics cannot show.

i
Operational Habit

Set a CloudWatch alarm on BurstCreditBalance approaching zero for any Bursting-mode file system supporting a production workload — it is the single leading indicator that predicts a throughput cliff before it happens.

11Deployment & Cloud Integration Patterns

EFS’s real advanced value shows up in how naturally it integrates with modern compute platforms.

EFS With AWS Lambda

Lambda functions can mount an EFS Access Point directly, giving otherwise stateless, ephemeral functions access to a large, persistent, shared file system — enabling use cases like loading large machine-learning model files that exceed Lambda’s deployment package size limits, without repackaging the model into every function version.

EFS With Amazon ECS and EKS

Container orchestrators mount EFS as a native persistent volume type, with each task or pod typically scoped to its own Access Point. Because EFS is not tied to a single Availability Zone the way an EBS volume is, a container can be rescheduled onto a completely different node in a different AZ and still mount the exact same persistent data — a property EBS-backed persistent volumes cannot offer without additional replication tooling.

flowchart LR
    subgraph EKS["EKS Cluster"]
        Pod1["Pod (AZ-a)"]
        Pod2["Rescheduled Pod (AZ-b)"]
    end
    Pod1 -->|Mount via Access Point| EFS["Shared EFS\nFile System"]
    Pod2 -->|Same Access Point,\ndifferent AZ| EFS
        
FIG 7 — Because EFS is not AZ-bound, a rescheduled pod in a different Availability Zone still reaches identical persistent data.

Home Directories & Lift-and-Shift Migrations

Legacy enterprise applications built around a shared network file system (traditionally served by an on-premises NAS appliance) can often be lifted onto EFS with minimal rework, since EFS speaks the same NFSv4.1 protocol those applications already expect — turning what might otherwise be a rewrite into a mostly configuration-level migration.

12Design Patterns & Anti-Patterns

Patterns that make EFS shine in production, and mistakes that quietly cause pain later.

Pattern — One Access Point per Tenant

In multi-tenant SaaS platforms, provisioning a dedicated Access Point per customer on a single shared file system keeps operational overhead low (one file system to manage) while still enforcing strict directory- and identity-level isolation between tenants.

Pattern — Elastic Throughput for Bursty Batch Jobs

Batch and ETL pipelines that run intensely for short windows and sit idle otherwise benefit from Elastic Throughput mode, since Bursting mode’s credit system would otherwise force either overprovisioning storage just to earn enough baseline credits, or under-provisioning and hitting a throughput cliff mid-job.

Pattern — Lifecycle Management as Default-On

Enabling Intelligent-Tiering lifecycle policies by default on new file systems, rather than as an afterthought, captures cost savings automatically as data naturally cools over time without requiring any later migration project.

ANTI-PATTERN-01 Avoid
Problem

Using EFS as the primary data store for a high-throughput relational database that performs constant small random writes to a single large file.

Why It’s Harmful

NFS-based network storage carries inherent per-operation network latency compared to a locally attached NVMe device, and databases performing millions of small synchronous writes are far more sensitive to that latency than typical file-sharing workloads, leading to significantly degraded transaction throughput.

Correct Approach

Use EBS (or instance store with application-level replication) for the primary database data files, and reserve EFS for shared assets, logs, configuration, or content that genuinely benefits from being accessed concurrently across many instances.

ANTI-PATTERN-02 Avoid
Problem

Choosing One Zone storage classes purely to save cost on a file system that supports a production, customer-facing workload.

Why It’s Harmful

One Zone storage classes explicitly forgo the multi-AZ redundancy that protects against an entire Availability Zone becoming unavailable, meaning a single AZ event can cause full, unplanned unavailability for anything depending on that data.

Correct Approach

Reserve One Zone classes for genuinely reproducible or non-critical data — build artifacts, disposable caches, development environments — and keep Standard multi-AZ storage for anything a live customer-facing system depends on.

13Advantages, Disadvantages & Trade-offs

EFS solves a specific class of problem extremely well — and is a poor fit for others.

Advantages

  • Elastic capacity with no need to provision or resize storage in advance
  • Truly concurrent access from thousands of clients across multiple Availability Zones with strong consistency
  • Not tied to a single AZ, unlike EBS, which simplifies failover and container rescheduling
  • Automatic, transparent cost optimization through Intelligent-Tiering lifecycle policies
  • Standard NFSv4.1 protocol allows many legacy and POSIX-dependent applications to run with minimal changes

Disadvantages / Trade-offs

  • Higher per-operation latency than a locally attached NVMe or EBS volume, due to the network hop and distributed architecture
  • Not well suited to workloads with extremely high-frequency small random writes to a single file, such as some relational database engines
  • Bursting throughput mode’s credit system can create unexpected throughput drops if storage size is small relative to sustained demand
  • Performance mode (General Purpose vs. Max I/O) cannot be changed after file system creation
  • Cost per GB for Standard storage is higher than EBS for equivalent capacity, before Lifecycle Management tiering is applied

14Real-World & Industry Examples

How real organizations apply the mechanics above.

Media & Entertainment

Visual Effects Studios

Mount a shared EFS file system across hundreds of render nodes so every node reads and writes the same project assets without pre-copying data to local disks.

SaaS Platforms

Multi-Tenant Document Platforms

Use one Access Point per customer on a shared file system to isolate tenant data while keeping operational overhead to a single managed file system.

Machine Learning

Serverless Inference Pipelines

Mount large pretrained model files into Lambda functions via EFS Access Points, avoiding Lambda’s deployment package size ceiling entirely.

Enterprise IT

Lift-and-Shift NAS Replacement

Replace on-premises NAS appliances serving shared departmental drives with EFS, preserving existing NFS-based application behavior while removing hardware management entirely.

11 nines
Designed durability of Standard storage
1000s
Concurrent clients supportable per file system
3
Throughput modes to match any access pattern

15Frequently Asked Questions

Q1Can Performance Mode be changed after a file system is created?

No — General Purpose and Max I/O are fixed at creation time because they correspond to different internal metadata partitioning schemes. Switching requires creating a new file system with the desired mode and migrating data across.

Q2Does EFS support Windows-native SMB access?

EFS is an NFS-based file system designed for Linux and POSIX-compliant clients; it does not natively expose an SMB interface. Workloads requiring native SMB access typically use Amazon FSx for Windows File Server instead.

Q3Is cross-Region Replication synchronous?

No — EFS Replication is asynchronous, with typical propagation measured in minutes. This means a disaster in the source Region could result in the loss of the most recent, not-yet-replicated writes, which is an important recovery-point consideration for disaster recovery planning.

Q4Why would Provisioned Throughput be chosen over the simpler Elastic mode?

Provisioned Throughput can be more cost-predictable for workloads with a well-understood, sustained throughput requirement, since Elastic mode bills based on actual real-time consumption which can be harder to forecast precisely for budgeting purposes.

Q5Does mounting through an Access Point restrict what the underlying file system itself can see?

No — an Access Point only restricts what clients mounting through that specific Access Point can see and which POSIX identity they use. Administrators mounting the root of the file system directly (with appropriate permissions) can still see the entire directory tree across all Access Points.

16Summary and Key Takeaways

Advanced mastery of EFS comes down to understanding it as a genuinely distributed system wearing a familiar NFS interface. Its elasticity is not a marketing term but a direct consequence of separating the metadata layer from an expandable pool of storage shards. Its performance and throughput modes are not arbitrary settings but real architectural trade-offs between latency, parallelism, and cost predictability that must be matched deliberately to a workload’s actual access pattern. Its consistency guarantees, Access Point isolation model, and multi-AZ durability are what make it safe to hand to thousands of concurrent, untrusted, or multi-tenant clients at once — something a single-attach block volume was never designed to do. Organizations getting real value from EFS in production — media studios, multi-tenant SaaS platforms, serverless ML pipelines — succeed by matching these mechanics deliberately to their workload rather than treating EFS as a drop-in replacement for every kind of storage.

Key Takeaways

  • EFS is a distributed system, not a bigger disk. Its elasticity comes from separating metadata from an expandable pool of storage shards, not from resizing a single volume.
  • Performance Mode is permanent. General Purpose fits nearly all workloads; Max I/O should only be chosen after actually hitting metadata operation limits.
  • Throughput Mode should match predictability. Bursting suits steady, size-proportional demand; Provisioned suits known steady throughput on small data; Elastic suits spiky, unpredictable patterns.
  • Consistency is strong. Read-after-write guarantees and standard NFSv4.1 locking let many legacy POSIX applications run largely unmodified.
  • Durability is automatic for Standard storage, but One Zone classes are a deliberate, explicit trade of availability for lower cost — reserve them for reproducible or non-critical data only.
  • Access Points are the multi-tenant security primitive. They enforce identity and directory scoping without requiring separate file systems per tenant or application.
  • Replication and Backup solve different problems. Cross-Region Replication protects against Regional disaster; point-in-time Backup protects against destructive operations — production systems typically need both.