-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Speed up on, saving to cloud #214
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
c13ba38
add NUMBER_CONCURRENT_JOBS
peterdudfield 9154578
mypy fix
peterdudfield 8cef147
mypy
peterdudfield c63a554
role back
peterdudfield a070be3
turn on verbose
peterdudfield 2b33bc1
try with processes
peterdudfield 6821301
add logging
peterdudfield 68651b3
add log
peterdudfield c5b439a
make chunk size of lat and lon 1
peterdudfield bca7ce2
role back
peterdudfield 1131ec5
change to 17 and 18 chunks for lat lon
peterdudfield 7f4df0d
have option to change large chunk size divider
peterdudfield df748a0
lint
peterdudfield 30b9510
fix
peterdudfield f39af76
lint
peterdudfield e7ceff9
lint
peterdudfield 69de6dc
try using safe_chunks=False
peterdudfield 6150c46
remove truncate
peterdudfield feba5d1
tidy
peterdudfield c1d8702
lint
peterdudfield 0a18e80
remove chunking of 1
peterdudfield e150bd6
change to 2 chunks in lat lon
peterdudfield 1fd874d
add logging
peterdudfield a7d304e
remove safe chunks
peterdudfield 64cfa43
Move maximum chink size back to 8, change to 2 in ecmwf realtime
peterdudfield 0d24ef4
lint
peterdudfield 75bc57e
tidy up, for parrellel threads and processes
peterdudfield daa2a9a
tidy
peterdudfield 45d0c0c
Merge branch 'main' into concurrent-jobs
peterdudfield 6c3e9ed
fix(coordinate): Log warning on unsafe regional writes (#216)
devsjc 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 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
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
Oops, something went wrong.
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.
I had it as threads because it's IO that's intensive, as opposed to compute, in each iteration. How come you cahnge it to processes? Also, if concurrency is set to True, why would n_jobs want to then be set to 1? Would that not make it not concurrent again?