gpt4 book ai didi

scala - 如何计算databricks notebook中命令单元的执行时间

转载 作者:行者123 更新时间:2023-12-02 04:33:03 24 4
gpt4 key购买 nike

我需要知道在每个笔记本中执行命令单元列表所花费的时间。 Databricks 显示“命令需要 x 秒数”来执行。与显示的执行时间类似,我需要捕获在笔记本中执行所有命令所花费的时间。

enter image description here

enter image description here

最佳答案

我一直在使用以下内容:

val startTime = System.nanoTime
// your code goes here
val endTime = System.nanoTime

val elapsedSeconds = (endTime - startTime) / 1e9d

既然您提到您是新手,请不要忘记 Spark 使用延迟执行,因此执行包含转换的单元格的时间不是真正的执行时间。一定要包括一个 Action 来衡量真正的执行时间。

关于scala - 如何计算databricks notebook中命令单元的执行时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46694665/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com