A developer is storing many objects in a single Amazon S3 bucket. The developer needs to optimize the S3 bucket for high request rates.
How should the developer store the objects to meet this requirement?
A developer is storing many objects in a single Amazon S3 bucket. The developer needs to optimize the S3 bucket for high request rates.
How should the developer store the objects to meet this requirement?
To optimize an Amazon S3 bucket for high request rates, the objects should be stored using object key names distributed across multiple prefixes. This approach helps to ensure that the load is spread across multiple partitions, improving performance and request handling capabilities.
https://docs.aws.amazon.com/AmazonS3/latest/userguide/optimizing-performance.html
C is the correct answer.
By distributing object key names across multiple prefixes, you can ensure that the load is spread across many partitions.