用法:
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)
相關用法
- Python distributed.recreate_tasks.ReplayTaskClient.recreate_error_locally用法及代碼示例
- Python distributed.protocol.serialize.register_generic用法及代碼示例
- Python distributed.Client.gather用法及代碼示例
- Python distributed.diagnostics.plugin.SchedulerPlugin用法及代碼示例
- 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用法及代碼示例
- Python distributed.Client.start_ipython_scheduler用法及代碼示例
注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 distributed.recreate_tasks.ReplayTaskClient.recreate_task_locally。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。