Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cluster designer ipywidget #62

Open
jacobtomlinson opened this issue Mar 10, 2023 · 0 comments
Open

Cluster designer ipywidget #62

jacobtomlinson opened this issue Mar 10, 2023 · 0 comments

Comments

@jacobtomlinson
Copy link
Contributor

jacobtomlinson commented Mar 10, 2023

Dask Gateway has a cluster options widget that lets users interactively configure their cluster via a GUI. It seems to be popular.

I wonder if we could implement something more generic here that could be used by all cluster managers where we use the entrypoints to discover all packages with cluster managers, and then use the kwargs and docstrings of those cluster managers to generate an ipywidgets form where you can design your cluster interactively. It could also have a button to save the YAML output for version control reasons.

from dask_ctl import create_cluster, cluster_designer

spec = cluster_designer()
spec

image

cluster = create_cluster(spec)
# or if the user clicked the "Export YAML" button
cluster = create_cluster("/path/to/exported/spec.yaml")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant