ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 210 - DOP-C02 discussion

Report
Export

A company runs applications on Windows and Linux Amazon EC2 instances The instances run across multiple Availability Zones In an AWS Region. The company uses Auto Scaling groups for each application.

The company needs a durable storage solution for the instances. The solution must use SMB for Windows and must use NFS for Linux. The solution must also have sub-millisecond latencies. All instances will read and write the data.

Which combination of steps will meet these requirements? (Select THREE.)

A.
Create an Amazon Elastic File System (Amazon EFS) file system that has targets in multiple Availability Zones
Answers
A.
Create an Amazon Elastic File System (Amazon EFS) file system that has targets in multiple Availability Zones
B.
Create an Amazon FSx for NetApp ONTAP Multi-AZ file system.
Answers
B.
Create an Amazon FSx for NetApp ONTAP Multi-AZ file system.
C.
Create a General Purpose SSD (gp3) Amazon Elastic Block Store (Amazon EBS) volume to use for shared storage.
Answers
C.
Create a General Purpose SSD (gp3) Amazon Elastic Block Store (Amazon EBS) volume to use for shared storage.
D.
Update the user data for each application's launch template to mount the file system
Answers
D.
Update the user data for each application's launch template to mount the file system
E.
Perform an instance refresh on each Auto Scaling group.
Answers
E.
Perform an instance refresh on each Auto Scaling group.
F.
Update the EC2 instances for each application to mount the file system when new instances are launched
Answers
F.
Update the EC2 instances for each application to mount the file system when new instances are launched
Suggested answer: A, B, D

Explanation:

* Create an Amazon Elastic File System (Amazon EFS) File System with Targets in Multiple Availability Zones:

Amazon EFS provides a scalable and highly available network file system that supports the NFS protocol. EFS is ideal for Linux instances as it allows multiple instances to read and write data concurrently.

Setting up EFS with targets in multiple Availability Zones ensures high availability and durability.

* Create an Amazon FSx for NetApp ONTAP Multi-AZ File System:

Amazon FSx for NetApp ONTAP offers a fully managed file storage solution that supports both SMB for Windows and NFS for Linux.

The Multi-AZ deployment ensures high availability and durability, providing sub-millisecond latencies suitable for the application's performance requirements.

* Update the User Data for Each Application's Launch Template to Mount the File System:

Updating the user data in the launch template ensures that every new instance launched by the Auto Scaling group will automatically mount the appropriate file system.

This step is necessary to ensure that all instances can access the shared storage without manual intervention.

Example user data for mounting EFS (Linux)

#!/bin/bash

sudo yum install -y amazon-efs-utils

sudo mount -t efs fs-12345678:/ /mnt/efs

Example user data for mounting FSx (Windows):

By implementing these steps, the company can provide a durable storage solution with sub-millisecond latencies that supports both SMB and NFS protocols, meeting the requirements for both Windows and Linux instances.

Mounting EFS File Systems

Mounting Amazon FSx File Systems

asked 16/09/2024
Duncan Brundseaux
41 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first