Hi, we have users having problem loading dashboard...
# gooddata-cloud
p
Hi, we have users having problem loading dashboards in Microsoft Edge browser. I have the same problem on my computer. The browser is freezing.
k
Based on the attached screenshot, it looks like your embedded GoodData dashboards (using Web Components) are stuck in a loading state — the visualizations show a loading spinner but never render. A few things to check based on similar cases in the community: 1. Recent browser-related scrolling/rendering bug A known issue was reported affecting Chrome v144 and Microsoft Edge (which shares the same Chromium engine), where dashboards would freeze or not respond correctly. A fix was released in the GoodData UI SDK. [Slack thread] • Make sure you are on the latest version of the GoodData UI SDK / Web Components. • As a temporary workaround, try using a different browser (e.g., Firefox) to confirm if the issue is Edge-specific. 2. HTTP/1.1 connection limits causing freezing On large dashboards, browsers limit concurrent requests to ~6 per domain. If your hosting environment only supports HTTP/1.1, this can cause requests to queue up and freeze the UI. The recommended 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). [Slack thread] 3. CORS / CSP / Third-party cookie issues with Web Components Since you appear to be using Web Components for embedding, also verify: • CORS is configured on your GoodData instance to allow your app's domain. • CSP headers include the necessary
script-src
,
style-src
,
font-src
, and
img-src
policies for your GoodData host. • Third-party cookies are not being blocked by Edge — GoodData recommends hosting your GoodData instance on a subdomain of your app (e.g.,
<http://analytics.yourcompany.com|analytics.yourcompany.com>
) to avoid this. [Web Components docs] Recommended next steps: 1. Check your Web Components / SDK version and update to the latest. 2. Open browser DevTools → Network tab and look for any failed requests or errors. 3. Try in a private/incognito window to rule out cache/cookie issues. 4. If the issue persists, collect a HAR file and any Trace IDs from the Network tab and share them with GoodData Support for deeper log analysis. 👍 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.
p
image.png
j
Hi Philip, sorry to hear about the troubles here. Just for clarification, this is only happening in microsoft edge, correct? Other browsers are not displaying the issue? Also, is this only in an embedded environment, or in the platform?
Hi Philip, I've just accessed your organization with the admin account. I can see some very large tables taking a long time to load. I'm looking into the tables you have posted from the screenshot now, but could you please provide a link to the exact dashboards which are freezing?
p
@Joseph Heun Only Microsoft Edge, but also one user reported same issue with Chrome. This is the dashboard that is freezing: dash.ekonomi.dashboard (Ekonomi Dashboard)
As you probably realized it is not embedded, but in the platform.
j
yes, I am seeing this in chrome as well too. Occasionally, I can get it to load, but I opened the large tables individually in the Analytical Designer, and it shows me an error that it is too large. I checked our logs with the related traceID and I can see the following error:
"Reached limit of max size of data returned from data source. The limit is 500,000,000 bytes (500 MB)"
It seems these tables are too large and will need to be filtered down to display them. Is it possible to do so?
On a side note, the dashboard should still not be freezing like this and instead should also display an error. Therefore, we will open a ticket with engineering to investigate further
p
Thanks for confirming. Is it the dashboard that is reaching the limit? Or individual visualizations? Would it help if we split the dashboard into separate tabs?
j
It really seems like just the individual visualizations that are causing it to freeze. Given this, splitting them in tabs might actually work. Could you give that a try and see if it helps?
p
It works in Firefox, so the actual limitation is in the browsers (Edge and Chrome). But, I just read that the browsers might request/fetch the data a bit differently. I will try changing it into different tabs in our dev.
a
Hi @Joseph Heun we're facing the same issue on one of our dashboards and I cannot split the insights into tabs. Do you think the issue will be fixed soon or can you recommend another solution?
d
Hello Amir, This is Daniela with the Technical Support team. I work with Joe and he highlited this issue. The main issue here is that organization layout. The
dash.ekonomi.dashboard
JSON has both
content.layout
and
content.tabs[0].layout
defined simultaneously, with identical content. Therefore the executions get stuck due to the conflicts and exceeding combined in size.
The solution here is to PATCH
dash.ekonomi.dashboard
to remove
content.layout
entirely, keeping only
content.tabs[0].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 keep
content.layout
and remove
content.tabs
.
Let me know how it goes
a
Hi Daniela, I'm talking about a different dashboard and a different organization, only the symptoms seemed similar (insights getting stuck and page becoming unresponsive) that's why I replied in the tread 🙂 perhaps I'm having a different issue
s
Hi, same problem here, dashboards are loading very slow (chrome).
j
Hi @Amir and @Sanja Lonchar these seem like isolated issues as there was not a platform wide issue. Could you please start new threads providing details and links to broken dashboards? Our support team will evaluate them
2
d
Hello Filip, Please disregard my previous comment. I’ve been checking further and the issue looks on our end. I’m currently checking this with priority along our with our engineering team. I’ll come here soon with more details. My apologies
Hello all, Thanks for your patience! We found the issue, some visualizations return a very large number of data points, and when the browser tries to render them all at once it can freeze or crash the tab with no error shown. Whether it freezes depends on the device, which is why it sometimes worked and failed other times, and why some browsers handled it better than others. Our engineering team has prepared a fix for this that is expected to be released tomorrow. Once in production, I’ll let you know so you can double-check on your end. In the meantime, as a workaround, I recommend filtering the heavier visualizations (for example, narrowing the date range). My apologies for the troubles.
p
Ok, thanks for the update! Please let me know tomorrow and I can check on my end.
d
Hello All, Due to the urgency, we were able to release the fix right now in Production. Please refresh your browser and try again to load the dashboards. Let me know how it goes.
p
@Daniela Salmeron thanks, now it is loading. Tested in Ms Edge
🙌 1