PROFESSIONAL-CLOUD-ARCHITECT · Question #21
The application reliability team at your company has added a debug feature to their backend service to send all server events to Google Cloud Storage for eventual analysis. The event records are at…
The correct answer is D. Append metadata to file body. https://cloud.google.com/storage/docs/request-rate Use a naming convention that distributes load evenly across key ranges Auto-scaling of an index range can be slowed when using sequential names, such as object keys based on a sequence of numbers or timestamp. This occurs…
Question
Options
- AAppend metadata to file body.
- BBatch every 10,000 events with a single manifest file for metadata.
- CCompress individual files.
- DAppend metadata to file body.
How the community answered
(61 responses)- A8% (5)
- B15% (9)
- C3% (2)
- D74% (45)
Explanation
https://cloud.google.com/storage/docs/request-rate Use a naming convention that distributes load evenly across key ranges Auto-scaling of an index range can be slowed when using sequential names, such as object keys based on a sequence of numbers or timestamp. This occurs because requests are constantly shifting to a new index range, making redistributing the load harder and less effective. In order to maintain a high request rate, avoid using sequential names. Using completely random object names will give you the best load distribution.
Topics
Community Discussion
No community discussion yet for this question.