Posted by: Pdfprep
Post Date: November 2, 2020
Amazon S3 has the following structure: S3://BUCKET/FOLDERNAME/FILENAME.zip Which S3 best practice would optimize performance with thousands of PUT request each second to a single bucket?
A . Prefix folder names with user id; for example, s3://BUCKET/2013-FOLDERNAME/FILENAM
B . zip
C . Prefix file names with timestamps; for example, s3://BUCKET/FOLDERNAME/2013-26-05-15-0000-FILENAM
D . zip
E . Prefix file names with random hex hashes; for example, s3://BUCKET/FOLDERNAME/23a6FILENAM
F . zip
G . Prefix folder names with random hex hashes; for example, s3://BUCKET/23a6-FOLDERNAME/FILENAM
H . zip
Answer: B
Explanation:
Reference: http://jayendrapatil.com/aws-s3-best-practices/
Leave a Reply