Prashant Sharma
05/05/2025, 12:41 PMexecution.reallAll()
but it fails on large datasets with a data limit error. We switched to paginated execution.readWindow()
calls(1000 rows per call), which works-but sequential fetching slows down the process.
We want to fetch multiple readWindow()
pages in parallel, combine the `IDataView`s, and pass them to our export logic--while keeping the row order intact.
Could you suggest the most optimized and scalable approach for large data exports using the SDK?
any tips or best practices for combining IDataView
results would be helpful as well.
Thanks,Moises Morales
05/05/2025, 2:19 PMPrashant Sharma
05/05/2025, 2:47 PMPrashant Sharma
05/06/2025, 6:28 AM