You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This approach works as expected. However, when we need to retrieve a large number of rows (500+) for reports, we observed that scheduling the BatchDataLoader for each row takes some time. Although it's not a significant delay, it is noticeable in our telemetry data.
Is there a better way to handle such scenarios? I'm considering a method to fetch all parents at once and schedule everything in one go:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Currently, we are using
BatchDataLoader
to fetch data for child nodes:This approach works as expected. However, when we need to retrieve a large number of rows (500+) for reports, we observed that scheduling the BatchDataLoader for each row takes some time. Although it's not a significant delay, it is noticeable in our telemetry data.
Is there a better way to handle such scenarios? I'm considering a method to fetch all parents at once and schedule everything in one go:
Beta Was this translation helpful? Give feedback.
All reactions