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)

Queue limits

When working with SQS queues, the service is designed to have some limitations as far as the size and duration of operations are concerned. The following limits apply to the SQS:

  • The queue names need to be unique within a region and can have up to 80 characters
  • The queues should have no more than 50 tags associated with them
  • The maximum message size is 256 KB (including all metadata)
  • A maximum of 10 metadata attributes are supported per message
  • The message delivery timeout can be between 0 and 15 seconds
  • The message retention period can be between 60 seconds and 14 days (default is 4 days)
  • The visibility timeout can be set between 0 seconds and 12 hours (default is 30 seconds)
  • The FIFO queues support up to 300 transactions per second (3000 messages in batches)
  • Batches of up to 10 messages can be read or written to the queue

Other limitations apply to policies and...