IAM -- Identity and Access Management
What's IAM?
IAM allows you to manage users and their level of access to the AWS console.
IAM offers:
Centrallised control of your AWS account
Shared Acccess to your AWS account
Granular Permissions
Identity Federation
Jack_Chou changed 4 years agoView mode Like 2 Bookmark
You are a consultant planning to deploy DynamoDB across three AZs. Your lead DBA is concerned about data consistency. Which of the following do you advise the lead DBA to do?
:::spoiler Answer
To ask the development team to code for strongly consistent reads. As the consultant, you will advise the CTO it may have higher latency than eventually consistent reads.
When you request a strongly consistent read, DynamoDB returns a response with the most up-to-date data, reflecting the updates from all prior write operations that were successful. However, this consistency comes with some disadvantages such as read might not be available if there is a network delay or outage, higher latency than eventually consistent reads, global secondary indexes not supported, and use of more throughput capacity than eventually consistent reads.
:::
By definition, a public subnet within a VPC is one that
Jack_Chou changed 4 years agoView mode Like Bookmark
Situation
When operate crawler with selenium, it may occur the following error:
selenium.common.exceptions.SessionNotCreatedException:
This version of ChromeDriver only supports Chrome version 91
Current browser version is 93.0.4577.63 with binary path /usr/bin/google-chrome
It means you have to update your ChromeDriver to fit your bowser version.
Solution
Jack_Chou changed 4 years agoView mode Like Bookmark