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

Chapter 4. Patterns for Processing Static Data

A common topic that everyone in technology comes across is static data. Static data is just that: data that doesn't change. Some examples of static data would be HTML web pages with CSS and JavaScript, XML, binary files, and so on. When it comes to this type of data, the common issue that arises out of operations or development is what to do with it to get it to the end user.

Since this book is aimed at Cloud infrastructure and has been heavily tied to web applications, it might be obvious that the static data we will use throughout the examples will be binary data and static HTML. Let's suppose you have some static web pages such as documentation that needs to be accessible to an end user. We could easily just create a virtual machine to host it using Nginx or Apache but we are stuck again with having to solve redundancy, fail over, and high availability.

Instead of creating a virtual machine, load balancers, backup policies, and causing more...