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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
BartVW
Helper I
Helper I

Table.Combine in parallel possible?

Hello colleagues

 

To work around a constraint pulling data from our source system, I am splitting up the data pull into 3 queries that all have their date filter criteria. I then append them all into a single table to be used in my model.

 

The 3 sub queries have 'enable load' disabled to avoid loading the data to my model twice.

 

Monitoring the query execution, it seems that table.combine executes the 3 sub queries one after another.

 

Does anyone know of a way to do this in parallel, so that it is faster?

 

Thank you

Bart

8 REPLIES 8
lbendlin
Super User
Super User

Query1 & Query2 & Query3 ...

 

If the queries are not too large you can also do it DAX UNION instead.

I tried this (disabling load and query combine), but in this way it still executes the sub queries one after the other, not in parallel.

Then go for the DAX UNION.  You can hide the tables in Power BI

 

BartVW
Helper I
Helper I

I am monitoring this in the source system (SAP). FYI we are using an OData service based on SAP data to pull in the data.

 

In that SAP monitor, I can see only the first subquery executing, and once it finishes it starts the 2nd one in the Table.Combine list of tables, etc. 

 

If I keep 'Enable Load' enabled on the subqueries, then I see 4 queries hitting SAP at the same time: the 3 subqueries and the first subquery in the Table.Combine list. 

 

Interestingly, the remaining 2 subqueries in the Table.Combine list are no longer sent to SAP. Assume this is because by the time Table.Combine starts processing them, they are already somehow cached.

Would you have any idea  @lbendlin ?

In such scenarios we create separate queries, disable load for all, and return a query combine rather than a table combine. Make sure not to overwhelm the data source when you crank the parallelism up to 30.

Thanks @lbendlin . Could share the M function that is used for a query combine? 

lbendlin
Super User
Super User

Where are you monitoring this, in Power BI Desktop or in the service?

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors