Q5 — AWS SAA-C03 Ch.6

Question 5 of 65 | ← Chapter 6

Q370. A data analytics company wants to migrate its batch processing system to AWS. The company receives thousands of small data files periodically during the day through FTP. An on-premises batch job processes the data files overnight. However, the batch job takes hours to finish running The company wants the AWS solution to process incoming data files as soon as possible with minimal changes to the FTP clients that send the files. The solution must delete the incoming data files after the files have been processed successfully. Processing for each file needs to take 3-8 minutes Which solution will meet these requirements in the MOST operationally efficient way?

Correct Answer: D. Use AWS Transfer Family to create an FTP server to store incoming files in Amazon S3 Standard.Create an AWS Lambda function to process the files and to delete the files after they are processed.Use an S3 event notification to invoke the Lambda function when the files arrive

Explanation

process immediate when file transfer to S3 not wait for process several file in one time.takes 3-8 can use Lamda.C. Wrong because AWS Batch is use for run large-scale or large amount of data in one time.