Forum Discussion
Memory Consumtion & Power Query Processing (time)
Hi,
I will try that. One thing I realized when trying to solve the problem was that the number os "future" applied steps may be an issue either. The thing is:
- My applied steps are (in that order):
- Source = Excel.Workbook(File.Contents("C:\Users\eztoubr\Documents\Mathias SOS\2017 Q1 test.xlsx"), null, true)
- #"2017_Sheet" = Source{[Item="2017",Kind="Sheet"]}[Data],
- #"Promoted Headers"
- #"Changed Type"
- #"Renamed Columns"
- #"Added Conditional Column"
- #"Reordered Columns"
- #"Removed Columns"
- #"Merged Queries"
- #"Expanded Label Country"
- #"Reordered Columns1"
- #"Removed Columns1"
- #"Renamed Columns1"
- #"Inserted Merged Column"
- #"Merged Queries1"
- #"Expanded Label Opco"
- #"Removed Columns2"
#"Expanded Operator Group
"Renamed Columns2"
#"Merged Columns"
#"Merged Queries3"
#"Expanded IDC KPI Compilation"
#"Reordered Columns3"
#"Removed Columns3"
#"Renamed Columns3"
#"Inserted Merged Column1"
#"Inserted Merged Column2"
#"Reordered Columns4"
#"Reordered Columns5"
#"Removed Columns4"
#"Pivoted KPIs"
#"Added Fixed Total TV Subscriptions"
#"Added Fixed IPTV Subscriptions Convergence"
#"Added Mobile Total CDMA Subscriptions inc others"
#"Added Mobile Total CDMA Subscriptions"
#"Added Mobile Total Subscriptions inc others"
#"Added Mobile Total GSM Subscriptions" =
#"Added Fixed Total Subscriptions"
#"Added Mobile Total Net Additions"
#"Added Mobile Total Subscriptions"
#"Added Mobile Services Subscriptions"
#"Changed KPIs Data Type to Decimal"
- I run a smaller version of my data and the refresh of all those applied steps stops exactly at the first merge (step 9)
- When I remove all the applied steps from step 19 to 42, suddenly the refresh is made until the step 18
Any clue why is that? It seems like the numberof applied steps affects my refresh which is completely strange.
HI BrunaSeixas,
As I said, invoke or refer other steps in query edit may caused additional memory cost(row count * referenced part records) on reference data when you apply change to data view.
For this scenario, I'd like to suggest you use Buffer functions to move reference part to memory to reduce memory consumption.
Regards,
Xiaoxin Sheng
- BrunaSeixas7 years agoFrequent Visitor
Hi,
Sorry for the late reply, but we did that and it did not seem to work so well. We decide to make our ETL using the Power Query on excel and it processed much better.
Thank you for the help anyway.
KR,