-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow direct download of small (<=1K) recordsets #5
Comments
A workaround has been deployed. There is a new parameter for download calls, This should not be a permanent solution, though. Ideally, we should come up with a way of efficiently counting recordsets and link the download method to it |
Where do you expect the value of r to come from? On Tue, May 24, 2016 at 7:43 AM, Javier Otegui [email protected]
|
In the case of portal downloads, it comes from the previous "associated" However, with the solution outlined in issue #3, things might be a bit Javier Otegui On Tue, May 24, 2016 at 7:43 AM, Javier Otegui [email protected]
— |
This was implemented in the portal-centered way of doing things, because a search would return the number of records available and, based on that, the dowload service would decide to create the download directly or launch the asynchronous service. However, calling the download API doesn't precalculate this value and, therefore, all downloads are performed asynchronously.
This feature requires having a good, greatly optimized count service (#3), since it would involve calling such a service first to calculate the records to download and then call the download service itself based on these results.
The text was updated successfully, but these errors were encountered: