Skip to content

Commit c93d394

Browse files
author
abregman
committed
Add AWS questions
Mainly about EFS.
1 parent 779eb93 commit c93d394

File tree

1 file changed

+50
-8
lines changed

1 file changed

+50
-8
lines changed

exercises/aws/README.md

Lines changed: 50 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
### AWS Exercises
44

5+
Note: Provided solutions are using the AWS console. It's recommended you'll use IaC technologies to solve the exercises (e.g. Terraform).
6+
57
#### AWS - IAM
68

79
|Name|Topic|Objective & Instructions|Solution|Comments|
@@ -455,6 +457,54 @@ It is mostly used for cache and temporary data purposes.
455457
Yes, the data on instance store is lost when they are stopped.
456458
</b></details>
457459

460+
##### AWS Storage - EFS
461+
462+
<details>
463+
<summary>What is Amazon EFS?</summary><br><b>
464+
465+
[AWS Docs](https://aws.amazon.com/efs): "Amazon Elastic File System (Amazon EFS) provides a simple, scalable, fully managed elastic NFS file system for use with AWS Cloud services and on-premises resources."
466+
467+
In simpler words, it's a network file system you can mount on one or more EC2 instances.
468+
</b></details>
469+
470+
<details>
471+
<summary>True or False? EFS is locked into a single availability zone</summary><br><b>
472+
473+
False. EFS can be mounted across multiple availability zones.
474+
</b></details>
475+
476+
<details>
477+
<summary>What are some use cases for using EFS?</summary><br><b>
478+
479+
* Data sharing (e.g. developers working on the same source control)
480+
* Web serving
481+
* Content management
482+
</b></details>
483+
484+
<details>
485+
<summary>True or False? EFS only compatible with Linux based AMI</summary><br><b>
486+
487+
True
488+
</b></details>
489+
490+
<details>
491+
<summary>True or False? EFS requires the user to perform capacity planning as it doesn't scales automatically</summary><br><b>
492+
493+
False. EFS scales automatically and you pay-per-use.
494+
</b></details>
495+
496+
<details>
497+
<summary>Which EFS mode would you use if need maximum throughput?</summary><br><b>
498+
499+
Performance Mode (Max I/O): This provides high throughput and it's used for big data, media processing, etc.
500+
</b></details>
501+
502+
<details>
503+
<summary>What is the default EFS mode?</summary><br><b>
504+
505+
Performance Mode (General Purpose): Used for web servers, CMS, etc.
506+
</b></details>
507+
458508
##### AWS EC2 - Pricing Models
459509

460510
<details>
@@ -938,14 +988,6 @@ Learn more [here](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-accel
938988
<summary>What storage options are there for EC2 Instances?</summary><br><b>
939989
</b></details>
940990

941-
<details>
942-
<summary>What is Amazon EFS?</summary><br><b>
943-
944-
Amazon definition: "Amazon Elastic File System (Amazon EFS) provides a simple, scalable, fully managed elastic NFS file system for use with AWS Cloud services and on-premises resources."
945-
946-
Learn more [here](https://aws.amazon.com/efs)
947-
</b></details>
948-
949991
<details>
950992
<summary>What is AWS Snowmobile?</summary><br><b>
951993

0 commit comments

Comments
 (0)