Currently, the WorkerBackend request for all the workers at once and wait for all of them to be ready. An alternative to this is to start a Task and request individual workers instead of waiting for all of them. This allows work to get started immediately when the workers are available but introduces additional complexity. For example, you can't use @everywhere because not all the workers are available.
Currently, the
WorkerBackendrequest for all the workers at once and wait for all of them to be ready. An alternative to this is to start aTaskand request individual workers instead of waiting for all of them. This allows work to get started immediately when the workers are available but introduces additional complexity. For example, you can't use@everywherebecause not all the workers are available.