BlackFriday 2024! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Google Exam Professional Data Engineer Topic 2 Question 93 Discussion

Actual exam question for Google's Professional Data Engineer exam
Question #: 93
Topic #: 2
[All Professional Data Engineer Questions]

Your company's customer_order table in BigOuery stores the order history for 10 million customers, with a table size of 10 PB. You need to create a dashboard for the support team to view the order history. The dashboard has two filters, countryname and username. Both are string data types in the BigQuery table. When a filter is applied, the dashboard fetches the order history from the table and displays the query results. However, the dashboard is slow to show the results when applying the filters to the following query:

How should you redesign the BigQuery table to support faster access?

Show Suggested Answer Hide Answer
Suggested Answer: C

To improve the performance of querying a large BigQuery table with filters on countryname and username, clustering the table by these fields is the most effective approach. Here's why option C is the best choice:

Clustering in BigQuery:

Clustering organizes data based on the values in specified columns. This can significantly improve query performance by reducing the amount of data scanned during query execution.

Clustering by countryname and username means that data is physically sorted and stored together based on these fields, allowing BigQuery to quickly locate and read only the relevant data for queries using these filters.

Filter Efficiency:

With the table clustered by countryname and username, queries that filter on these columns can benefit from efficient data retrieval, reducing the amount of data processed and speeding up query execution.

This directly addresses the performance issue of the dashboard queries that apply filters on these fields.

Steps to Implement:

Redesign the Table:

Create a new table with clustering on countryname and username:

CREATE TABLE project.dataset.new_table

CLUSTER BY countryname, username AS

SELECT * FROM project.dataset.customer_order;

Migrate Data:

Transfer the existing data from the original table to the new clustered table.

Update Queries:

Modify the dashboard queries to reference the new clustered table.


BigQuery Clustering Documentation

Optimizing Query Performance

Contribute your Thoughts:

Jeffrey
1 months ago
I bet the support team is getting tired of waiting for those dashboard results. They should probably invest in a coffee maker.
upvoted 0 times
...
Paola
1 months ago
I'm just glad I don't have to worry about 10 PB of data. That's a lot of orders!
upvoted 0 times
Luke
3 days ago
C) Cluster the table by country and username fields
upvoted 0 times
...
Sonia
3 days ago
I'm just glad I don't have to worry about 10 PB of data. That's a lot of orders!
upvoted 0 times
...
Brynn
11 days ago
A) Cluster the table by country field, and partition by username field.
upvoted 0 times
...
...
Luisa
1 months ago
Option C is interesting, but I'm not sure it would be faster than partitioning. Partitioning just seems more straightforward for this use case.
upvoted 0 times
Lauran
8 days ago
I agree, partitioning seems like the most straightforward solution for faster access.
upvoted 0 times
...
Marylyn
10 days ago
Partitioning by _PARTITIONTIME might not be as effective for this specific use case.
upvoted 0 times
...
Ciara
13 days ago
But clustering the table by country and username fields could also improve performance.
upvoted 0 times
...
Lettie
17 days ago
I think partitioning the table by country and username fields would be the best option.
upvoted 0 times
...
...
Javier
1 months ago
But clustering by country and partitioning by username could help reduce the data scanned when applying filters.
upvoted 0 times
...
Louann
1 months ago
Partitioning by _PARTITIONTIME could work, but it won't be very helpful for these specific filters. I'd go with option B.
upvoted 0 times
Francesco
14 days ago
Definitely, partitioning by country and username fields seems like the best choice here.
upvoted 0 times
...
Sheldon
15 days ago
That sounds like a good idea. It should help speed up the dashboard.
upvoted 0 times
...
Emile
1 months ago
Option B) Partition the table by country and username fields.
upvoted 0 times
...
...
Callie
2 months ago
I disagree, I believe partitioning the table by country and username fields would be more efficient.
upvoted 0 times
...
Kristine
2 months ago
Clustering the table by country and username sounds like a good option too. It might be more efficient than partitioning, especially if the filter values are not evenly distributed.
upvoted 0 times
...
Launa
2 months ago
I think partitioning the table by both country and username fields is the way to go. That should provide fast access to the data when applying the filters.
upvoted 0 times
Avery
11 days ago
I think partitioning the table by both country and username fields is the way to go. That should provide fast access to the data when applying the filters.
upvoted 0 times
...
Reena
12 days ago
C) Cluster the table by country and username fields
upvoted 0 times
...
Angelyn
13 days ago
B) Partition the table by country and username fields.
upvoted 0 times
...
Luisa
26 days ago
A) Cluster the table by country field, and partition by username field.
upvoted 0 times
...
...
Javier
2 months ago
I think we should cluster the table by country field and partition by username field.
upvoted 0 times
...

Save Cancel