The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I've been receiving this error from Powerbi Online version once in a while. But I'm not able to repro it locally, tried many many time to refresh. Anyone experience this? Is there a way to find out exactly what query that cause this?
Failure details: Query execution has exceeded the allowed limits (80DA0003): Query result set has exceeded the internal data size limit 67108864 (E_QUERY_RESULT_SET_TOO_LARGE; see https://aka.ms/kustoquerylimits). [0]Kusto.Data.Exceptions.KustoServicePartialQueryFailureLimitsExceededException: Query execution has exceeded the allowed limits (80DA0003): Query result set has exceeded the internal data size limit 67108864 (E_QUERY_RESULT_SET_TOO_LARGE; see https://aka.ms/kustoquerylimits). Timestamp=2022-05-25T15:38:51.9282044Z ClientRequestId=KPBI;e322df19-db13-4623-99e0-9d062dd36586;f44b2dbc-4be7-4a52-b3dd-98a821c22345;3aad42f1-66e8-40b4-9be6-512e1a902d89 ActivityId=72dfc040-d9f7-45b3-8a73-25ff51550ac7 ActivityType=GW.Http.CallContext ServiceAlias=RDSPRODUS2 MachineName=KENGINE000027 ProcessName=Kusto.WinSvc.Svc ProcessId=11528 ThreadId=9848 AppDomainName=Kusto.WinSvc.Svc.exe ActivityStack=(Activity stack: CRID=KPBI;e322df19-db13-4623-99e0-9d062dd36586;f44b2dbc-4be7-4a52-b3dd-98a821c22345;3aad42f1-66e8-40b4-9be6-512e1a902d89 ARID=72dfc040-d9f7-45b3-8a73-25ff51550ac7 > GW.Http.CallContext/72dfc040-d9f7-45b3-8a73-25ff51550ac7) MonitoredActivityContext=(ActivityType=GW.Http.CallContext, Timestamp=2022-05-25T15:38:38.0680925Z, ParentActivityId=72dfc040-d9f7-45b3-8a73-25ff51550ac7, TimeSinceStarted=13860.1119 [ms])ErrorCode= ErrorReason= ErrorMessage= DataSource= DatabaseName= ClientRequestId= ActivityId=00000000-0000-0000-0000-000000000000 UnderlyingErrorCode=80DA0003 UnderlyingErrorMessage=Query result set has exceeded the internal data size limit 67108864 (E_QUERY_RESULT_SET_TOO_LARGE; see https://aka.ms/kustoquerylimits)
|
|
|
|
|
|
|
|
|
|
|
another instance:
|
|
|
|
|
|
|
|
|
|
|
Solved! Go to Solution.
Hi, @SooKuanTeo ;
There are several strategies for dealing with this error.
set
statements listed below or flags in client request properties.Generally speaking, when the limit set by default is exceeded, some of the exceeded queries will fail and display "Partial query failed".you can change the size of the default limit by setting truncationmaxsize and truncationmaxrecords to solve the problem of error reporting.
Here is the reference document link: Query limits - Azure Data Explorer | Microsoft Docs
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @SooKuanTeo ;
There are several strategies for dealing with this error.
set
statements listed below or flags in client request properties.Generally speaking, when the limit set by default is exceeded, some of the exceeded queries will fail and display "Partial query failed".you can change the size of the default limit by setting truncationmaxsize and truncationmaxrecords to solve the problem of error reporting.
Here is the reference document link: Query limits - Azure Data Explorer | Microsoft Docs
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.