Resolved! How to get the runId, jobId of ephemeral job created in a notebook workflow from parent notebook?
- 3879 Views
- 1 replies
- 0 kudos
Latest Reply
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...
- 0 kudos