使用数据工厂从Databricks笔记本中获取输出
我有一个Databricks笔记本(使用R),该笔记本在数据出厂管道中用于修改某些数据。是否有某种方法可以在文件中或直接在数据工厂中获得块的全部输出(或从特定的块中)?
I have a Databricks notebook (using R) that It is used in a Data Factory pipeline to modify some data. Is there some way to obtain full output of the chunks (or from a specific chunk) in a file or directly in Data Factory, in case of errors?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当Databricks活动在Azure Data Factory中失败时,它不会给笔记本的实际错误消息,而是会使Databricks执行失败。
要检索笔记本错误消息,请在失败时将笔记本活动连接到设置变量活动,以使用表达式存储错误消息:
@activity('Notebook1')。error.message
When Databricks activity fails in azure data factory, it will not give the actual error message of the notebook instead gives the databricks execution failed with terminated.
To retrieve the notebook error message, connect the notebook activity upon failure to the set variable activity to store the error message using the expression:
@activity('Notebook1').error.message