Get startedGet started for free

Listing Databricks clusters

Databricks clusters are a set of virtual computers hosted in the Databricks platform that allow you to run Databricks jobs and notebooks. Similar to the jobs API, the clusters API of the WorkspaceClient exposes a .list() function that lists all clusters in the authenticated workspace.

This exercise is part of the course

Databricks with the Python SDK

View Course

Exercise instructions

  • Iterate through all clusters.
  • Print the cluster name.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

from databricks.sdk import WorkspaceClient

w = WorkspaceClient()

# Iterate through all clusters
for c in w.____.____():
  # Print cluster id for each cluster
  print(c.____)
Edit and Run Code