Skip to content
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

Large amounts of data #6

Open
rufuspollock opened this issue Nov 17, 2016 · 0 comments
Open

Large amounts of data #6

rufuspollock opened this issue Nov 17, 2016 · 0 comments

Comments

@rufuspollock
Copy link
Member

rufuspollock commented Nov 17, 2016

Pandas and R both support very large datasets seamlessly. This will usually require some special work and avoid loading all of data into memories. Most libraries I have seen in JS do not do that - they load all data into memory (and fairly inefficiently).

For example, the classic http://learnjsdata.com/ uses lodash and does everything in memory.

This would be especially important for the browser where even loading fairly small datasets into memory (e.g. 6Mb CSV) may cause performance issues (esp on e.g. a phone).

Solutions

A solution requires "backing" your dataframe API implementation on a backend stores that can leave most data on disk or in some special storage mechanism.

  • Browser: For example, for the browser using IndexedDB to hold the data.
  • Node: ?? - you can just use disk (but you would then need to wrap yourself)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant