Aan de slagBegin gratis

Check that a cluster is running

We can use the clusters service in the Databricks SDK to retrieve information about a specified cluster. In this exercise, we are interested in looking at the state of a cluster. This informs us whether a cluster is Terminated, Idle or in a Running state. Assume that the id of the cluster we are interested in is stored in a variable called cluster_id.

Deze oefening maakt deel uit van de cursus

Databricks with the Python SDK

Bekijk cursus

Oefeninstructies

  • Retrieve cluster information for cluster with id stored in variable cluster_id.
  • Print the state of cluster to confirm it is running.

Interactieve oefening met praktijkervaring

Probeer deze oefening door deze voorbeeldcode aan te vullen.

w = WorkspaceClient()

# Retrieve cluster info for cluster with id stored in variable cluster_id
cluster_info = w.clusters.____(cluster_id)

# Print the state of cluster to confirm it is running
print(cluster_info.____)
Code bewerken en uitvoeren