-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Parallel open_mfdataset #1983
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
Merged
Merged
Parallel open_mfdataset #1983
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
a364b22
proof of concept implementation for parallel open using dask.bag
9397aca
Merge branch 'master' of github.com:pydata/xarray into feature/parall…
037fb4d
parallel open option in open_mfdataset
4150fd0
use dask delayed, further tests to check that dask arrays make it thr…
0e0eb7c
parallel=None by default and automagicalize to True when dask distrib…
e703077
Merge branch 'master' of github.com:pydata/xarray into feature/parall…
04212f9
docs and minor improvement to delayed/compute
b9d5eea
500 file max
af4883d
Merge branch 'master' of github.com:pydata/xarray into feature/parall…
80ed614
skip many-files-test on windows
dd1c4cf
cleanup parallel open a bit
4475d13
refactor parallel open a bit, fix tests and fixtures
9a5d63b
Merge branch 'feature/parallel_open_netcdf' of github.com:jhamman/xar…
417ab5a
Merge branch 'master' of github.com:pydata/xarray into feature/parall…
0115d78
default parallel open when dask is installed + style fixes
e33fc15
fix parallel kwarg
06df0f6
Merge branch 'master' of github.com:pydata/xarray into feature/parall…
5f496ad
pynio from conda-forge/dev for pynio test suite
90b8eab
manually skip tests
280a46f
Merge branch 'master' of github.com:pydata/xarray into feature/parall…
ba831b9
Merge branch 'master' of github.com:pydata/xarray into feature/parall…
b0a7948
parallel defaults to false
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: test_env | ||
channels: | ||
- conda-forge | ||
- ncar | ||
- conda-forge/label/dev | ||
dependencies: | ||
- python=3.6 | ||
- cftime | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@maxim-lian - do you know a better way to skip parameterized tests based on some condition?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might include the engine as a fixture. This is how we do it with Parquet in dask.dataframe