-
Notifications
You must be signed in to change notification settings - Fork 37
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
feat(helm): add initial Dask support #701
Conversation
c5a2e9e
to
bdab669
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #701 +/- ##
==========================================
+ Coverage 60.01% 60.06% +0.05%
==========================================
Files 32 32
Lines 3509 3546 +37
==========================================
+ Hits 2106 2130 +24
- Misses 1403 1416 +13
|
bdab669
to
49c12e9
Compare
49c12e9
to
7c0f3e4
Compare
7c0f3e4
to
266fe9b
Compare
266fe9b
to
fc9c420
Compare
fc9c420
to
95f7574
Compare
95f7574
to
64f7feb
Compare
64f7feb
to
73ab0ea
Compare
989c87e
to
4b05f17
Compare
a7ea4f9
to
434e95a
Compare
376363e
to
3b7f99b
Compare
3b7f99b
to
4543023
Compare
4543023
to
482b597
Compare
REANA_DASK_CLUSTER_MAX_MEMORY_LIMIT | ||
): | ||
raise REANAValidationError( | ||
f'The "memory" requested in the dask resources exceeds the limit ({REANA_DASK_CLUSTER_MAX_MEMORY_LIMIT}).\nDecrease the number of workers requested or amount of memory consumed by a single worker.' |
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.
The limit testing seems to work nicely, I have tested a few scenarios.
reana_server/rest/info.py
Outdated
value=REANA_DASK_CLUSTER_MAX_MEMORY_LIMIT, | ||
) | ||
cluster_information["dask_cluster_default_single_worker_memory"] = dict( | ||
title="Memory for one Dask worker by default", |
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.
For the documentation strings (titles), please see the comments to the reana
and reana-commons
repositories.
482b597
to
6b1d839
Compare
6b1d839
to
15d0b97
Compare
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.
Works nicely 👍
This pull request contains the ongoing work of dask integration into REANA.