用法:
class distributed.performance_report(filename='dask-report.html', stacklevel=1, mode=None)
收集绩效报告
这将创建一个静态 HTML 文件,其中包含仪表板的许多相同图以供以后查看。
生成的文件使用 JavaScript,因此必须使用 Web 浏览器查看。在本地,我们建议使用
python -m http.server
或在线托管文件。- filename: str, optional:
本地保存性能报告的文件名
- stacklevel: int, optional:
用于填充报告的调用代码部分的代码执行框架。默认为
1
,这是调用performance_report
的框架- mode: str, optional:
要传递给
bokeh.io.output.output_file()
的模式参数。默认为None
。
参数:
例子:
>>> with performance_report(filename="myfile.html", stacklevel=1): ... x.compute()
$python -m http.server $打开 myfile.html
相关用法
- Python distributed.protocol.serialize.register_generic用法及代码示例
- Python distributed.protocol.serialize.serialize用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.recreate_tasks.ReplayTaskClient.recreate_task_locally用法及代码示例
- Python distributed.diagnostics.plugin.SchedulerPlugin用法及代码示例
- Python distributed.Client.ncores用法及代码示例
- Python distributed.Client.retire_workers用法及代码示例
- Python distributed.Client.unregister_worker_plugin用法及代码示例
- Python distributed.fire_and_forget用法及代码示例
- Python distributed.Client.set_metadata用法及代码示例
- Python distributed.Client.scheduler_info用法及代码示例
- Python distributed.Client.submit用法及代码示例
- Python distributed.Client.compute用法及代码示例
- Python distributed.SpecCluster.scale用法及代码示例
- Python distributed.get_worker用法及代码示例
- Python distributed.SpecCluster.scale_up用法及代码示例
- Python distributed.Client.nthreads用法及代码示例
- Python distributed.comm.resolve_address用法及代码示例
- Python distributed.Client.unpublish_dataset用法及代码示例
- Python distributed.get_task_stream用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.performance_report。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。