
Ultimate access to all questions.
What is the recommended approach for persisting data in an HTTP Cloud Function triggered by POST requests, where each submission contains a flat JSON structure with numeric and text fields, to ensure the collected data is immediately available for concurrent complex analytics by multiple users?
A
Directly persist each POST request's JSON data into Datastore.
B
Transform the POST request's JSON data, and stream it into BigQuery.
C
Transform the POST request's JSON data, and store it in a regional Cloud SQL cluster.
D
Persist each POST request's JSON data as an individual file within Cloud Storage, with the file name containing the request identifier.