ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 15 - Professional Data Engineer discussion

Report
Export

You need to store and analyze social media postings in Google BigQuery at a rate of 10,000 messages per minute in near real-time. Initially, design the application to use streaming inserts for individual postings. Your application also performs data aggregations right after the streaming inserts. You discover that the queries after streaming inserts do not exhibit strong consistency, and reports from the queries might miss in-flight dat a. How can you adjust your application design?

A.
Re-write the application to load accumulated data every 2 minutes.
Answers
A.
Re-write the application to load accumulated data every 2 minutes.
B.
Convert the streaming insert code to batch load for individual messages.
Answers
B.
Convert the streaming insert code to batch load for individual messages.
C.
Load the original message to Google Cloud SQL, and export the table every hour to BigQuery via streaming inserts.
Answers
C.
Load the original message to Google Cloud SQL, and export the table every hour to BigQuery via streaming inserts.
D.
Estimate the average latency for data availability after streaming inserts, and always run queries after waiting twice as long.
Answers
D.
Estimate the average latency for data availability after streaming inserts, and always run queries after waiting twice as long.
Suggested answer: D

Explanation:

The data is first comes to buffer and then written to Storage. If we are running queries in buffer we will face above mentioned issues. If we wait for the bigquery to write the data to storage then we won't face the issue. So We need to wait till it's written tio storage

asked 18/09/2024
Mike Schatens
31 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first