-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable downloading raw results (#2217)
introduce flag to download `--raw` results instead of merged results. After sharding was removed, we always merge and delete raw directory, which might break something if a user submits a non-deterministic job with concurrency > 1. This PR also fixes a bug by failing in case multiple results with different CIDs share the same output file names instead of silently skipping
- Loading branch information
Showing
4 changed files
with
185 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ type DownloaderSettings struct { | |
OutputDir string | ||
IPFSSwarmAddrs string | ||
LocalIPFS bool | ||
Raw bool | ||
} |