用法:
profile(key=None, start=None, stop=None, workers=None, merge_workers=True, plot=False, filename=None, server=False, scheduler=False)
收集有关近期工作的统计分析信息
- key:str
要选择的键前缀,这通常是一个函数名称,如‘inc’ 保留为无以收集所有数据
- start:时间
- stop:时间
- workers:列表
限制个人资料信息的工人名单
- server:bool
如果为 true,则返回工作线程的配置文件而不是工作线程。这在分析 Dask 本身而不是用户代码时很有用。
- scheduler:bool
如果为 true,则从调度程序的管理线程而不是工作线程返回配置文件信息。这在分析 Dask 的调度本身时很有用。
- plot:布尔值或字符串
是否返回绘图对象
- filename:str
保存绘图的文件名
参数:
例子:
>>> client.profile() # call on collections >>> client.profile(filename='dask-profile.html') # save to html file
相关用法
- Python distributed.Client.processing用法及代码示例
- Python distributed.Client.publish_dataset用法及代码示例
- Python distributed.Client.persist用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.Client.ncores用法及代码示例
- Python distributed.Client.retire_workers用法及代码示例
- Python distributed.Client.unregister_worker_plugin用法及代码示例
- Python distributed.Client.set_metadata用法及代码示例
- Python distributed.Client.scheduler_info用法及代码示例
- Python distributed.Client.submit用法及代码示例
- Python distributed.Client.compute用法及代码示例
- Python distributed.Client.nthreads用法及代码示例
- Python distributed.Client.unpublish_dataset用法及代码示例
- Python distributed.Client.start_ipython_scheduler用法及代码示例
- Python distributed.Client.get用法及代码示例
- Python distributed.Client.who_has用法及代码示例
- Python distributed.Client.get_versions用法及代码示例
- Python distributed.Client.run用法及代码示例
- Python distributed.Client.register_worker_plugin用法及代码示例
- Python distributed.Client.map用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.Client.profile。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。