We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d60a753 commit 9739b25Copy full SHA for 9739b25
packages/dask-task-models-library/src/dask_task_models_library/resource_constraints.py
@@ -8,7 +8,8 @@
8
class DaskTaskResources(TypedDict, total=False):
9
CPU: float
10
RAM: int # in bytes
11
- # threads is a constant of 1 (enforced by static type checkers via Literal)
+ # NOTE: threads is a constant of 1 (enforced by static type checkers via Literal)
12
+ # a dask worker can only run as many jobs as it has threads
13
threads: Literal[1]
14
15
0 commit comments