Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi!
I want to generate a table in Excel with Power Query. For this I need to map external (vendor) article numbers to our internal article numbers. I request the latter from our Dynamics 365 instance, buffer it with Table.Buffer() and then merge it with a bunch of other stuff. But the query takes forever to complete, because it doesn't fold and the table in Dynamics is huge.
Here is a simple example query that does not fold.
let
Source = OData.Feed("https://xxx.operations.dynamics.com/data", null, [Implementation="2.0"]),
VendorProductDescriptionsV2_table = Source{[Name="VendorProductDescriptionsV2",Signature="table"]}[Data],
#"Select Columns" = Table.SelectColumns(VendorProductDescriptionsV2_table,{"ExternalItemId", "ItemNumber"}),
#"Filter Rows" = Table.SelectRows(#"Select Columns", each [ExternalItemId] = "F000_68465165848"),
GetMetadata = Value.Metadata(#"Filter Rows"),
QueryFolding = GetMetadata[QueryFolding]
in
QueryFolding
IsFolded is FALSE in the result. The query is so simple, how can this be?
Help would be much appreciated, since the query takes sooooo long that what I'm building is basically unuseable.
Best regards,
Julian
Solved! Go to Solution.
Ok, this actually works and it's significantly faster. URL-length doesn't seem to be a problem.
OData.Feed("https://xxx.operations.dynamics.com/data/VendorProductDescriptionsV2?$select=ExternalItemId,ItemNumber&$filter=ExternalItemId eq '" & Text.Combine(#"externalIDlist", "' or ExternalItemId eq '") & "'", null, [Implementation="2.0"])
It's still quite slow though.
Why are these "professional" Microsoft products such a mess. 🙃
Thanks for the input!
Hi @Julian23K ,
buffering will stop the folding.
Also, ignore what Power Query indicates about folding, as that might be wrong.
Your statement until #"Filter Rows" should fold, provided you don't buffer it.
Just check with monitoring the web traffic.
Imke Feldmann (The BIccountant)
If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!
How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries
Thanks for the quick response.
buffering will stop the folding.
I know, I only buffer after the filtering, once I got all my data from that feed, so the query is not triggered multiple times during further processing.
Also, ignore what Power Query indicates about folding, as that might be wrong.
That it good to know, lol.
Just check with monitoring the web traffic.
Will do. Maybe it's just slow, because our Dynamics instance is a mess. 🙃
This simple example query above takes forever.
I don't believe D365 using OData supports much query folding, if any. OData is inherently slow and I strongly recommend that you use a different approach. OData is not reliable unless your data volume is really low (less than 20,000 rows in each table)
Assuming you are using D365 F&SC (aka D365 F&O), I advise you to use Export to Azure Data Lake
The query result is not very large, like not even 100 tables per query. The table I query from however is very large. So if I just write my own oData query (never done that before), I should be good, right?
Like this?
OData.Feed("https://xxx.operations.dynamics.com/data/VendorProductDescriptionsV2", null, [Implementation="2.0", Query="$select=ExternalItemId,ItemNumber&$filter=ExternalItemId in ('F000_68465165848', 'F000_68465165849', 'F000_68465165850')"])
@Julian23K wrote:The query result is not very large, like not even 100 tables per query. The table I query from however is very large. So if I just write my own oData query (never done that before), I should be good, right?
You can give it a try. Please note that the objects you query in D365 are entities (since tables are not directly exposed via OData). An entity is like a SQL view, which means each entity you are querying might be executing a complicated sql code involving several other tables.
Please note this important advice - Everything may still work for you now, but a year or two later it may not. I am saying this based on on my own experience. Also keep in mind that the refresh duration usually takes longer after you publish your model to Power BI service. If it takes longer than 90 minutes or so (I don't remember the exact limit), it will time-out Power BI service will cancel the refresh (if you are using Power BI pro).
Ok, this actually works and it's significantly faster. URL-length doesn't seem to be a problem.
OData.Feed("https://xxx.operations.dynamics.com/data/VendorProductDescriptionsV2?$select=ExternalItemId,ItemNumber&$filter=ExternalItemId eq '" & Text.Combine(#"externalIDlist", "' or ExternalItemId eq '") & "'", null, [Implementation="2.0"])
It's still quite slow though.
Why are these "professional" Microsoft products such a mess. 🙃
Thanks for the input!
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
63 | |
56 | |
27 | |
17 | |
13 |