mooc-notes

Notes from online courses

View on GitHub

AWS Storage Services

AWS facilitates movement from DCs to Cloud because of

Why so many storage services? For the same reason why there are so many on-premise storage options:

which is that different benefits and features are provided by different options:

Data storage categorization

  1. Block
    1. Data is stored in chunks known as blocks
    2. Blocks are stored on a volume and attached to a single instance
    3. Provide very low latency data access
    4. Comparable to DAS storage used on premises
  2. File
    1. Data is stored as separate files with a series of directories forming a data structure hierarchy
    2. Data is stored within a file system
    3. Shared access is provided for multiple users
    4. Comparable to NAS storage used on premises
  3. Object
    1. Each object does not conform to a data structure hierarchy. Objects are stored across a flat address space
    2. Objects are referenced by a unique key
    3. Each object can also have associated metadata to help categorize and identify the object.