The DevOps DropSign in
Interview HubTopicsCertification PrepSavedAchievementsGlobal LeaderboardLearnTech BlogsTech News

AWS

IAM, VPC, S3, RDS, Lambda and the rest of the platform.

TypeEverythingLearn1Questions24Drills26Blogs4News9
LevelAll levelsBeginner2Intermediate14Advanced7Expert1

2 items at beginner level · all topics

  • QuestionAWS·beginner·3 min+10 XP

    How do you cut EC2 costs for workloads that sit idle nights and weekends, without relying on someone remembering to turn things off?

    Automate the stop and start instead of asking anyone to remember it. Scheduled Auto Scaling actions or AWS Instance Scheduler both work; the choice mostly comes down to whether the fleet is already behind an Auto Scaling group. Either way, tag-based scoping is what keeps it from ever touching something that shouldn't be stopped.

    #EC2#Cost
  • QuestionAWS·beginner·4 min+10 XP

    Your application needs to feel fast for users spread across multiple continents. What would you put in front of it, and why?

    Amazon CloudFront is a CDN that terminates connections and caches content at edge locations close to the user, so most requests never travel back to the origin region at all. It helps static content the most, but modern CloudFront also improves dynamic requests through TCP/TLS termination at the edge and origin connection reuse.

    #Networking#AWS