🖋️
AWS CCP Notes by Karan Singh
  • Intro
  • The Absolute Basics
  • 6 Advantages of Cloud Computing
  • IAM
    • IAM - Identity and Access Management
  • Serverless Services
  • EC2
    • EC2 - Elastic Compute Cloud
    • EC2 Storage
    • EC2 Purchasing Options
  • ELB & ASG
    • Scalability and Elasticity
    • Elastic Load Balancing
    • Auto Scaling
  • S3
    • Buckets and Objects
    • S3 Security
    • S3 Replication
    • S3 Storage Classes
    • Snowball and Snowmobile
  • Databases/Analytics
    • Aurora
    • RDS
    • ElastiCache
    • DynamoDB
    • DocumentDB
    • Redshift
    • Neptune
  • Analytics
    • EMR
    • Athena
    • DMS
    • Glue
  • Other computing services
    • ECS
    • Fargate
    • Elastic Container Registry
    • EKS
    • Lambda
    • Batch
    • Lightsail
  • Deployment & Provisioning
    • CloudFormation
    • Elastic Beanstalk
    • CodeDeploy
    • Systems Manager
    • OpsWorks
    • QuickStart
    • Marketplace
  • Content Delivery
    • Route 53
    • CloudFront
    • S3 Transfer Acceleration
    • Global Accelerator
  • Communication and Step Functions
    • SQS
    • SNS
    • SES
    • Step Functions
  • Monitoring
    • CloudWatch
    • CloudTrail
    • X-Ray
    • Service Health Dashboard
    • Personal Health Dashboard
  • VPC & Networking
    • VPC
    • Subnets
    • Internet Gateway & NAT Gateway
    • NACL & Security Groups
    • VPC Flow Logs
    • VPC Peering
    • VPC Endpoints
    • Direct Connect & Site-to-site VPN
    • Transit Gateway
  • Shared Responsibility Model
    • Shared Responsibility Model
    • RDS
    • S3
  • Security & Compliance
    • WAF & Shield
    • Penetration Testing
    • KSM & CloudHSM
    • Secrets Manager
    • Artifact
    • GuardDuty
    • Inspector
    • Config
    • Macie
  • Machine Learning
    • Rekognition
    • Transcribe
    • Polly
    • Lex
    • Connect
    • Comprehend
    • SageMaker
  • Organizations
    • Organizations
    • Consolidated Billing
  • Pricing
    • Free Services
    • EC2 Pricing
    • Lambda Pricing
    • ECS Pricing
    • EBS Pricing
    • S3 Pricing
    • RDS Pricing
    • CloudFront Pricing
    • Networking Pricing
  • Billing & Support
    • TCO Calculator
    • Simple Monthly Calculator/Pricing Calculator
    • Billing Dashboard
    • Cost Allocation Tags
    • Cost & Usage Reports
    • Cost Explorer
    • Billing Alarms
    • Budgets
    • Trusted Advisor
    • AWS Support Plans
  • Advanced Identity
    • Cognito
    • Directory Services
    • Single Sign-On (SSO)
  • Architecting On The Cloud
    • Well-Architected Framework & Best Practices
      • 1) Operational Excellence
      • 2) Security
      • 3) Reliability
      • 4) Performance Efficiency
      • 5) Cost Optimization
  • AWS Ecosystem
  • AZ, Regional and Global Services
Powered by GitBook
On this page
  • EBS (Elastic Block Store) Volumes:
  • EBS (Elastic Block Store) Snapshots:
  • EC2 Instance Store:
  • EFS (Elastic File Storage):

Was this helpful?

  1. EC2

EC2 Storage

EBS (Elastic Block Store) Volumes:

  • Network drive which you can just attach to your EC2 instance (so almost like plugging in a USB flash drive into your computer where the USB flash drive is the EBS volume and your computer is the EC2 instance) and also, because it's one USB stick, you can only plug it into one computer at a time, so EBS volumes can only be mounted to one EC2 instance at a time).

  • Tied to only one availability zone and can only be attached to instances in the same availability zone.

  • They aren't actually a physical drive, they are a "network drive" so there might be some latency to communicate between the instance and the volume because it is across a network.

EBS (Elastic Block Store) Snapshots:

  • Basically, it's a backup of your EBS volume; simple as that. This is especially useful for using the same EBS volume across an availability zone or region because EBS volumes are only for one AZ.

EC2 Instance Store:

  • Basically a godlike version of EBS volumes (so much faster and higher I/O speeds and stuff) but they lose everything once the EC2 instance is stopped.

EFS (Elastic File Storage):

  • It's just a network file system (NFS) which can be mounted to hundreds of different EC2 instances but the instances can only be Linux instances and they can be all across a region, so different Availability Zones within the same Region.

  • More expensive than EBS.

PreviousEC2 - Elastic Compute CloudNextEC2 Purchasing Options

Last updated 4 years ago

Was this helpful?