cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How to check the status of a cluster via Rest API?

User16790091296
Contributor II
 
3 REPLIES 3

Hayley
New Contributor III
New Contributor III

You can use this code for a GET call from the cluster API Docs and look at the response field "state" to see the status. You will want to swap out the domain for your workspace's domain and the cluster ID of the cluster you are monitoring.

curl --netrc -X GET \
https://<DOMAIN>.cloud.databricks.com/api/2.0/clusters/get \
--data '{ "cluster_id": "1<CLUSTER ID>" }' \
| jq .

Hope this helps!

Taha
New Contributor III
New Contributor III

There's a clusters GET request you can make as part of the clusters API:

https://docs.databricks.com/dev-tools/api/latest/clusters.html#get

Mooune_DBU
Valued Contributor

Dy doing a `GET` call using the cluster id

curl --netrc -X GET \
https://dbc-a1b2345c-d6e7.cloud.databricks.com/api/2.0/clusters/get \
--data '{ "cluster_id": "1234-567890-myclustID" }' \
| jq .

The response json will have a `state` tag which will look like this:

{
  "cluster_id": "1234-567890-myclustID",
  ...
  "state": "TERMINATED",
  "state_message": "Inactive cluster terminated (inactive for 120 minutes).",
...
}

Welcome to Databricks Community: Lets learn, network and celebrate together

Join our fast-growing data practitioner and expert community of 80K+ members, ready to discover, help and collaborate together while making meaningful connections. 

Click here to register and join today! 

Engage in exciting technical discussions, join a group with your peers and meet our Featured Members.