{"id":40158,"date":"2026-05-03T15:35:00","date_gmt":"2026-05-03T13:35:00","guid":{"rendered":"https:\/\/www.cloudmagazin.com\/2026\/05\/08\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/"},"modified":"2026-07-12T12:37:05","modified_gmt":"2026-07-12T10:37:05","slug":"amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines","status":"publish","type":"post","link":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/","title":{"rendered":"Amazon S3 Files: NFS Mounts Without Code Changes"},"content":{"rendered":"<p style=\"color:#6190a9;font-size:0.9em;margin:0 0 16px;padding:0;\">6 Min. Read Time<\/p>\n<p style=\"line-height:1.8;margin-bottom:20px;\"><strong>Amazon S3 Files is generally available since April 7, 2026. The feature allows mounting S3 buckets directly as an NFS-compatible file system in EC2, EKS, and Lambda \u2013 without code changes to existing applications. For DACH teams with legacy workloads, ML pipelines, and shared storage requirements, this fundamentally changes the architecture options.<\/strong><\/p>\n<h2>Key Takeaways<\/h2>\n<ul>\n<li><strong>NFS mount without application changes:<\/strong> S3 Files provides a POSIX-compatible mount point. Existing applications that work with <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">open()<\/span>, <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">read()<\/span>, and <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">write()<\/span> can access S3 without refactoring.<\/li>\n<li><strong>34 regions, significant price difference to EFS:<\/strong> S3 storage costs around 0.02 euros\/GB\/month in standard, EFS around 0.26 euros\/GB\/month in standard mode. For large ML datasets and model checkpoints, the cost factor is relevant.<\/li>\n<li><strong>Latency is the trade-off:<\/strong> Metadata operations with S3 Files are at 10-50ms, EFS under 1ms. Workloads with many small file operations (transactional databases, small config files at high frequency) are not the target scenario.<\/li>\n<li><strong>EKS integration via CSI driver:<\/strong> The AWS S3 CSI driver is updated and supports S3 Files as a PersistentVolume. Multi-pod access to the same bucket is possible, important for distributed training setups.<\/li>\n<\/ul>\n<p style=\"font-size:0.88em;color:#666;margin:20px 0 32px 0;border-top:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5;padding:10px 0;\"><span style=\"color:#004a59;font-weight:700;text-transform:uppercase;font-size:0.72em;letter-spacing:0.14em;margin-right:14px;\">Related<\/span><a href=\"https:\/\/www.cloudmagazin.com\/en\/2026\/04\/28\/architecture-drives-compliance-costs\/\" style=\"color:#333;text-decoration:underline;\">BSI-KRITIS, NIS2 and C5: Multi-cloud compliance check 2026<\/a>&nbsp;&nbsp;<span style=\"color:#ccc;\">\/<\/span>&nbsp;&nbsp;<a href=\"https:\/\/www.cloudmagazin.com\/en\/2026\/04\/22\/byod-in-german-enterprises-2026-what-market-data-reveal\/\" style=\"color:#333;text-decoration:underline;\">BYOD in German enterprises 2026<\/a><\/p>\n<h2>What S3 Files does technically \u2013 and what it doesn&#8217;t<\/h2>\n<p style=\"line-height:1.8;margin-bottom:20px;\"><strong>What is Amazon S3 Files?<\/strong> S3 Files is a new feature from Amazon S3 that provides a POSIX-compatible file system mount endpoint for existing S3 buckets. Under the hood, a managed service translates POSIX calls into S3 API operations. The result: an application that reads <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">\/mnt\/data\/model.bin<\/span> actually accesses <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">s3:\/\/bucket\/model.bin<\/span> \u2013 without knowing it.<\/p>\n<p style=\"line-height:1.8;margin-bottom:20px;\">The technical foundation is the S3 Files Agent, a sidecar process running on the EC2 instance or in the Kubernetes pod. It handles the POSIX-to-S3 translation and maintains a local metadata cache. The agent is integrated into EKS via the AWS S3 CSI driver; for EC2, there is an RPM and DEB package. Lambda support is available via managed runtime layers.<\/p>\n<p style=\"line-height:1.8;margin-bottom:20px;\">What S3 Files is not: a full POSIX file system. File locking (<span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">flock<\/span>\/<span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">fcntl<\/span>) is not supported. Symbolic links are read-only. Rename operations do not have atomic guarantees with concurrent access. For applications that rely on these primitives \u2013 particularly classic SQL databases or build systems with file locking \u2013 EFS remains the right choice.<\/p>\n<h2>Three Scenarios for DACH Teams<\/h2>\n<p style=\"line-height:1.8;margin-bottom:20px;\">For which workloads is S3 Files a good fit?<\/p>\n<p style=\"line-height:1.8;margin-bottom:20px;\"><strong>ML Training and Model Serving:<\/strong> This is the primary scenario. Training data and model checkpoints are already stored in S3. With S3 Files, a PyTorch training job can read data via <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">\/mnt\/training-data<\/span> without the code needing to know about S3. Multi-pod access to the same bucket enables distributed training setups on SageMaker and EKS. The cost advantage over EFS is significant for datasets in the TiB range: with 10 TiB of training data, S3 Files saves around 2,414 euros\/month compared to EFS Standard.<\/p>\n<p style=\"line-height:1.8;margin-bottom:20px;\"><strong>Legacy Applications with Filesystem Interface:<\/strong> Many older Java and C++ applications read configurations and temporary data from the local file system. If the actual storage is already in S3, S3 Files allows you to dispense with a separate EFS layer. This simplifies the deployment architecture, especially for lift-and-shift migrations that haven&#8217;t been refactored yet.<\/p>\n<p style=\"line-height:1.8;margin-bottom:20px;\"><strong>Lambda and Serverless Pipelines:<\/strong> Until now, Lambda functions have only had EFS as a persistent file system. S3 Files is more cost-effective. For Lambda workloads that already operate on S3 data (ETL, image processing, batch transformations), mounting is a more natural access method than S3 API calls in the code.<\/p>\n<div style=\"background:#f0f7ff;border-radius:8px;padding:22px 26px;margin:28px 0;\">\n<p style=\"margin:0 0 12px 0;font-size:0.78em;font-weight:700;text-transform:uppercase;letter-spacing:0.14em;color:#0066cc;\">Storage Options Cost Comparison (us-east-1)<\/p>\n<div style=\"display:grid;grid-template-columns:repeat(3, 1fr);gap:14px;text-align:center;\">\n<div>\n<p style=\"font-size:1.8em;font-weight:900;color:#202528;margin:0;\">around 20 euros<\/p>\n<p style=\"color:#666;font-size:0.82em;margin:4px 0 0 0;\">S3 Files \/ GB \/ Month (Standard)<\/p>\n<\/div>\n<div>\n<p style=\"font-size:1.8em;font-weight:900;color:#202528;margin:0;\">around 26 euros<\/p>\n<p style=\"color:#666;font-size:0.82em;margin:4px 0 0 0;\">EFS Standard \/ GB \/ Month<\/p>\n<\/div>\n<div>\n<p style=\"font-size:1.8em;font-weight:900;color:#202528;margin:0;\">around 126 euros<\/p>\n<p style=\"color:#666;font-size:0.82em;margin:4px 0 0 0;\">FSx for Lustre Scratch \/ GB \/ Month<\/p>\n<\/div>\n<\/div>\n<\/div>\n<p><strong>Related: <a href=\"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/state-of-finops-2026-technology-value-management-dach-cloud\/\">State of FinOps 2026: Why FinOps is now called Technology Value Management and what it means for DACH cloud budgets<\/a><\/strong><\/p>\n<figure style=\"margin:36px 0;padding:0;\">\n<blockquote style=\"position:relative;margin:0;padding:30px 34px 28px;background:linear-gradient(135deg,#013a47 0%,#004a59 100%);border-radius:12px;box-shadow:0 10px 30px rgba(0,40,60,0.18);overflow:hidden;\"><p>\n<span aria-hidden=\"true\" style=\"position:absolute;right:22px;top:6px;font-family:Georgia,serif;font-size:90px;line-height:1;color:#0bb7fd;opacity:0.18;\">&rdquo;<\/span><\/p>\n<div style=\"font-family:'SF Mono','Monaco','Consolas',monospace;font-size:10.5px;color:#0bb7fd;letter-spacing:0.18em;text-transform:uppercase;margin-bottom:13px;\">\/\/ Key point<\/div>\n<p style=\"margin:0;font-size:1.15em;line-height:1.6;color:#f2fafd;font-weight:500;position:relative;\">The feature allows you to mount S3 buckets directly as an NFS-compatible file system in EC2, EKS, and Lambda \u2013 without changing code in existing applications.<\/p>\n<\/blockquote>\n<\/figure>\n<h2>What&#8217;s changing with EKS<\/h2>\n<p style=\"line-height:1.8;margin-bottom:20px;\">For Kubernetes teams, the relevant entry point is the AWS S3 CSI driver in version 1.10, which brings S3 Files support. A PersistentVolume with S3 Files looks like this:<\/p>\n<div style=\"background:#f4f4f4;padding:16px;border-radius:6px;overflow-x:auto;font-size:0.88em;line-height:1.8;margin:16px 0;font-family:monospace;white-space:pre-wrap;\">apiVersion: v1<br \/>kind: PersistentVolume<br \/>metadata:<br \/>&nbsp;&nbsp;name: s3-files-pv<br \/>spec:<br \/>&nbsp;&nbsp;capacity:<br \/>&nbsp;&nbsp;&nbsp;&nbsp;storage: 100Gi<br \/>&nbsp;&nbsp;accessModes:<br \/>&nbsp;&nbsp;&nbsp;&nbsp;&#8211; ReadWriteMany<br \/>&nbsp;&nbsp;mountOptions:<br \/>&nbsp;&nbsp;&nbsp;&nbsp;&#8211; allow-delete<br \/>&nbsp;&nbsp;&nbsp;&nbsp;&#8211; allow-overwrite<br \/>&nbsp;&nbsp;csi:<br \/>&nbsp;&nbsp;&nbsp;&nbsp;driver: s3.csi.aws.com<br \/>&nbsp;&nbsp;&nbsp;&nbsp;volumeHandle: s3-files-bucket-name<\/div>\n<p style=\"line-height:1.8;margin-bottom:20px;\"><span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">ReadWriteMany<\/span> means that multiple pods can write to the same bucket simultaneously. For ML distributed training with parameter servers or shared model repositories, this is a clear advantage over a single EBS volume that can only be <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">ReadWriteOnce<\/span>.<\/p>\n<p style=\"line-height:1.8;margin-bottom:20px;\">A note for DACH teams under GDPR: the S3 bucket must be located in a European region. Frankfurt (eu-central-1) and Stockholm (eu-north-1) are fully supported. The S3 Files Agent communicates exclusively with the regional S3 endpoint \u2013 no data leaves the region.<\/p>\n<h2>When EFS and FSx are still a better choice<\/h2>\n<p style=\"line-height:1.8;margin-bottom:20px;\">S3 Files is not a replacement for EFS. The latency differences are real: for applications with many small, sequential file system operations \u2013 classic web servers, PHP applications that frequently read config files, build systems \u2013 EFS is clearly ahead. Metadata operations like <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">stat()<\/span> or directory listings are significantly slower with S3 Files.<\/p>\n<p style=\"line-height:1.8;margin-bottom:20px;\">FSx for Lustre remains the tool of choice when maximizing bandwidth \u2013 Lustre is designed for parallel high-throughput, S3 Files is not. For very large ML workloads (models over 100 GB, intensive sequential reads), the FSx premium is still worth it.<\/p>\n<div style=\"display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:28px 0;\">\n<div style=\"background:#e8f5e9;border-radius:8px;padding:20px 24px;\">\n<p style=\"font-size:0.75em;font-weight:700;text-transform:uppercase;letter-spacing:0.12em;color:#2e7d32;margin:0 0 12px 0;\">S3 Files: right for<\/p>\n<ul style=\"margin:0;padding-left:20px;line-height:1.9;color:#333;font-size:0.9em;\">\n<li>ML training on large datasets (>100 GB)<\/li>\n<li>Model checkpoints and artifact storage<\/li>\n<li>Lambda functions with file system interface<\/li>\n<li>Legacy apps during lift-and-shift without refactoring<\/li>\n<li>Cost optimization for storage-intensive workloads<\/li>\n<\/ul>\n<\/div>\n<div style=\"background:#fce8e6;border-radius:8px;padding:20px 24px;\">\n<p style=\"font-size:0.75em;font-weight:700;text-transform:uppercase;letter-spacing:0.12em;color:#b71c1c;margin:0 0 12px 0;\">Still EFS\/FSx for<\/p>\n<ul style=\"margin:0;padding-left:20px;line-height:1.9;color:#333;font-size:0.9em;\">\n<li>Applications with file locking requirements<\/li>\n<li>Many small, sequential metadata operations<\/li>\n<li>Web servers with frequent config reads<\/li>\n<li>Classic SQL database files<\/li>\n<li>Maximum throughput (>10 GB\/s per pod)<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p style=\"line-height:1.8;margin-bottom:20px;\">The right decision question: Is the primary storage of the workload already in S3 \u2013 does the application not have file locking? Then S3 Files is the obvious choice. Is the storage in EBS or EFS \u2013 is the application highly latency-dependent? Then EFS remains the better option.<\/p>\n<p style=\"font-size:0.85em;color:#555;margin-bottom:20px;\"><em>Sources: AWS documentation S3 Files GA (April 2026), AWS Pricing Calculator, AWS re:Invent S3 session materials.<\/em><\/p>\n<h2>Frequently Asked Questions<\/h2>\n<details>\n<summary><strong>Is S3 Files compatible with all S3 storage classes?<\/strong><\/summary>\n<p style=\"margin:8px 0 4px 24px;color:#555;line-height:1.6;\">S3 Files supports S3 Standard, S3 Intelligent-Tiering, and S3 Standard-IA for read and write operations. S3 Glacier and Glacier Deep Archive are not directly mountable \u2013 objects in Glacier must be restored first. For ML datasets, AWS recommends S3 Intelligent-Tiering as the standard storage class, as training data access patterns vary.<\/p>\n<\/details>\n<details>\n<summary><strong>How does S3 Files behave in multi-region deployments?<\/strong><\/summary>\n<p style=\"margin:8px 0 4px 24px;color:#555;line-height:1.6;\">S3 Files only mounts buckets in the same region as the mount point. Cross-region access is not directly supported. Those with workloads across multiple regions need either S3 Replication for read access or S3 Multi-Region Access Points as a separate layer. For DACH teams with eu-central-1 and eu-west-1 as primary regions, this is a planning point for global deployments.<\/p>\n<\/details>\n<details>\n<summary><strong>Does S3 Files require additional IAM permissions compared to normal S3 access?<\/strong><\/summary>\n<p style=\"margin:8px 0 4px 24px;color:#555;line-height:1.6;\">Yes. In addition to standard S3 permissions (GetObject, PutObject, DeleteObject), S3 Files requires <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">s3:ListBucket<\/span>, <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">s3:GetBucketLocation<\/span>, and the new <span style=\"font-family:monospace;background:#f4f4f4;padding:1px 5px;border-radius:3px;font-size:0.92em;\">s3files:*<\/span> actions for metadata operations. The complete IAM policy is documented in the AWS documentation under &#8220;S3 Files IAM Permissions.&#8221; For least-privilege policies, these actions must be explicitly added.<\/p>\n<\/details>\n<details>\n<summary><strong>Can S3 Files be used in AWS GovCloud and EU sovereign deployments?<\/strong><\/summary>\n<p style=\"margin:8px 0 4px 24px;color:#555;line-height:1.6;\">S3 Files is available in AWS GovCloud (US-East and US-West). For EU sovereign requirements according to BSI C5 and GDPR: S3 Files runs in eu-central-1 (Frankfurt) and is thus usable under German data protection conditions. AWS has S3 Files in the scope of the C5 certification process, and the test update for 2026 was in progress at GA launch. Those who need this for KRITIS compliance should request the current C5 test directly from the AWS Compliance Team.<\/p>\n<\/details>\n<div style=\"margin:40px 0 24px 0;\">\n<p style=\"margin:0 0 12px 0;font-size:0.78em;font-weight:700;text-transform:uppercase;letter-spacing:0.18em;color:#666;\">More from the MBF Media Network<\/p>\n<div style=\"padding:14px 18px;border-left:3px solid #0bb7fd;background:#fafafa;margin-bottom:6px;\">\n<div style=\"font-size:0.7em;font-weight:700;color:#0bb7fd;text-transform:uppercase;letter-spacing:0.12em;margin-bottom:4px;\">cloudmagazin<\/div>\n<p><a href=\"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/dra-stability-forces-gpu-workloads-to-reimagine-themselves\/\" style=\"font-weight:600;line-height:1.4;color:#1a1a1a;text-decoration:none;\">Kubernetes 1.36 Haru is GA: What cgroup-v1 deprecation and DRA stability mean for DACH enterprise clusters<\/a>\n<\/div>\n<div style=\"padding:14px 18px;border-left:3px solid #202528;background:#fafafa;margin-bottom:6px;\">\n<div style=\"font-size:0.7em;font-weight:700;color:#202528;text-transform:uppercase;letter-spacing:0.12em;margin-bottom:4px;\">mybusinessfuture<\/div>\n<p><a href=\"https:\/\/mybusinessfuture.com\/mai-aktionsmonat-was-kostenfreie-ki-cybersecurity-tools-fuer-mittelstaendler-ohne-eigene-it-security-abteilung-leisten-koennen\/\" style=\"font-weight:600;line-height:1.4;color:#1a1a1a;text-decoration:none;\">mAI Action Month: What free AI cybersecurity tools can do for SMEs without their own IT security department<\/a>\n<\/div>\n<div style=\"padding:14px 18px;border-left:3px solid #d65663;background:#fafafa;\">\n<div style=\"font-size:0.7em;font-weight:700;color:#d65663;text-transform:uppercase;letter-spacing:0.12em;margin-bottom:4px;\">digital-chiefs<\/div>\n<p><a href=\"https:\/\/www.digital-chiefs.de\/nvidia-vera-rubin-in-vollproduktion-was-1-10-token-kosten-fuer-cio-infrastruktur-roadmaps-und-ki-budgetplanung-2026-2027-bedeuten\/\" style=\"font-weight:600;line-height:1.4;color:#1a1a1a;text-decoration:none;\">NVIDIA Vera Rubin in full production: What 1\/10 token costs mean for CIO infrastructure roadmaps and AI budget planning 2026-2027<\/a>\n<\/div>\n<\/div>\n<p style=\"text-align:right;\"><em>Photo: Pexels<\/em><\/p>\n<p style=\"text-align:right;font-style:italic;color:#666;\"><em>Source title image: Pexels \/ panumas nikhomkhai (px:17323801)<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"Amazon S3 Files is generally available since April 7, 2026. The feature allows mounting S3 buckets directly as an NFS-compatible file system in EC2, EKS, and Lambda \u2013 without code changes to existing applications. For DACH teams with legacy workloads, ML pipelines, and shared storage requirements, this fundamentally changes the architecture\u2026 <a class=\"view-article\" href=\"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/\">\u00bb Article<\/a>","protected":false},"author":87,"featured_media":39204,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_yoast_wpseo_meta-robots-noindex":"","_yoast_wpseo_meta-robots-nofollow":"","_yoast_wpseo_meta-robots-adv":"","_yoast_wpseo_canonical":"","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_opengraph-image":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero.jpg","_yoast_wpseo_opengraph-image-id":0,"_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_yoast_wpseo_twitter-image":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero.jpg","_yoast_wpseo_twitter-image-id":0,"pre_headline":"","bildquelle":"","teasertext":"","language":"de","_evm_translation_lang":"","featured_post":0,"featured_post_sortierung":0,"_wp_old_slug":[],"footnotes":""},"categories":[921],"tags":[],"industry":[],"class_list":["post-40158","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news"],"evm_reading_time_minutes":8,"wpml_language":"en","wpml_translation_of":39177,"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Amazon S3 Files: NFS Mounts Without Code Changes<\/title>\n<meta name=\"description\" content=\"Amazon S3 Files GA: Mount S3 via NFS for ML, Lambda &amp; EKS. Check costs, latency &amp; setup in our practical guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Amazon S3 Files: NFS Mounts Without Code Changes\" \/>\n<meta property=\"og:description\" content=\"Amazon S3 Files GA: Mount S3 via NFS for ML, Lambda &amp; EKS. Check costs, latency &amp; setup in our practical guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/\" \/>\n<meta property=\"og:site_name\" content=\"cloudmagazin\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/cloudmagazincom\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-03T13:35:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-12T10:37:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero.jpg\" \/>\n<meta name=\"author\" content=\"Benedikt Langer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@cloudmagazin\" \/>\n<meta name=\"twitter:site\" content=\"@cloudmagazin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benedikt Langer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/\"},\"author\":{\"name\":\"Benedikt Langer\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#\\\/schema\\\/person\\\/9275a9f6961b8f365c1548e316b21d19\"},\"headline\":\"Amazon S3 Files: NFS Mounts Without Code Changes\",\"datePublished\":\"2026-05-03T13:35:00+00:00\",\"dateModified\":\"2026-07-12T10:37:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/\"},\"wordCount\":1407,\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero-1-scaled.jpg\",\"articleSection\":[\"News\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/\",\"url\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/\",\"name\":\"Amazon S3 Files: NFS Mounts Without Code Changes\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero-1-scaled.jpg\",\"datePublished\":\"2026-05-03T13:35:00+00:00\",\"dateModified\":\"2026-07-12T10:37:05+00:00\",\"description\":\"Amazon S3 Files GA: Mount S3 via NFS for ML, Lambda & EKS. Check costs, latency & setup in our practical guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero-1-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero-1-scaled.jpg\",\"width\":2560,\"height\":1709,\"caption\":\"Modernes Rechenzentrum mit Server-Racks und blauer LED-Beleuchtung \u2014 Cloud-Speicher-Infrastruktur f\u00fcr ML-Pipelines und EKS-Workloads. (Foto: P. N. (px:17323801) \\\/ Pexels)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/2026\\\/05\\\/03\\\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Amazon S3 Files: NFS Mounts Without Code Changes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/\",\"name\":\"cloudmagazin\",\"description\":\"Inspiration f\u00fcr Businessentscheider\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#organization\",\"name\":\"cloudmagazin\",\"url\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cloudmagazin-logo-klein_menu.jpg\",\"contentUrl\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cloudmagazin-logo-klein_menu.jpg\",\"width\":150,\"height\":150,\"caption\":\"cloudmagazin\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/cloudmagazincom\\\/\",\"https:\\\/\\\/x.com\\\/cloudmagazin\",\"https:\\\/\\\/www.linkedin.com\\\/showcase\\\/cloudmagazin\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/#\\\/schema\\\/person\\\/9275a9f6961b8f365c1548e316b21d19\",\"name\":\"Benedikt Langer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/evernine-bilder-benedikt_1.jpg.jpg\",\"url\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/evernine-bilder-benedikt_1.jpg.jpg\",\"contentUrl\":\"https:\\\/\\\/www.cloudmagazin.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/evernine-bilder-benedikt_1.jpg.jpg\",\"caption\":\"Benedikt Langer\"},\"description\":\"Benedikt Langer focuses on IT and cloud topics as an editor, with a particular emphasis on artificial intelligence, digital infrastructure, and strategic cloud architectures. In his articles, he examines technological developments from the perspective of decision-makers, integrating them into economic, regulatory, and organizational contexts. In addition to Cloudmagazin, he regularly contributes to other specialized magazines within Evernine Media.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/benedikt-langer\\\/\"],\"url\":\"https:\\\/\\\/www.cloudmagazin.com\\\/en\\\/author\\\/benedikt\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Amazon S3 Files: NFS Mounts Without Code Changes","description":"Amazon S3 Files GA: Mount S3 via NFS for ML, Lambda & EKS. Check costs, latency & setup in our practical guide.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/","og_locale":"en_US","og_type":"article","og_title":"Amazon S3 Files: NFS Mounts Without Code Changes","og_description":"Amazon S3 Files GA: Mount S3 via NFS for ML, Lambda & EKS. Check costs, latency & setup in our practical guide.","og_url":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/","og_site_name":"cloudmagazin","article_publisher":"https:\/\/www.facebook.com\/cloudmagazincom\/","article_published_time":"2026-05-03T13:35:00+00:00","article_modified_time":"2026-07-12T10:37:05+00:00","og_image":[{"url":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero.jpg","type":"","width":"","height":""}],"author":"Benedikt Langer","twitter_card":"summary_large_image","twitter_image":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero.jpg","twitter_creator":"@cloudmagazin","twitter_site":"@cloudmagazin","twitter_misc":{"Written by":"Benedikt Langer","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/#article","isPartOf":{"@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/"},"author":{"name":"Benedikt Langer","@id":"https:\/\/www.cloudmagazin.com\/en\/#\/schema\/person\/9275a9f6961b8f365c1548e316b21d19"},"headline":"Amazon S3 Files: NFS Mounts Without Code Changes","datePublished":"2026-05-03T13:35:00+00:00","dateModified":"2026-07-12T10:37:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/"},"wordCount":1407,"publisher":{"@id":"https:\/\/www.cloudmagazin.com\/en\/#organization"},"image":{"@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero-1-scaled.jpg","articleSection":["News"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/","url":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/","name":"Amazon S3 Files: NFS Mounts Without Code Changes","isPartOf":{"@id":"https:\/\/www.cloudmagazin.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero-1-scaled.jpg","datePublished":"2026-05-03T13:35:00+00:00","dateModified":"2026-07-12T10:37:05+00:00","description":"Amazon S3 Files GA: Mount S3 via NFS for ML, Lambda & EKS. Check costs, latency & setup in our practical guide.","breadcrumb":{"@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/#primaryimage","url":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero-1-scaled.jpg","contentUrl":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/05\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines-lambda-eks-dach-2026-cover-hero-1-scaled.jpg","width":2560,"height":1709,"caption":"Modernes Rechenzentrum mit Server-Racks und blauer LED-Beleuchtung \u2014 Cloud-Speicher-Infrastruktur f\u00fcr ML-Pipelines und EKS-Workloads. (Foto: P. N. (px:17323801) \/ Pexels)"},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudmagazin.com\/en\/2026\/05\/03\/amazon-s3-files-ga-nfs-mount-object-storage-ml-pipelines\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cloudmagazin.com\/en\/home\/"},{"@type":"ListItem","position":2,"name":"Amazon S3 Files: NFS Mounts Without Code Changes"}]},{"@type":"WebSite","@id":"https:\/\/www.cloudmagazin.com\/en\/#website","url":"https:\/\/www.cloudmagazin.com\/en\/","name":"cloudmagazin","description":"Inspiration f\u00fcr Businessentscheider","publisher":{"@id":"https:\/\/www.cloudmagazin.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.cloudmagazin.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.cloudmagazin.com\/en\/#organization","name":"cloudmagazin","url":"https:\/\/www.cloudmagazin.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudmagazin.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2020\/04\/cloudmagazin-logo-klein_menu.jpg","contentUrl":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2020\/04\/cloudmagazin-logo-klein_menu.jpg","width":150,"height":150,"caption":"cloudmagazin"},"image":{"@id":"https:\/\/www.cloudmagazin.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/cloudmagazincom\/","https:\/\/x.com\/cloudmagazin","https:\/\/www.linkedin.com\/showcase\/cloudmagazin\/"]},{"@type":"Person","@id":"https:\/\/www.cloudmagazin.com\/en\/#\/schema\/person\/9275a9f6961b8f365c1548e316b21d19","name":"Benedikt Langer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/01\/evernine-bilder-benedikt_1.jpg.jpg","url":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/01\/evernine-bilder-benedikt_1.jpg.jpg","contentUrl":"https:\/\/www.cloudmagazin.com\/wp-content\/uploads\/2026\/01\/evernine-bilder-benedikt_1.jpg.jpg","caption":"Benedikt Langer"},"description":"Benedikt Langer focuses on IT and cloud topics as an editor, with a particular emphasis on artificial intelligence, digital infrastructure, and strategic cloud architectures. In his articles, he examines technological developments from the perspective of decision-makers, integrating them into economic, regulatory, and organizational contexts. In addition to Cloudmagazin, he regularly contributes to other specialized magazines within Evernine Media.","sameAs":["https:\/\/www.linkedin.com\/in\/benedikt-langer\/"],"url":"https:\/\/www.cloudmagazin.com\/en\/author\/benedikt\/"}]}},"_links":{"self":[{"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/posts\/40158","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/users\/87"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/comments?post=40158"}],"version-history":[{"count":6,"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/posts\/40158\/revisions"}],"predecessor-version":[{"id":48834,"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/posts\/40158\/revisions\/48834"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/media\/39204"}],"wp:attachment":[{"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/media?parent=40158"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/categories?post=40158"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/tags?post=40158"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.cloudmagazin.com\/en\/wp-json\/wp\/v2\/industry?post=40158"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}