SUMMARY
These notes are completely from memory
Target Tracking - This is the most "managed"; you just give it some parameters and it automatically does everything to stay within that parameter value.
Step Tracking - Preferred to simple tracking. Has step adjustments (the greater the size of the breach, the greater action it takes).
Simple Tracking - Has a cooldown period and very similar to step tracking but it doesn't have step adjustments.
You can use CloudWatch Events to do ECS tasks when a file is uploaded to an S3 bucket using the PUT (uploading) and DELETE (deleting) operation, so CloudWatch sees when you perform those 2 operation and when you do PUT or DELETE, it performs an ECS task.
Use high-cardinality attributes (means that they have distinct values for each item) and use composite attributes and cache popular things with DAX.
Use SSD EBS volumes for small and random (in any order) operations.
Use HDD EBS volumes for large and sequential (ordered) operations.
You can throttle API requests when there are lots of requests coming in to the API gateway and this can give better throughput.
CloudFront Origin Failure means that you have two origin groups (one is the primary one and the other one is secondary) and when there is a HTTP error code with the primary origin group, CloudFront switches to the secondary group.
EFS is only for Linux instances and is POSIX complaint.
FSx for Lustre is for very high performance computing (HPC) and compute intensive tasks.
FSx for Windows Servers is for
Storage Gateway is when you want to extend your on-premises storage to AWS, so you basically have unlimited storage. There are 3 types. File Gateway is for file protocols like NFS and SMB. Volume Gateway is for block storage using iSCSI connectivity and you can take point-in-time snapshots with EBS snapshots. Tape Gateway is for very long archival data for S3 Glacier and S3 Glacier Deep Archive; it is for backup and archives and it uses iSCSI virtual tape library (VTL). So, Volume and Tape are the ones which support iSCSI.
DataSync is a way to migrate your on-premises data to and from AWS.
Read Replicas are asynchronous and Multi-AZ deployments are synchronous and read replicas can be "promoted" to standalone RDS DB instances.
RDS Enhanced Monitoring is monitoring on the RDS DB instance itself, whereas CloudWatch Monitoring is monitoring on the hypervisor, so CloudWatch monitoring includes the work that hypervisor does, so it might not be a fair representation of the RDS DB instance. Also, RDS Enhanced Monitoring provides information on how different processes in the DB instance use the CPU and how it impacts the CPU performance and CloudWatch doesn't have that.
To move from S3 Standard to S3 IA S3 One Zone-IA, the data has to be in S3 Standard for at least 30 days.
Redshift Enhanced VPC routing means that you have access to VPC features but also all your COPY and PUT operations go through your VPC.
Redshift Spectrum is just a way to query data in S3 without having to load up the data into Redshift tables first.
AD Connector is part of the AWS Directory Services and it enables you to use all your previous Active Directory on-premises stuff onto AWS; after all, it is just a proxy to connect your on-premises AD to AWS.
NAT Gateways are highly available even though they are in one AZ and you they are in a public subnet but the instances that use NAT Gateways are in a public subnet.
To have highly available Auto Scaling, you must think as if the AZ is definitely going to fail; then only will you have an extremely highly available architecture.
IAM database authentication is for MYSQL and PostgreSQL, so it can be used for RDS and instead of using password, it uses an authentication token to authenticate you for a database.
Last updated
Was this helpful?