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
When dealing with very large numeric only files the index takes up ~ the same amount of memory as the actual data.
We could investigate writing the index to disk and them mmaping that, which would dramatically reduce the memory requirements.
We could keep the index in memory but compress it with something like lz4 and uncompress it as needed, provided we store some bookkeeping information on what row numbers the blocks correspond to.
We could do both the above, write the index to disk and uncompress on demand.
The text was updated successfully, but these errors were encountered:
jimhester
changed the title
Consider mmapped index
Consider alternative index approaches
Mar 1, 2019
When dealing with very large numeric only files the index takes up ~ the same amount of memory as the actual data.
The text was updated successfully, but these errors were encountered: