Book Image

Implementing Cloud Design Patterns for AWS

Book Image

Implementing Cloud Design Patterns for AWS

Overview of this book

Table of Contents (18 chapters)
Implementing Cloud Design Patterns for AWS
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Summary


In this chapter, we touched on a few examples demonstrating how to handle data uploaded from an end user. Combining these patterns with previous and upcoming patterns will help us come up with robust and inventive solutions with minimal side effects. In the write proxy pattern, we created an FTP server to handle the authorization and shifting of the data from the instance into S3, with a web front-end to allow retrieval later. We then moved to the storage index pattern, which allowed us to optimize the end users' experience at the web front-end by utilizing a metadata store, resulting in a much quicker response and addition of some future search abilities. We then moved to the direct object upload pattern, which removed the need for any pre-processing of the data and allowed us to upload directly into S3 from an HTTP server using the S3 POST method.

In the next chapter, we will move to databases and discuss patterns on creating resilient database and data stores.