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
I have a huge, static 70 GB tab-delimited file that I want to slice and dice now and then and in the future. Because it's so big, indexing alone will take 10-15 minutes when calling read_tsv(). Since the file is static, this index will be identical every time I try to parse this file, e.g. in a future R session. Is it possible to save the index to file so that it can be imported quickly next time? Something like:
This issue is marked as resolved but I can't find anything in the read_delim or vroom documentation about supplying an existing index to enhance read performance. I was wondering if someone could point me in the right direction?
I have a huge, static 70 GB tab-delimited file that I want to slice and dice now and then and in the future. Because it's so big, indexing alone will take 10-15 minutes when calling
read_tsv()
. Since the file is static, this index will be identical every time I try to parse this file, e.g. in a future R session. Is it possible to save the index to file so that it can be imported quickly next time? Something like:In future R session:
The text was updated successfully, but these errors were encountered: