用法:
distributed.diagnostics.progressbar.progress(*futures, notebook=None, multi=True, complete=True, **kwargs)
跟踪期货的进展
这在笔记本电脑和控制台中的操作方式不同
- Notebook:这会立即返回,在屏幕上留下一个 IPython 小部件
- 控制台:这会阻塞,直到计算完成
- futures:Futures
要跟踪的期货或 key 列表
- notebook:布尔(可选)
是否在笔记本中运行(默认为猜测)
- multi:布尔(可选)
独立跟踪不同的函数(默认为 True)
- complete:布尔(可选)
跟踪所有键 (True) 或仅跟踪尚未运行的键 (False)(默认为 True)
参数:
注意:
在笔记本中,
progress
的输出必须是单元格中的最后一条语句。通常,这意味着在单元格末尾调用progress
。例子:
>>> progress(futures) [########################################] | 100% Completed | 1.7s
相关用法
- Python distributed.diagnostics.plugin.SchedulerPlugin用法及代码示例
- Python distributed.deploy.Adaptive用法及代码示例
- Python distributed.protocol.serialize.register_generic用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.recreate_tasks.ReplayTaskClient.recreate_task_locally用法及代码示例
- 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.diagnostics.progressbar.progress。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。