-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Multi-file loader #39
Comments
Thanks for the issue, it will probably take a while for me to get to this properly, but for the record this is rolling around in the back of my mind. I want to handle this, but also handle it properly (use a cached merkle-tree hash for starters, but more thought is needed). |
I'm thinking more on this, and specifically having a directory. I'm wondering if introducing a |
That sounds sensible. Would you then chain a directory loader and a specific file loader? Or would you just pass the directory to a loading function which is then free to process its contents in any way? |
We now have This is a big step, and it's been done properly: merkle tree hashing for integrity, with caching to avoid long waits for repeated work on each access/check. Now we have an easy way to arrive at a collection of items, we can start thinking about the next step: how to handle them in bulk... |
As recently discussed on Zulip, it would be nice to have a loader which allows loading multiple files that have the same schema, which is already supported by e.g.
CSV.jl
orArrow.jl
. So I thought I'd make an issue to track this :)The text was updated successfully, but these errors were encountered: