
Ultimate access to all questions.
A manufacturer of delivery drones is enhancing their data analysis pipeline to preemptively detect part failures. The drones are equipped with various sensors that transmit performance and environmental data to an analytics pipeline. Currently, this data is sent to a REST API endpoint, which sometimes cannot handle the influx, leading to data loss. To mitigate this, machine learning engineers have requested a modification to the ingestion process. What would be your recommended solution?
A
Utilize a Cloud Storage bucket for data ingestion instead of a REST API endpoint, enabling the ingestion application to read from the bucket.
B
Switch to a Cloud Pub/Sub topic for data ingestion instead of a REST API endpoint, allowing the ingestion application to consume messages from the topic.
C
Implement a Cloud SQL Postgres database for data ingestion, with the ingestion application querying the database directly.
D
Deploy a Hadoop cluster on Compute Engine using managed instance groups, storing data in an HBase database for the application to query.