-
Notifications
You must be signed in to change notification settings - Fork 32
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
Solution for a large number of files? #163
Comments
Good question. I think this relates to #2. There are some great templating ideas on that thread. For your use case, you might use the yaml package to write each day's Last summer, I wrote remakeGenerator to programmatically generate |
@wlandau Do you have thoughts on using |
@kendonB After my company lets me release the latest |
@kendonB I thought about your use case a little more, and I think there may be more to say.
|
Hi, I'm new to remake.
I haven't worked out a nice way to deal with a large number of files in
remake
. I have an application where a function or script reads a large number of files (think daily data with a file per day), which I'd like to track inremake
, and outputs a smaller but still large number of files (think monthly aggregates of some subset of the daily data).As far as I can tell, in the current version, I would have to make individual targets for each raw data download, and only have a single target for each of the monthly aggregations.
This cries out for a loop, but I haven't seen how to do that in
remake
.Thoughts? Thanks for any help.
The text was updated successfully, but these errors were encountered: