cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get the runId, jobId of ephemeral job created in a notebook workflow from parent notebook?

brickster_2018
Databricks Employee
Databricks Employee
 
1 ACCEPTED SOLUTION

Accepted Solutions

brickster_2018
Databricks Employee
Databricks Employee

One solution is to get the runId,jobId details using notebook context in child notebook and return these values using dbutils.notebook.exit to parent notebook.

%scala
val jobId = dbutils.notebook.getContext.tags("jobId").toString()
val runId = dbutils.notebook.getContext.tags("jobId").toString()
 
 
 
%scala
import com.fasterxml.jackson.module.scala.DefaultScalaModule
import com.fasterxml.jackson.module.scala.experimental.ScalaObjectMapper
import com.fasterxml.jackson.databind.ObjectMapper
 
val jsonMapper = new ObjectMapper with ScalaObjectMapper
jsonMapper.registerModule(DefaultScalaModule)
 
dbutils.notebook.exit(jsonMapper.writeValueAsString(Map("jobId" -> jobId, "runId" -> runId)))

View solution in original post

1 REPLY 1

brickster_2018
Databricks Employee
Databricks Employee

One solution is to get the runId,jobId details using notebook context in child notebook and return these values using dbutils.notebook.exit to parent notebook.

%scala
val jobId = dbutils.notebook.getContext.tags("jobId").toString()
val runId = dbutils.notebook.getContext.tags("jobId").toString()
 
 
 
%scala
import com.fasterxml.jackson.module.scala.DefaultScalaModule
import com.fasterxml.jackson.module.scala.experimental.ScalaObjectMapper
import com.fasterxml.jackson.databind.ObjectMapper
 
val jsonMapper = new ObjectMapper with ScalaObjectMapper
jsonMapper.registerModule(DefaultScalaModule)
 
dbutils.notebook.exit(jsonMapper.writeValueAsString(Map("jobId" -> jobId, "runId" -> runId)))

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local community—sign up today to get started!

Sign Up Now