AWS Certified Data Analytics – Specialty — Question 20
A large financial company is running its ETL process. Part of this process is to move data from Amazon S3 into an Amazon Redshift cluster. The company wants to use the most cost-efficient method to load the dataset into Amazon Redshift.
Which combination of steps would meet these requirements? (Choose two.)
Answer options
- A. Use the COPY command with the manifest file to load data into Amazon Redshift.
- B. Use S3DistCp to load files into Amazon Redshift.
- C. Use temporary staging tables during the loading process.
- D. Use the UNLOAD command to upload data into Amazon Redshift.
- E. Use Amazon Redshift Spectrum to query files from Amazon S3.
Correct answer: A, C
Explanation
The correct answer is A and C because using the COPY command with a manifest file allows for efficient loading of data into Amazon Redshift, while temporary staging tables can optimize the ETL process. The other options, such as S3DistCp and UNLOAD, are not typically used for loading data into Redshift, and Redshift Spectrum is meant for querying data rather than loading it.