Hi Dojo,
I have a GQI that allows live updates with subscriptions to DOM, a service, and two elements. This GQI works as intended on a test dashboard, where updates appear in less than a second. However, when testing in a low-code app, the updates take about 10-30 seconds.
Is there any reason why this happens? What can be done to make the live updates in the low-code app as consistent as they are on the dashboard?
Hi Carlos,
Are you seeing this when using the exact same query on both the dashboard & in the LCA? GQI has 2 different ways of updating data that depend on the used data source & operators in the query. The 'notification events' mechanism is slower than the the 'real-time events' mechanism and will only update the data after 30s. This is the difference that you could be seeing for different queries.
Hi Wout, indeed that was the issue. the both were using the same GQI, but the LCA query was also using a 'join' which made it take longer than the dashboard query. now is working as expected.
Thank you!