Question 263 of 284
Single answerThe core business of your company is to rent out construction equipment at large scale. All the equipment that is being rented out has been equipped with multiple sensors that send event information every few seconds. These signals can vary from engine status, distance traveled, fuel level, and more. Customers are billed based on the consumption monitored by these sensors. You expect high throughput – up to thousands of events per hour per device – and need to retrieve consistent data based on the time of the event. Storing and retrieving individual signals should be atomic. What should you do?
ACreate files in Cloud Storage as data comes in.
BCreate a file in Filestore per device, and append new data to that file.
CIngest the data into Cloud SQL. Use multiple read replicas to match the throughput.
✓DIngest the data into Bigtable. Create a row key based on the event timestamp.
✓
Correct Answer: D
Ingest the data into Bigtable. Create a row key based on the event timestamp.
▥
Explanation
The correct answer is highlighted above. Review the wording carefully, then use the next question to continue building your understanding of Google certification topics.