Skip to content

Commit

Permalink
Set dask distributed worker memory settings to recommendation for NER…
Browse files Browse the repository at this point in the history
…SC Cori
  • Loading branch information
jthiltges committed Mar 27, 2024
1 parent b4a05ee commit 1782b24
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docker/dask/dask.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ distributed:
work-stealing: False
worker:
memory:
target: 0.7
spill: 0.9
pause: 0.92
terminate: 0
# Recommendations for NERSC Cori
# https://jobqueue.dask.org/en/latest/configurations.html
target: False # Avoid spilling to disk
spill: False # Avoid spilling to disk
pause: 0.80 # fraction at which we pause worker threads
terminate: 0.95 # fraction at which we terminate the worker
profile:
interval: 1d
cycle: 2d
Expand Down

0 comments on commit 1782b24

Please sign in to comment.