AWS EC2 Instance Store
Jump to navigation
Jump to search
An AWS EBS Volume is a block level storage volume (filesystem volume) provided by the AWS EBS service.
- Context:
- It can be attached to an EC2 Instance.
- It can (often) be used as 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.
- Counter-Example(s):
- an AWS EC2 Instance Store.
- an AWS S3 Bucket.
- See: Network Attached Storage, Backed-up Filesystem.
References
2016
- http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Storage.html
- QUOTE: Amazon EC2 Instance Store: Many instances can access storage from disks that are physically attached to the host computer. This disk storage is referred to as instance store. Instance store provides temporary block-level storage for instances. The data on an instance store volume persists only during the life of the associated instance; if you stop or terminate an instance, any data on instance store volumes is lost.
- http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html
- QUOTE: An instance store provides temporary block-level storage for your 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.
An instance store consists of one or more instance store volumes exposed as block devices. The size of an instance store varies by instance type. The virtual devices for instance store volumes are ephemeral[0-23]. Instance types that support one instance store volume have ephemeral0. Instance types that support two instance store volumes have ephemeral0 and ephemeral1, and so on. While an instance store is dedicated to a particular instance, the disk subsystem is shared among instances on a host computer.
- QUOTE: An instance store provides temporary block-level storage for your 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.