Questions tagged [amazon-ephemeral]

For questions with a specific dependency on AWS ephemeral disks, which are available on some instances.

An ephemeral disk is an instance store which provides temporary block-level storage for your AWS instance. This storage is located on disks that are physically attached to the host computer. Instance store is ideal for temporary storage of information that changes frequently, such as buffers, caches, scratch data, and other temporary content, or for data that is replicated across a fleet of instances, such as a load-balanced pool of web servers.

Ephemeral disk is typically faster than EBS volumes.

The main downside of ephemeral disks is that they lose all data after a power off/on cycle of the instance. The data will probably survive a simple reboot, but that's not guaranteed.

AWS instances classes i2/3, c5d, d2, f1, g2, h1, m1/2/3, m5d, z1d, x1 and x1e have one or more ephemeral disks available to them, in addition to EBS volumes you may choose to attach. A full list may be found at https://ec2instances.info/?min_storage=1

2 questions
7
votes
3 answers

Amazon AWS Ephemeral disks and RAID1

Some AWS instances have "ephemeral disks" attached, which are much faster than EBS. But ephemeral disks will be blank and uninitialised when your instance is stopped and started. The data on disk generally survives an instance reboot…
Criggie
  • 2,219
  • 13
  • 25
0
votes
1 answer

Optimal RAID configuration for EC2 instance store used for HDFS

I'm trying to determine if there is any practical advantage to configuring a RAID array on the instance store of a 3x d2.2xlarge instances being used for HDFS. Initially I planned to just mount each store and add it as an additional data directory…
John R
  • 383
  • 4
  • 13