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


Python distributed.recreate_tasks.ReplayTaskClient.recreate_task_locally用法及代碼示例


用法:

recreate_task_locally(future)

對於任何計算,無論成功還是失敗,都在本地執行任務進行調試。

此操作應在未來(gather , compute 等的結果)以 “pending” 以外的狀態返回後執行。您可能想要調試成功完成的未來的情況可能包括返回意外結果的計算。一個常見的調試過程可能包括使用 pdb.runcall 以調試模式在本地運行任務。

參數

future未來

gather 相同的東西。

返回

任何;將返回任務未來的結果。

例子

>>> import pdb                                    
>>> future = c.submit(div, 1, 1)                  
>>> future.status                                 
'finished'
>>> pdb.runcall(c.recreate_task_locally, future)

相關用法


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