본문 바로가기
CLOUD/AWS

aws certification solution architecture associate 문제

by Rainbound-IT 2022. 3. 28.
반응형

A solutions architect is designing a multi-tier application for a company. The application's users upload images from a mobile device. The application generates a thumbnail of each image and returns a message to the user to confirm that the image was uploaded successfully. The thumbnail generation can take up to 60 seconds, but the company wants to provide a faster response time to its users to notify them that the original image was received. The solutions architect must design the application to asynchronously dispatch requests to the different application tiers. What should the solutions architect do to meet these requirements?

(A). Write a custom AWS Lambda function to generate the thumbnail and alert the user. Use the image upload process as an event source to invoke the Lambda function.

(B). Create an AWS Step Functions workflow Configure Step Functions to handle the orchestration between the application tiers and alert the user when thumbnail generation is complete

(C). Create an Amazon Simple Queue Service (Amazon SQS) message queue. As images are uploaded, place a message on the SQS queue for thumbnail generation. Alert the user through an application message that the image was received

(D). Create Amazon Simple Notification Service (Amazon SNS) notification topics and subscriptions Use one subscription with the application to generate the thumbnail after the image upload is complete. Use a second subscription to message the user's mobile app by way of a push notification after thumbnail generation is complete.

 

 

정답은 A

첨엔 메세지 빨리받으려면 sqs 쓰는게 아닌가 했는데 thumnail 처리해서 보내야해서 lambda 인것 같다.

반응형

'CLOUD > AWS' 카테고리의 다른 글

AWS storage gateway 옵션  (0) 2022.03.29
Route 53 라우팅 정책  (0) 2022.03.29
aws 관련 가이드  (0) 2022.03.28
AWS EBS 사용하지 않는데 비용 부과 이유  (0) 2022.03.17
로드밸런서 리스너, 고정성  (0) 2022.03.16

댓글