Search code examples
amazon-ec2aws-ebs

Does d2.xlarge instance has EBS storage?


We are trying to use the d2.xlarge instance type for worker nodes in Hadoop cluster.

When i look at the AWS Site https://aws.amazon.com/ec2/instance-types/

It says HDD based local storage.

Is it EBS Storage? or attached to the EC2 instance?


Solution

  • You can attach Elastic Block Store (EBS) volumes to any Amazon EC2 instance. EBS is persistent disk storage.

    Some EC2 instances also have Instance Store, which is locally-attached disk storage. If the instance is stopped or terminated, the contents of Instance Store is lost.

    Instance Store is popular for use with Amazon EMR because it provides very large amounts of storage for HDFS. However, please be aware that the data is lost if the cluster is terminated.

    The d2.xlarge instance type has 3 x 2000 GB instance store drives, which are stored on magnetic disk. This is in addition to any EBS volumes you attach.