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

Pull Cluster Tags

User16765131552
Contributor III

Does anybody know any in-notebook or JAR code to pull cluster tags from the runtime environment?

Something like...

dbutils.notebook.entry_point.getDbutils().notebook().getContext().tags().apply('user')

but for the cluster name?

1 ACCEPTED SOLUTION

Accepted Solutions

User16765131552
Contributor III

Turns out this is super easy! Cluster name and other customer tags are part of the Spark Conf:

image

View solution in original post

3 REPLIES 3

User16765131552
Contributor III

Turns out this is super easy! Cluster name and other customer tags are part of the Spark Conf:

image

DatBoi
Contributor

Did you find any documentation for spark.conf.get properties? I am trying to get some metadata about the environment my notebook is running in (specifically cluster custom tags)? But cannot find any information beside a couple of forum posts.

UPDATE

I ended up using the code below to get a list of the tags for the cluster my notebook is running on. I only found this property thanks to another forum post (Azure Spark Configuration (Environment) Documentation - Microsoft Q&A).
cluster_tags = spark.conf.get("spark.databricks.clusterUsageTags.clusterAllTags")

It would be nice if there was some type of documentation for this type of stuff somewhere because it seems to not exists and this is the only way to get environment properties. I am also looking for a way to get tags from my Azure resource group from the cluster level through a notebook. Does anyone know if this is possible?

cluster_tags = spark.conf.get("spark.databricks.clusterUsageTags.clusterAllTags")

 

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.