用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。