Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Amazon S3 Essentials
Amazon S3 Essentials

Amazon S3 Essentials: Get started with Amazon S3 for virtually unlimited cloud and Internet storage

By Sunil Gulabani
R$173.99 R$80.00
Book Nov 2015 112 pages 1st Edition
eBook
R$173.99 R$80.00
Print
R$217.99
Subscription
Free Trial
eBook
R$173.99 R$80.00
Print
R$217.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Nov 3, 2015
Length 112 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781783554898
Vendor :
Amazon
Category :
Concepts :
Table of content icon View table of contents Preview book icon Preview Book

Amazon S3 Essentials

Chapter 1. Know-How about S3

The Amazon Simple Storage Service (Amazon S3) is an online object storage. It can be used to store and get any data via the following:

  • REST web service interface

  • SOAP web service interface

  • BitTorrent

Amazon S3 is easy to configure, and is a reliable and scalable storage that stores files (objects) at a nominal pricing along with high security. Neither the developers nor the system team have to worry about the data that is stored at or retrieved from Amazon S3. Amazon S3 manages the Web-Scale computing by itself.

The following concepts will be covered in this chapter:

  • The need for S3 and its advantages

  • Basic concepts of Amazon S3

  • Features of Amazon S3

  • Security

  • Integration

  • Use cases

The need for S3 and its advantages


Amazon S3 can be used for storing data for application usage as well as for backing up and archiving the data. It doesn't bind the files to be stored. We can store any file, which are treated as objects, in Amazon S3. Amazon uses S3 to run its own global network of websites (http://docs.aws.amazon.com/AmazonS3/latest/dev/Welcome.html).

We can store as much data as we want in Amazon S3; it doesn't restrict a user from storing any. Amazon charges the user for the storage that is actually used. So, it is quite inexpensive for the user, because he/she doesn't need to purchase storage externally.

Amazon S3 keeps the redundant data across multiple data centers for high scalability. The user can select the region where his/her data will be stored. This reduces the latency in storing and retrieving the data. Amazon S3 also offers security on the objects. The user can make the object publicly or privately accessible. We can also store encrypted data in Amazon S3, and it guarantees a server uptime of 99.9 percent.

Amazon S3 can be integrated with any application or services offered by Amazon, such as Amazon Elastic Compute Cloud (Amazon EC2), Amazon Elastic Block Storage (Amazon EBS), Amazon Glacier, and so on.

Subscribing to Amazon S3 is free, and you just need to pay for the bandwidth that you use and for whatever you are actually hosting. Small start-ups usually don't have an infrastructure to store their huge amount data. So, they opt for Amazon S3 to store their images, videos, files, and so on to minimize the costs.

Amazon S3 also provides website hosting services. You can directly upload your pages in Amazon S3, and map it to your domain.

Basic concepts of Amazon S3


Let's take a look at the basic S3 concepts:

Buckets

A bucket is a container in Amazon S3 where the files are uploaded. For using Amazon S3 to store a file, you need to create at least one bucket. Files (objects) are stored in buckets.

The following are a few features of buckets:

  • The bucket name should be unique because it is shared by all users.

  • Buckets can contain logical nested folders and subfolders. But it cannot contain nested buckets.

  • You can create a maximum of 100 buckets in a single account.

  • The bucket name can contain letters, numbers, periods, dash, and the underscore.

  • The bucket name should start with a letter or number, and it should be between 3 to 25 characters long.

Buckets can be managed via the following:

  • REST-style HTTP interface

  • SOAP interface

The following bucket looks similar to the Amazon S3 bucket to which we will upload files (objects):

A bucket doesn't have any size restrictions for the user. It can store objects of any size.

Buckets can be accessed via HTTP URLs as follows:

  • http://< BUCKET_NAME>.s3.amazonaws.com/< OBJECT_NAME >

  • http://s3.amazonaws.com/< BUCKET_NAME >/< OBJECT_NAME >

In the preceding URLs, BUCKET_NAME will be the name of the bucket that you provided while creating it. And OBJECT_NAME will be the name of the object that you provided while creating the object.

Objects

An object is a stored file in Amazon S3. Each object consists of a unique identifier, the user who uploaded the object, and permissions for other users to perform CRUD operations on it. Every object is stored in a bucket.

Objects can be managed via the following:

  • REST-style HTTP interface

  • SOAP interface

Objects can be downloaded via the following:

  • HTTP GET interface

  • BitTorrent protocol

The bucket can consist of any type of object, be it a PDF, text, video, audio, or any other kind of files.

Keys

While creating an object, a key will be assigned to the object. This key will be used for retrieving the object. The key should have the following features:

  • Be unique in the bucket

  • Contain alphabets, numbers, and special characters such as-, !, _, ., *, ', (, and )

Features of Amazon S3


