我发现在Databricks中运行所有以前的笔记本是非常普遍的需求:
。
解决办法需要:
order
中运行“运行以上所有”的函数。
发布于 2021-04-15 17:00:04
找到了一种或两种方法来做到这一点:https://medium.com/datasentics/how-to-execute-a-databricks-notebook-from-another-notebook-b4a5b093cb2
对于Databricks社区版本,它只能使用%run ..的方式
例如,对于Azure Databricks,我可以用一堆单元格创建一个新的笔记本,如:
dbutils.notebook.run('00_ingest_raw', timeout_seconds=0)https://stackoverflow.com/questions/67111794
复制相似问题