Skip to main content
  1. The AWS Mastery Question Bank: Architect Decision Matrix Hub/
  2. CLF-C02/

AWS CLF-C02 Drill: Hybrid Storage - The On-Premises Integration Pattern

Jeff Taakey
Author
Jeff Taakey
21+ Year Enterprise Architect | AWS SAA/SAP & Multi-Cloud Expert.

Jeff’s Insights
#

“Unlike generic exam dumps, Jeff’s Insights is designed to make you think like a Real-World Production Architect. We dissect this scenario by analyzing the strategic trade-offs required to balance operational reliability, security, and long-term cost across multi-service deployments.”

For CLF-C02 candidates, the confusion often lies in distinguishing between ’technically possible’ and ‘operationally efficient’. In production, this is about knowing exactly which AWS service bridges on-premises infrastructure with cloud storage while maintaining user experience. Let’s drill down.

The Certification Drill (Simulated Question)
#

Scenario
#

GlobalMedia Productions is a film studio with 200 video editors working from a centralized office campus. Their on-premises Network Attached Storage (NAS) system has reached 98% capacity with 500TB of raw footage and project files. The IT team needs to expand storage capacity without forcing editors to change their current workflow—they must continue accessing files through their existing mapped network drives with minimal latency for active projects. The CFO has mandated that the solution must avoid upfront hardware purchases and minimize ongoing operational overhead for the small 3-person IT team.

The Requirement:
#

Extend file storage capacity to the cloud while maintaining local network performance and minimizing operational complexity.

The Options
#

  • A) Create an Amazon S3 bucket for each user. Mount each bucket by using an S3 file system mounting utility.
  • B) Configure and deploy an AWS Storage Gateway file gateway. Connect each user’s workstation to the file gateway.
  • C) Move each user’s working environment to Amazon WorkSpaces. Set up an Amazon WorkDocs account for each user.
  • D) Deploy an Amazon EC2 instance and attach an Amazon Elastic Block Store (Amazon EBS) Provisioned IOPS volume. Share the EBS volume directly with the users.

Correct Answer
#

Option B.


The Expert’s Analysis
#

Correct Answer
#

Option B: Configure and deploy an AWS Storage Gateway file gateway. Connect each user’s workstation to the file gateway.

The Winning Logic
#

AWS Storage Gateway (File Gateway mode) is the canonical AWS solution for extending on-premises file storage to the cloud while preserving the user experience:

  • Transparent Integration: Appears as a standard SMB/NFS file share to users—no workflow changes required
  • Intelligent Caching: Frequently accessed files remain cached locally for low-latency access, while the full dataset is stored durably in Amazon S3
  • Managed Service: AWS handles the storage infrastructure, scaling, and durability (11 nines)
  • Operational Simplicity: Single appliance (virtual or hardware) serves all 200 users—no per-user configuration
  • Cost Model: Pay only for S3 storage used, no upfront hardware investment

For CLF-C02: When you see “extend on-premises storage” + “retain local performance” + “operationally efficient”, think Storage Gateway.

The Trap (Distractor Analysis)
#

Why not Option A (S3 buckets with mounting utilities)?
#

  • Operational Nightmare: Creating and managing 200 individual S3 buckets violates operational efficiency
  • User Burden: Requires each user to install and configure third-party mounting software
  • Performance Issues: Direct S3 mounts have higher latency than local file systems—no local caching layer
  • Licensing Costs: Many S3 file system utilities require commercial licenses at scale
  • Real-World Reality: This is technically possible but administratively unsustainable

Why not Option C (WorkSpaces + WorkDocs)?
#

  • Complete Workflow Disruption: Forces users to abandon their existing desktop environments and applications
  • Migration Complexity: Requires rebuilding 200 user workstations in the cloud
  • Cost Explosion: WorkSpaces charges per user per month (~$35-$75/user = $7,000-$15,000/month for 200 users)
  • Scope Creep: Solves a different problem (desktop virtualization) when only storage expansion is needed
  • Exam Trap: AWS loves to include “over-engineered” solutions that solve the problem but violate the efficiency requirement

Why not Option D (EC2 + EBS volume)?
#

  • Single Point of Failure: One EC2 instance serving 200 concurrent users creates availability risk
  • Capacity Limitation: EBS volumes max out at 64TB—may not accommodate future growth
  • Operational Burden: The IT team must manage OS patches, file system maintenance, backup scripts, and capacity planning
  • No Cloud Durability: EBS is tied to a single Availability Zone—doesn’t leverage S3’s cross-region durability
  • CLF-C02 Red Flag: This is the “build it yourself on EC2” anti-pattern—exams favor managed services

The Technical Blueprint
#

