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
[Openstack Cloud Provider] Implemented worker_command and worker_threads for OpenStackCluster object (#463)
* added worker_command parameter to overwrite command that workers should run when starting
* fixed the examples/OpenstackCluster-scorepredict.ipynb
* added the new configuration paramaters under cloudprovider.yaml
* we are not using json.
Copy file name to clipboardExpand all lines: dask_cloudprovider/cloudprovider.yaml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -160,6 +160,9 @@ cloudprovider:
160
160
external_network_id: null # The ID of the external network used for assigning floating IPs. List available external networks using: `openstack network list --external`
161
161
create_floating_ip: false # Specifies whether to assign a floating IP to each instance, enabling external access. Set to `True` if external connectivity is needed.
162
162
docker_image: "daskdev/dask:latest"# docker image to use
163
+
worker_threads: 2# The number of threads to use on each worker.
164
+
worker_command: null # str (optional) The command workers should run when starting. for example, ``dask-cuda-worker`` on GPU-enabled instances.
165
+
163
166
164
167
nebius:
165
168
token: null # iam token for interacting with the Nebius AI Cloud
0 commit comments