EC2 Instance Storage + Storage Classes Flashcards
Types of containers in AWS
- Amazon Elastic Container - ECR
- Amazon Elastic Container Service - ECS
- Amazon Elastic Kubernetes Service - EKS
ECR
Amazon Elastic Container
Stores, shares, and deploy container software
ECS
Amazon Elastic Container Service
- Fully managed and serverless using Fargate
- Run on EC2, Fargate
- Supports Docker and Docker Compose CLI
EKS
Amazon Elastic Kubernetes Service
- Fully managed (EKS) open-source system
- Can run on EC2, Fargate, EKS on outposts
- Supports Kubernetes
You need to use Docker to manage your newly deployed container-based application. Which AWS service can help you manage the app?
ECS - Amazon Elastic Container Service
What is Fargate
It is a pay-as-you-go auto-scaling compute engine.
1. You build your container image
2. Define memory and compute resources
3. Run and manage container resources
It does not share kernels, CPU, memory resources, elastic network interfacing that provide isolation
Like a minifactory that you just ask what you need and this will create everything for you. No need to worry on the hows
Fargate vs Lambda
- Lambda run < 15 mins
- Fargate >15 mins
- Lambda and Fargate are both serverless
- Lambda has a ALWAYS free-tier
- Fargate you pay for the resources you used (vCPUs, memory and storage)
What is amazon EBS
Elastic Block Store
- It’s directly attached
- Reliable (high availability and durability)
- Ensures data is preserved, even if the instance crashes.
Scalability.
- EBS can be expanded on the fly without any downtime.
- EBS also has snapshot capabilities.
This means it can take backups and also use these backups to create new volumes.
EBS use cases are hosting relational or NoSQL databases, data warehousing and big data analytics,
and also enterprise resource planning and customer relationship management applications.
What is EFS
Elastic File System
EFS is a scalable file storage solution for EC2 and other AWS services.
Some key features of EFS is it’s fully managed.
This simplifies the complexities of deploying and maintaining advanced file systems.
EFS grows and shrinks automatically as you add and remove files.
It’s designed to be accessed by multiple EC2 instances
from various AWS services simultaneously.
Instance Stores
Temporary block level storage directly attached to the EC2 instance.
Unlike EBS, the storage is ephemeral, and it’s ideal for temporary data.
Some key features of instance stores is its high I/O performance.
Data on instance store volumes is lost if the instance stops, terminates, or crashes.
No extra cost.
Temporary storage of information like caches or buffers.
It’s suitable for workloads that need to write and discard large amounts of data.
How alike or different are
EBS - EFS - Instance Store
EBS and EFS –> you gotta pay
Instance Store –> free but ephimeral one instance disappears
Storage class - S3 Standard
- Frequently accessed data
- High throughput performance and low latency
- Can scale automatically
to handle your storage needs - across multiple devices in multiple facilities
Storage class - S3 Standard-Infrequent Access
- Data that’s less frequently accessed, but requires rapid access when needed
- Retrieval fee, it’s best for data accessed less frequently, but quickly when needed.
Storage class - S3 Intelligent-Tiering
- Data with unpredictable access patterns, it automatically moves data between two access tiers.
- Designed for savings in storage costs without performance impact.
Storage class - One Zone-Infrequent Access
- storing data in just one availability zone
- Cost-effective, but slightly less durable
than multiple zone options - Secondary backup or data that’s easily reproducible.