Amir
06/03/2026, 8:08 AMkapa.ai
06/03/2026, 8:09 AM"Reached limit of max size of data returned from data source. The limit is 500,000,000 bytes (500 MB)" [Dashboard Freeze Case] • 100,000 row limit: "xtab-rows: The limit for the maximum size of the dimension without metrics was exceeded. Limit: 100_000" [Limits Hit] Try opening individual slow visualizations in Analytical Designer to see if they show an error about being too large. 2. Investigate the Slow Queries • Open a slow visualization in Analytical Designer and replace /edit with /debug in the URL — this downloads the exact SQL GoodData runs against your database. • Run that SQL directly on your database to check execution time, heavy joins, or timeouts. • Try removing metrics one by one to identify which one is the heavy driver (the first metric acts as the SQL "driver"). [Performance Debugging] 3. Check for HTTP/1.1 Connection Limits On large dashboards, browsers limit concurrent requests to ~6 per domain. If your hosting environment only supports HTTP/1.1, requests queue up and cause the UI to freeze. The fix is to ensure your server supports HTTP/2 or HTTP/3 (e.g., by placing a CDN like CloudFront in front of your app). [HTTP Limits Thread] 4. Check Dashboard Structure If your dashboard uses tabs, make sure it doesn't have both content.layout and content.tabs[0].layout defined simultaneously — this conflict can cause executions to get stuck and exceed combined size limits. The fix is to PATCH the dashboard to remove content.layout, keeping only content.tabs[0].layout. [Dashboard Layout Conflict] 5. Collect Information for Support To help GoodData Support investigate further, please gather: • Trace IDs from the Network tab in browser DevTools during a slow/failing load • A HAR file captured from Chrome DevTools during the issue • Exact timestamps (with timezone) of when the unresponsiveness occurs • Whether the issue affects all users or specific ones, and all dashboards or just this one [Support Investigation] As a quick test, try loading the same dashboard in Firefox — if it works there, the issue may be browser/Chrome-specific. Let me know what you find and feel free to share trace IDs for further investigation! 👍 0 button 👎 0 button ℹ️ Tip: Mention @kapa.ai in the thread for follow-ups. 👀 Our Support team monitors all messages and will jump in if needed.Amir
06/03/2026, 8:19 AMShamil Akhmadyshev
06/03/2026, 8:21 AMAmir
06/03/2026, 8:22 AMAmir
06/03/2026, 8:24 AMShamil Akhmadyshev
06/03/2026, 9:01 AMThe main issue here is that organization layout JSON has bothPlease try this and let us know how it goes. Also, could you also let us know when you first encountered this problem? Was everything working as expected before this occurred? Thank you.andcontent.layoutdefined simultaneously, with identical content. Therefore the executions get stuck due to the conflicts and exceeding combined in size. The solution here is to PATCH your dashboard to removecontent.tabs[0].layoutentirely, keeping onlycontent.layout. This is the correct structure for version 2 dashboards that use tabs. I’m assuming you want to keep the tabs one, but if not keepcontent.tabs[0].layoutand removecontent.layout.content.tabs
Amir
06/03/2026, 9:11 AMShamil Akhmadyshev
06/03/2026, 9:33 AMShamil Akhmadyshev
06/03/2026, 1:57 PMAmir
06/03/2026, 2:12 PMShamil Akhmadyshev
06/03/2026, 2:35 PMShamil Akhmadyshev
06/03/2026, 3:16 PMAmir
06/04/2026, 8:13 AMDaniela Salmeron
06/04/2026, 9:09 AMAmir
06/04/2026, 9:29 AMDaniela Salmeron
06/04/2026, 3:34 PMDaniela Salmeron
06/05/2026, 2:10 PMDaniela Salmeron
06/08/2026, 9:46 AMAmir
06/09/2026, 8:02 AM