You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Estimates how tasks will be assigned to cluster's instances
510
-
based on the resources required by each task
509
+
"""
510
+
Evaluates whether a task can be executed on any instance within the cluster. If the task's resource requirements are met, the task is *denoted* as assigned to the cluster.
511
+
Note: This is an estimation only since actual scheduling is handled by Dask.
511
512
512
513
Returns:
513
-
A tuple with
514
-
- list of unassigned tasks (i.e. those not fitting available machines in cluster)
515
-
- same cluster instance as in the input
516
-
514
+
A tuple containing:
515
+
- A list of unassigned tasks (tasks whose resource requirements cannot be fulfilled by the available machines in the cluster).
0 commit comments