Forum Discussion
Limit to number of rows exported to PowerBI?
10k for the query (as you mention), 500K for the api https://docs.microsoft.com/en-us/azure/azure-monitor/service-limits - so you may need two bins - each at 500k ?
CliveWatson Thanks, I read about that limitation in one page I was looking at. For some reason I cannot even get the 500K.
- GaryBusheyDec 11, 2019Bronze Contributor
I must be running into the size limit of 64Mb since if I just return 1 column I get my 500K rows. 😞
- CliveWatsonDec 12, 2019Former Employee
Are you able to summarize the data in some way (I know this reduces the accuracy for PowerBI) but do they really need 1m rows? Just a small change helps...
AzureActivity | project ActivityStatus AzureActivity | summarize count(ActivityStatus) by bin(TimeGenerated,1s)
Go to Log Analytics and Run Query
In the above Query #1, it hits the 10k limit, Query #2 returns 6681 with just a 1s bin.
- GaryBusheyDec 12, 2019Bronze Contributor
CliveWatson Thanks again. I'll see what I can do to adjust the needed queries.