graph TD A[Video Editors <br/> 200 Workstations] -->|SMB/NFS Protocol| B[Storage Gateway <br/> File Gateway Appliance] B -->|Frequently Accessed Files <br/> Cached Locally| C[Local Cache <br/> Low Latency Access] B -->|Asynchronous Upload| D[Amazon S3 Bucket <br/> Durable Storage 500TB+] D -->|Optional| E[S3 Lifecycle Policies <br/> Glacier for Archives] style B fill:#FF9900,stroke:#232F3E,stroke-width:3px,color:#fff style D fill:#569A31,stroke:#232F3E,stroke-width:2px,color:#fff style A fill:#232F3E,stroke:#FF9900,stroke-width:2px,color:#fff

How It Works:

  1. File Gateway is deployed as a VM on existing on-premises infrastructure
  2. Users access it via standard network file shares (no client changes)
  3. Active working set is cached on the gateway’s local disks (low latency)
  4. Complete dataset is asynchronously stored in S3 (unlimited capacity)
  5. Gateway manages cache eviction using LRU (Least Recently Used) algorithm

The Comparative Analysis
#

Option Operational Overhead User Impact Scalability Monthly Cost (Est.) Use Case Fit
A) S3 + Mount Utilities High (200 endpoints) High (new tools) Unlimited Low ($1,150*) DIY enthusiasts only
B) Storage Gateway Low (managed) None (transparent) Unlimited Medium ($1,200)** ✅ Hybrid storage extension
C) WorkSpaces + WorkDocs Medium (VDI management) Extreme (new environment) High Very High ($8,400+) Full cloud migration
D) EC2 + EBS Very High (self-managed) None (transparent) Limited (64TB max) Medium ($2,500+***) Legacy lift-and-shift

Cost Assumptions (500TB storage):

  • *A: S3 Standard $11.50/TB = $5,750/mo (but impractical operationally)
  • **B: S3 via Gateway ~$1,150/mo + Gateway appliance costs
  • ***D: EC2 c5.2xlarge ($250/mo) + EBS io2 64TB ($2,200/mo) + over-provisioning for 200 users

Real-World Application
#

Exam Rule
#

“For the CLF-C02 exam, when you see ’extend on-premises storage’ + ‘retain local performance’ + ‘operationally efficient’, always select Storage Gateway. It’s AWS’s managed hybrid storage service.”

Real World
#

“In production, we’d also consider:

  • Volume Gateway if users need block storage (iSCSI) instead of file shares
  • AWS DataSync for one-time bulk migrations before enabling Storage Gateway
  • S3 Intelligent-Tiering on the backend bucket to automatically optimize storage costs
  • CloudWatch monitoring of cache hit rates to right-size the gateway appliance

However, the exam focuses on service selection, not optimization. Know that Storage Gateway has three modes: File Gateway (NFS/SMB), Volume Gateway (iSCSI), and Tape Gateway (VTL for backups).”


Key Takeaways for CLF-C02
#

  1. Storage Gateway = Hybrid Storage Bridge: The go-to service for connecting on-premises environments to AWS storage
  2. Operational Efficiency = Managed Services: Always favor AWS-managed solutions over self-built EC2 architectures
  3. Preserve User Experience: Solutions that require no client-side changes are preferred in hybrid scenarios
  4. Scope Discipline: Don’t over-engineer (WorkSpaces) when a targeted service (Storage Gateway) exists
  5. Shared Responsibility Model: Storage Gateway shifts infrastructure management to AWS while you control access policies

Disclaimer

This is a study note based on simulated scenarios for the AWS CLF-C02 exam. Service features and pricing are subject to change. Always consult official AWS documentation for production implementations.

The DevPro Network: Mission and Founder

A 21-Year Tech Leadership Journey

Jeff Taakey has driven complex systems for over two decades, serving in pivotal roles as an Architect, Technical Director, and startup Co-founder/CTO.

He holds both an MBA degree and a Computer Science Master's degree from an English-speaking university in Hong Kong. His expertise is further backed by multiple international certifications including TOGAF, PMP, ITIL, and AWS SAA.

His experience spans diverse sectors and includes leading large, multidisciplinary teams (up to 86 people). He has also served as a Development Team Lead while cooperating with global teams spanning North America, Europe, and Asia-Pacific. He has spearheaded the design of an industry cloud platform. This work was often conducted within global Fortune 500 environments like IBM, Citi and Panasonic.

Following a recent Master’s degree from an English-speaking university in Hong Kong, he launched this platform to share advanced, practical technical knowledge with the global developer community.


About This Site: AWS.CertDevPro.com


AWS.CertDevPro.com focuses exclusively on mastering the Amazon Web Services ecosystem. We transform raw practice questions into strategic Decision Matrices. Led by Jeff Taakey (MBA & 21-year veteran of IBM/Citi), we provide the exclusive SAA and SAP Master Packs designed to move your cloud expertise from certification-ready to project-ready.