AWS Solutions Architect: Storage Strategy Quiz
10 Questions
20 Views

AWS Solutions Architect: Storage Strategy Quiz

Created by
@CheerySloth

Podcast Beta

Play an AI-generated podcast conversation about this lesson

Questions and Answers

A company plans to host a web application in an Auto Scaling group of Amazon EC2 instances. The application will be used globally by users to upload and store several types of files. Based on user trends, files that are older than 2 years must be stored in a different storage class. The Solutions Architect of the company needs to create a cost-effective and scalable solution to store the old files yet still provide durability and high availability.

Which of the following approach can be used to fulfill this requirement? (Select TWO.)

  • Use Amazon S3 and create a lifecycle policy that will move the objects to Amazon S3 Standard-IA after 2 years. (correct)
  • Use Amazon S3 and create a lifecycle policy that will move the objects to Amazon S3 Glacier after 2 years. (correct)
  • Use Amazon EFS and create a lifecycle policy that will move the objects to Amazon EFS-IA after 2 years.
  • Use Amazon EBS volumes to store the files. Configure the Amazon Data Lifecycle Manager (DLM) to schedule snapshots of the volumes after 2 years.
  • An e-commerce company uses a regional Amazon API Gateway to host its public REST APIs. The API Gateway endpoint is accessed through a custom domain name configured using an Amazon Route 53 alias record. As part of its continuous improvement efforts, the company wants to release a new version of its APIs which includes enhanced features and performance optimizations. How can the company minimize customer impact, and ensure MINIMAL data loss during the update process in the MOST cost-effective manner?

  • Implement a canary release deployment strategy for the API Gateway. Deploy the latest version of the APIs to a canary stage and direct a portion of the user traffic to this stage. Verify the new APIs. Gradually increase the traffic percentage, monitor for any issues, and, if successful, promote the canary stage to production. (correct)
  • Create a new API Gateway with the updated version of the APIs in OpenAPI JSON or YAML file format, but keep the same custom domain name for the new API Gateway.
  • Implement a blue-green deployment strategy for the API Gateway. Deploy the latest version of the APIs to the green environment and direct some of the user traffic to it. Verify the new APIs. If it is thoroughly verified, deploy the green environment to production.
  • Modify the existing API Gateway with the updated version of the APIs, but keep the same custom domain name for the new API Gateway by using the import-to-update operation in either overwrite or merge mode.
  • A company has recently migrated its microservices-based application to Amazon Elastic Kubernetes Service (Amazon EKS). As part of the migration, the company must ensure that all sensitive configuration data and credentials, such as database passwords and API keys, are stored securely and encrypted within the Amazon EKS cluster's etcd key-value store.

    What is the most suitable solution to meet the company's requirements?

  • Use Amazon EKS default options and the Amazon Elastic Block Store (Amazon EBS) Container Storage Interface (CSI) driver as an add-on to securely store sensitive data within the Amazon EKS cluster.
  • Enable default Amazon EBS volume encryption for the account with a new AWS KMS key to ensure encryption of sensitive data within the Amazon EKS cluster.
  • Enable secret encryption with a new AWS KMS key on an existing Amazon EKS cluster to encrypt sensitive data stored in the EKS cluster's etcd key-value store. (correct)
  • Use AWS Secrets Manager with a new AWS KMS key to securely manage and store sensitive data within the EKS cluster's etcd key-value store.
  • A company collects atmospheric data such as temperature, air pressure, and humidity from different countries. Each site location is equipped with various weather instruments and a high-speed Internet connection. The average collected data in each location is around 500 GB and will be analyzed by a weather forecasting application hosted in Northern Virginia. As the Solutions Architect, you need to aggregate all the data in the fastest way.

    Which of the following options can satisfy the given requirement?

    <p>Enable Transfer Acceleration in the destination bucket and upload the collected data using Multipart Upload.</p> Signup and view all the answers

    A company plans to launch an Amazon EC2 instance in a private subnet for its internal corporate web portal. For security purposes, the EC2 instance must send data to Amazon DynamoDB and Amazon S3 via private endpoints that don't pass through the public Internet.

    Which of the following can meet the above requirements?

    <p>Use VPC endpoints to route all access to S3 and DynamoDB via private endpoints.</p> Signup and view all the answers

    A company has 3 DevOps engineers that are handling its software development and infrastructure management processes. One of the engineers accidentally deleted a file hosted in Amazon S3 which has caused disruption of service.

    What can the DevOps engineers do to prevent this from happening again?

    <p>Enable S3 Versioning and Multi-Factor Authentication Delete on the bucket.</p> Signup and view all the answers

    There are a lot of outages in the Availability Zone of your RDS database instance to the point that you have lost access to the database. What could you do to prevent losing access to your database in case that this event happens again?

    <p>Enabled Multi-AZ failover</p> Signup and view all the answers

    A financial application is composed of an Auto Scaling group of EC2 instances, an Application Load Balancer, and a MySQL RDS instance in a Multi-AZ Deployments configuration. To protect the confidential data of your customers, you have to ensure that your RDS database can only be accessed using the profile credentials specific to your EC2 instances via an authentication token.

    As the Solutions Architect of the company, which of the following should you do to meet the above requirement?

    <p>Enable the IAM DB Authentication.</p> Signup and view all the answers

    An online learning company hosts its Microsoft .NET e-Learning application on a Windows Server in its on-premises data center. The application uses an Oracle Database Standard Edition as its backend database.

    The company wants a high-performing solution to migrate this workload to the AWS cloud to take advantage of the cloud’s high availability. The migration process should minimize development changes, and the environment should be easier to manage.

    Which of the following options should be implemented to meet the company requirements? (Select TWO.)

    <p>Rehost the on-premises .NET application to an AWS Elastic Beanstalk Multi-AZ environment which runs in multiple Availability Zones.</p> Signup and view all the answers

    A company is using AWS Fargate to run a batch job whenever an object is uploaded to an Amazon S3 bucket. The minimum ECS task count is initially set to 1 to save on costs and should only be increased based on new objects uploaded to the S3 bucket.

    Which is the most suitable option to implement with the LEAST amount of effort?

    <p>Set up an Amazon EventBridge (Amazon CloudWatch Events) rule to detect S3 object PUT operations and set the target to the ECS cluster to run a new ECS task.</p> Signup and view all the answers

    Study Notes

    Storing Old Files in a Different Storage Class

    • The company needs a cost-effective and scalable solution to store old files.
    • Files older than 2 years must be stored in a different storage class.
    • The solution should be durable and highly available.

    Minimizing Customer Impact During API Updates

    • The company wants to release a new version of its APIs with minimal customer impact and data loss.
    • The update process should be cost-effective.

    Securely Storing Sensitive Configuration Data in Amazon EKS

    • The company migrated to Amazon EKS.
    • Sensitive configuration data, like database passwords and API keys, needs to be stored securely and encrypted.
    • The data should be stored within the Amazon EKS cluster's etcd key-value store.

    Aggregating Atmospheric Data from Multiple Sites

    • The company collects atmospheric data from different countries.
    • Each site has various weather instruments and a high-speed internet connection.
    • Data is collected at an average of 500 GB per location.
    • The data needs to be aggregated quickly for analysis by a weather forecasting application in Northern Virginia.

    Studying That Suits You

    Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

    Quiz Team

    Description

    Test your knowledge on creating scalable and cost-effective storage solutions in AWS. This quiz focuses on strategies for managing file storage based on user trends and age of files. Understand how to utilize different storage classes for optimal performance and cost savings.

    More Like This

    Use Quizgecko on...
    Browser
    Browser