IniziaInizia gratis

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.

Questo esercizio fa parte del corso

Databricks with the Python SDK

Visualizza il corso

Istruzioni dell'esercizio

  • Iterate through all clusters.
  • Print the cluster id for each cluster.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

from databricks.sdk import WorkspaceClient

w = WorkspaceClient()

# Iterate through all clusters
for c in w.____.____():
  # Print cluster id for each cluster
  print(c.____)
Modifica ed esegui il codice