Am trying to integrate Azure Databricks within DevOps pipeline and used following URL: https://menziess.github.io/howto/run/databricks-notebooks-from-devops/
- At Azure Databricks, created a job on top of my notebook
- Used a separate VM with preinstalled Databricks-CLI and set it as a self-hosted pool agent
- Prepared a YAML script in pipeline, which calls the above databricks job on my self hosted agent pool
My Pipeline and databricks jobs are executing successfully.
But I want to extract the output generated by notebook inside pepeline and print on console. In this way anyone can trigger the pipeline by passing their parameters and view the result on console screen. Notebook mostly returns output as table data (e.g. select * from table).
Could someone help me with this.