Posts

Scenarios based Questions

Your company has built-in internal scrum tool for Running  all your scrum ceremonies. Usages predictably high between 9-10AM Monday-Friday and also 1 PM-2 PM Thursday and Friday. Which feature of autoscaling will easily repair your system To handle the Load? Target tracking could to work but we need to invest time in determining correct metric to track example (CPU, memory, load balancer requests). Also Manuel Scaling requires that someone changes configuration to scale up and scale down every day.  Finally over provisioning in order to cope with peak demand defeats the purpose of Elastic Scaling of Our compute. For situations where your traffic is very predictable, the easiest way to scale with demand is to create scheduled Scaling Actions. A product manager vox into your office and advises that this simple single node MySQL RDS Instance that has been used for a pilot needs to be upgraded for production. She also advises that they may need to alter the size of The instance once they s

High Availability Architecture

Following points can be considered while creating a highly available architecture depending on scenarios  A spread Placement group Supports a maximum of seven running Instances per availability zone.for example, In A region with three Availability zones, you can run total of 21 instances in the group.If you try to start an eighth Instance in the same availability zone and in the same spread placement group, the Instance will not launch.If you need to have more than seven instances in an availability zone,Then the Recommendation is to use multiple spread Placement Groups. Using multiple spread Placement Groups does not provide guarantee about the spread of instance between groups, but it does ensure the spread for each group, thus limiting impact from certain classes of failures. Durability refers to the ongoing existence of the object or resource. Note that it does not mean you can access it, only that it continues to exist. Groups, Scaling options, configuration templates are componen

VPC,Cloud Front,EC2,RDS in AWS

 VPC allows you to provision a logically isolated section of AWS where we can launch AWS resources in a virtual network. Cloud Front is a Fast Highly Secure and Programmable Content Delivery Network EC2 provides compute resources  RDS is Amazon's Relationship Database System.

AWS Partnerships and Exams

To be an AWS Partner the company must have AWS certified resources that is also where the value of your certification lies besides knowledge. Partnerships Select At least 2 Practitioner's Certified, 2 Associate  Certified, 0 Professional Specialty Certified Advance At least 4 Practitioner's Certified, 4 Associate  Certified, 3 Professional Specialty Certified Premier At least 10 Practitioner's Certified, 10 Associate  Certified, 10 Professional Specialty Certified AWS certified Solutions Architect Associate Exam 130 mins 65 questions Multiple Choice 100-1000 score range and passing is 720 i.e is 70% Valid for 3 years Scenario based questions Topics to be covered Designing Resilient Architecture using AWS Networking and Computing VPC's,EC2,ECS Storage,Databases and Migration High Availability and Scalability ELB's,Cloud Front,Route 53  Application Services SQS,SNS,Deployments,Server less and Hybrid Envirnoments Logging and Security Cloud Watch,Cloud Trail,Security, E

AWS Policy Examples

   create a policy that grants access to everything  {     "Version": "2020-09-20",     "Statement": [         {             "Effect": “Allow”,             "Action": “*”,             "Resource": “*”         }     ] } create a policy that denies all EC2 permissions. {     "Version": "2020-09-20",     "Statement": [         {             "Effect": “Deny”,             "Action": “ec2:*”,             "Resource": “*”         }     ] } create a policy that allows a user to ONLY stop and start EC2 instances. {     "Version": "2020-09-20",     "Statement": [         {             "Effect": “Allow”,             "Action": [                 “ec2:StartInstances:*”,                 “ec2:StopInstances:*”             ],             "Resource": “*”         }     ] } create a policy that allows a user to list the contents of S