The following are the main features of Amazon S3:

  • Allows website hosting: Amazon S3 allows users to host a website and map it to their domain. This is very cost effective, because the user pays only for what he/she uses. Moreover, the user doesn't require highly configured servers to serve the website.

  • Scalable: Amazon S3 doesn't restrict the user to any size limit for storing data. As it is a pay-as-you-go service, it stores the data, and the bill is generated accordingly. So the subscriber never faces a lack of space.

  • Reliable: Amazon S3 guarantees a server uptime of 99.9 percent. Therefore, the subscriber does not need to worry about data reliability.

  • Security: Amazon S3 provides a strong authentication mechanism where the stored data can be manipulated.

  • Standard interfaces: Amazon S3 provides the Representational State Transfer (REST) and Simple Object Access Protocol (SOAP) web services that can be consumed by any web framework.

  • Reduced Redundancy Storage: Amazon S3 provides the subscribers with an optional feature for storing data with the Reduced Redundancy Storage (RRS) storage class. It is basically used for storing non-critical and reproducible data at lower levels of redundancy. The cost of storing on an RRS storage class is quite less as compared to the standard storage class.

  • Torrent tracking and seeding: Amazon S3 can act as a torrent tracker, and seed the files from your machine.

  • Share the data with a temporary URL: Amazon S3 provides the subscriber the ability to share a URL, which auto-expires after a period of time. This helps the subscriber in sharing the data for a minimal period of time. Other users cannot use that data after the URL expires.

  • Logging: It provides the logging of all activities that are performed on bucket. This makes it easy for the subscriber to audit the activities on the bucket if he so wishes. Generally, when a subscriber hosts a website on Amazon S3, he enables the logging feature to track the activities.

  • Versioning: Amazon S3 allows storing of multiple versions of an object. It is basically used for recovering old data that is lost unintentionally.

  • Security: Amazon S3 provides security on buckets and objects. While creating the buckets, you can provide access control lists for other users of the bucket who can create, update, delete, or list objects. You can even set the geographical location of your data.

  • Integration: Amazon S3 can be integrated with several other services such as Amazon EC2, Amazon EBS, Amazon Glacier, and many other applications. Generally, developers use Amazon S3 for storing images, videos, or documents, and for accessing them via HTTP Get.

Case studies


The Amazon S3 can be utilized for different purposes:

  • File hosting: Companies often deploy their images, videos, audios, PDFs, DOCs, and other files in Amazon S3. This helps in loading the files directly from Amazon S3 without managing the on-premise infrastructure.

  • Storing data on mobile-based applications: Many users/companies go for Amazon S3 to store mobile app data. This becomes easy for user/companies to manage mobile user data over Amazon S3.

  • Static website hosting: Users can host their static website over Amazon S3 along with Amazon Route53.

  • Video Hosting: Companies upload their videos over Amazon S3, which can then be accessed on their website. Amazon S3 can also be configured to provide video streaming.

  • Backup: Users can keep a backup of their data, which will be securely and reliably stored in Amazon S3. Amazon S3 can also be configured to move the old data over to Amazon Glacier for archiving, as the Glacier costs less as compared to S3.

Use cases


Let's now see how Amazon S3 can be used in a project.

In the preceding diagram we have the following:

  • The Amazon Elastic Compute Cloud (EC2) machines where the application is deployed.

  • The Amazon Load Balancer will be responsible for redirecting the user request to specific applications deployed on the EC2 machines.

  • The Amazon Relational Database Service (RDS) is used for storing application data. It provides scalability, durability, and an easy-to-manage database service.

  • Amazon S3 where the image/audio/video files are stored.

  • And lastly, the front devices like a laptop, desktop, or mobile applications that send requests to the application.

The preceding example is a sample case study. There are various ways for integrating Amazon S3 in our application.

Summary


In this chapter, we introduced Amazon S3, and covered the basic concepts—buckets, objects, and keys. We explored the basic features of Amazon S3, which help in providing a reliable storage service at minimal cost. Amazon S3 can be consumed by startups, individual developers, or big size companies for data storage, backups for recovery, and so on. Amazon S3 also provides an extensibility for integration with other Amazon services and many other applications. In the next chapter, you will learn how to utilize the AWS S3 basic services like buckets, folders, and objects.

Left arrow icon Right arrow icon

Key benefits

  • Familiarize yourself with the concepts of Amazon S3
  • Understand basic operations of bucket, folders, and objects using Amazon S3 SDK Java
  • Leverage the power of Amazon S3 to effectively store and retrieve data [/

Description

Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, and highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. S3 is automatically web scalable and responds to the requirements of your application and traffic, and therefore offers a key element to help companies deal dynamically with any spike in traffic for their application (such as a free e-book offer). This book starts with the basics of the Amazon S3 and its features, and you will quickly get an understanding how to use the Amazon Management Console for Amazon S3 which is the simplest way to manage Amazon S3. Next, we will cover basic operations on bucket, folder, objects. Once the basic operations are understood, you will know how to use Amazon S3 using Java SDK. Following that, you will learn about Copy Objects and Multipart copy objects for large objects size. You will also learn to manage the life cycle of bucket and how to share resources to the different domain by configuring CORS. The book will then guide you through the development and deployment of a static website on Amazon S3 using different services of Amazon. By the end of the book, you will be able to create a scalable application using Amazon S3.

What you will learn

[*]Start with the basic concepts of Amazon S3 to get you going [*]Use Copy Object and Multipart Copy Object for objects of different sizes [*]Understand how to use the amazon management console for Amazon S3 [*]Learn how to use the AWS SDK of Java and consume the Amazon S3 [*]Get to grips with managing the bucket life cycle [*]Configure CORS to share resources to a different domain [*]Discover how to develop and deploy the static website on Amazon S3 using different services of Amazon

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Nov 3, 2015
Length 112 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781783554898
Vendor :
Amazon
Category :
Concepts :

Table of Contents

12 Chapters
Amazon S3 Essentials Chevron down icon Chevron up icon
Credits Chevron down icon Chevron up icon
About the Author Chevron down icon Chevron up icon
About the Reviewers Chevron down icon Chevron up icon
www.PacktPub.com Chevron down icon Chevron up icon
Preface Chevron down icon Chevron up icon
Know-How about S3 Chevron down icon Chevron up icon
S3 using the AWS Management Console Chevron down icon Chevron up icon
S3 using AWS SDK – Java (Part 1) Chevron down icon Chevron up icon
S3 using AWS SDK – Java (Part 2) Chevron down icon Chevron up icon
Deploying a Website on S3 Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Filter icon Filter
Top Reviews
Rating distribution
Empty star icon Empty star icon Empty star icon Empty star icon Empty star icon 0
(0 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 0%

Filter reviews by


No reviews found
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.