用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。