Book Image

AWS Certified SysOps Administrator ??? Associate Guide

By : Marko Sluga
Book Image

AWS Certified SysOps Administrator ??? Associate Guide

By: Marko Sluga

Overview of this book

AWS certifications are becoming one of the must have certifications for any IT professional working on an AWS Cloud platform. This book will act as your one stop preparation guide to validate your technical expertise in deployment, management, and operations on the AWS platform. Along with exam specific content this book will also deep dive into real world scenarios and hands-on instructions. This book will revolve around concepts like teaching you to deploy, manage, and operate scalable, highly available, and fault tolerant systems on AWS. You will also learn to migrate an existing on-premises application to AWS. You get hands-on experience in selecting the appropriate AWS service based on compute, data, or security requirements. This book will also get you well versed with estimating AWS usage costs and identifying operational cost control mechanisms. By the end of this book, you will be all prepared to implement and manage resources efficiently on the AWS cloud along with confidently passing the AWS Certified SysOps Administrator – Associate exam.
Table of Contents (26 chapters)

Read consistency

Due to the reality of the CAP Theorem, discussed in the ACID versus BASE section of this chapter, DynamoDB chooses availability and partition tolerance over consistency. The consistency of DynamoDB is still remarkable, as any changes to an item will be replicated to the backend within a second of the write occurring. But a second can be a fairly long time when we possibly have thousands or even tens of thousands of concurrent reads happening every second against our DynamoDB table.

This fact essentially means that a piece of data that we have just written might be inconsistently delivered to thousands of clients during the time it takes to replicate the new data across the cluster. We try to mitigate this fact by providing the ability to perform both eventually consistent and strongly consistent reads from our DynamoDB table. We are able to select either read...