CSC/ECE 517 Spring 2015/ch1a 7 SA: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 5: Line 5:
Amazon Simple Storage Service (Amazon S3) is a remote, scalable, secure, and cost efficient storage space service provided by Amazon. Users are able to access their storage on Amazon S3 from the web via REST [http://en.wikipedia.org/wiki/Representational_state_transfer] HTTP [http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol], or SOAP [http://en.wikipedia.org/wiki/SOAP] making their data accessible from virtually anywhere in the world.
Amazon Simple Storage Service (Amazon S3) is a remote, scalable, secure, and cost efficient storage space service provided by Amazon. Users are able to access their storage on Amazon S3 from the web via REST [http://en.wikipedia.org/wiki/Representational_state_transfer] HTTP [http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol], or SOAP [http://en.wikipedia.org/wiki/SOAP] making their data accessible from virtually anywhere in the world.


S3 is an example of an object storage and is not like a traditional hierarchical file systems. Data is stored as objects and a collection of objects is stored in a bucket. Every object must be contained within a Bucket. Within each bucket, any number of objects can be stored and each object is identified by a user defined key. Each object is identified by an unique key and composed of user data (up to 5 Terabytes) and metadata (up to 2 kilobytes). There is a limit of 100 buckets per account. S3 provides APIs to interact with buckets and objects [http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html]. Buckets can be configured to belong to a particular Region (US, EU, Asia Pacific etc.) and by default Amazon also does versioning for each object stored. Each object in S3 is identified by a bucket, an object ID and a version ID. [http://docs.aws.amazon.com/AmazonS3/latest/dev/Introduction.html].
S3 is an example of an object storage unlike a traditional hierarchical file system. Data is stored as objects and a collection of objects is stored in a bucket. Every object, composed of user data (up to 5 Terabytes) and metadata (up to 2 kilobytes), is identified by a user defined key and must be contained within a bucket (up to 100 buckets are available per account). Buckets can be configured to be hosted in a particular region (US, EU, Asia Pacific etc.) in order to optimize latency and are versioned by default. [http://docs.aws.amazon.com/AmazonS3/latest/dev/Introduction.html]


Amazon S3 launched in March of 2006 in the United States [http://phx.corporate-ir.net/phoenix.zhtml?c=176060&p=irol-newsArticle&ID=830816] and in Europe in November of 2007 [http://phx.corporate-ir.net/phoenix.zhtml?c=176060&p=irol-newsArticle&ID=1072982]. Since its inception, Amazon S3 has reported tremendous growth, now up to two trillion objects and on average 1.1 million requests every second! [https://aws.amazon.com/blogs/aws/amazon-s3-two-trillion-objects-11-million-requests-second/].
Amazon S3 launched in March of 2006 in the United States [http://phx.corporate-ir.net/phoenix.zhtml?c=176060&p=irol-newsArticle&ID=830816] and in Europe in November of 2007 [http://phx.corporate-ir.net/phoenix.zhtml?c=176060&p=irol-newsArticle&ID=1072982]. Since its inception, Amazon S3 has reported tremendous growth, now up to two trillion objects and on average 1.1 million requests every second! [https://aws.amazon.com/blogs/aws/amazon-s3-two-trillion-objects-11-million-requests-second/].


==Examples==
==Examples==

Revision as of 22:40, 31 January 2015

https://docs.google.com/a/ncsu.edu/document/d/1TgBtp7flIPKJwkkShgtcIkt--mtHuwVHsQX6Tpzj1rc/edit

Background

Amazon Simple Storage Service (Amazon S3) is a remote, scalable, secure, and cost efficient storage space service provided by Amazon. Users are able to access their storage on Amazon S3 from the web via REST [1] HTTP [2], or SOAP [3] making their data accessible from virtually anywhere in the world.

S3 is an example of an object storage unlike a traditional hierarchical file system. Data is stored as objects and a collection of objects is stored in a bucket. Every object, composed of user data (up to 5 Terabytes) and metadata (up to 2 kilobytes), is identified by a user defined key and must be contained within a bucket (up to 100 buckets are available per account). Buckets can be configured to be hosted in a particular region (US, EU, Asia Pacific etc.) in order to optimize latency and are versioned by default. [4]

Amazon S3 launched in March of 2006 in the United States [5] and in Europe in November of 2007 [6]. Since its inception, Amazon S3 has reported tremendous growth, now up to two trillion objects and on average 1.1 million requests every second! [7].

Examples