-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Can't export more than 10k rows as csv #1961
Comments
Thanks for opening this issue!
|
That's a feature limitation, see #1494 why. The export approach for large datasets could be to use a DB pointer and export in batches. That is currently not supported and would be a new feature request. Until then, you could use mongo shell (or whatever your DB is) to export. However, the current 10k is an arbitrary limit. We could add Side note: the pointer based batch export functionality could be reused to solve the pagination issue #1551. Currently, pointer functionality is not supported by Parse Dashboard at all. |
🎉 This change has been released in version 5.1.0-alpha.5 |
🎉 This change has been released in version 5.1.0-beta.2 |
🎉 This change has been released in version 5.1.0 |
New Feature / Enhancement Checklist
Current Limitation
export all rows only exports first 10k objects or rows in csv.
Feature / Enhancement Description
Should be able to export all data in a class.
Example Use Case
Alternatives / Workarounds
First export all data in a class as json format selecting export this data option from Edit menu. Then user have to convert that data to csv format.
3rd Party References
The text was updated successfully, but these errors were encountered: