當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python distributed.Client.write_scheduler_file用法及代碼示例


用法:

write_scheduler_file(scheduler_file)

將調度程序信息寫入 json 文件。

這有助於使用文件係統輕鬆共享調度程序信息。調度程序文件可用於使用相同的調度程序實例化第二個客戶端。

參數

scheduler_filestr

寫入調度程序文件的路徑。

例子

>>> client = Client()  
>>> client.write_scheduler_file('scheduler.json')  
# connect to previous client's scheduler
>>> client2 = Client(scheduler_file='scheduler.json')

相關用法


注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 distributed.Client.write_scheduler_file。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。