Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
QuangMC
Frequent Visitor

Group By or Remove duplicates

Hello all,

 

So it's not so much a problem, but rather a question regarding 2 different ways to do something.

 

Context :

I have a fairly big table (around 3 million rows), that i'm currently working on. As usual, it's the sort of table where you have EVERYHTING (you guys know what i'm talking about, right ?). I have removed as much unecessary things as possible and segment my table into multiple ones (Facts and Dims). 

 

It works fine, i can clearly see the impact it has on my report.

 

Question :

There are some places where i use the "Group By" option from Power Query to get some aggregations, but in other places I use it simply to remove other columns and remove duplicates.

 

The thing is, I don't know if the optimal solution. I could also just "Remove unnecessary columns" and then use "Remove duplicates" to obtain the same results. 

 

So my question is, which is the best option performance wise ? I tried using the diagnostics tool, but I have a hard time interpreting the results. Both solutions seem fine, but is one actually better than the other ? If you had a huge dataset, which would be more appropriate ?

 

Thank you in advance.

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

In Diagnostics, pick up the report generated which has aggregated word.

Select Exclusive duration column, Transform tab - Duration - Total seconds - Now Statistics - Sum

Note down the timing of both approaches. Whatever is lesser is the better. 

 

Now the first principle in optimizing query is to perform vertical filtering i.e. remove all unnecessary columns. 
Hence, if you perform remove columns followed by Group by, you will have very good amount of performance increase compared to do plain vanilla Group by.

 

Horizontal filtering (i.e. remove duplicates) is also one of the steps which we can resort to after Vertical filtering. But horizontal filtering will consume some finite time which will be added up to total time but same can be compensated by next steps as they will work on smaller dataset.

 

It is always better to work on a small size rectangle.

 

But you have to see how much time is taken in Query diagnostics on your data set for different approaches and choose the best one. 

View solution in original post

4 REPLIES 4
Vijay_A_Verma
Super User
Super User

In Diagnostics, pick up the report generated which has aggregated word.

Select Exclusive duration column, Transform tab - Duration - Total seconds - Now Statistics - Sum

Note down the timing of both approaches. Whatever is lesser is the better. 

 

Now the first principle in optimizing query is to perform vertical filtering i.e. remove all unnecessary columns. 
Hence, if you perform remove columns followed by Group by, you will have very good amount of performance increase compared to do plain vanilla Group by.

 

Horizontal filtering (i.e. remove duplicates) is also one of the steps which we can resort to after Vertical filtering. But horizontal filtering will consume some finite time which will be added up to total time but same can be compensated by next steps as they will work on smaller dataset.

 

It is always better to work on a small size rectangle.

 

But you have to see how much time is taken in Query diagnostics on your data set for different approaches and choose the best one. 

Hello,

 

Thank you for your full answer. In the end, both solutions are almost the same in terms of performance. I did however try to reduce the data even more BEFORE applying my solutions. It is indeed the best way to reduce the impact on performance.

 

Thanks again !

mahoneypat
Employee
Employee

When I am comparing two approaches, I just duplicate the query, modify the new one to use the other approach, and load them in parallel and see which wins. You can speed up the testing by keeping fewer rows temporarily.

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Thank you for the advice. I also thought about it, but couldn't find the time to do so. Pretty easy way to find the best solution.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors