用法:
distributed.fire_and_forget(obj)
至少運行一次任務,即使我們釋放期貨
在正常操作下,Dask 不會運行任何沒有活動未來的任務(這避免了在許多情況下不必要的工作)。然而,有時你隻想啟動一項任務,而不是跟蹤它的未來,並期望它最終完成。即使沒有活動客戶端在跟蹤它,您也可以在未來或期貨集合上使用此函數來要求 Dask 完成任務。
任務完成後結果不會保存在內存中(除非有一個活躍的未來),所以這僅對依賴副作用的任務有用。
- obj:未來,列表,字典,dask 集合
你想運行至少一次的期貨
參數:
例子:
>>> fire_and_forget(client.submit(func, *args))
相關用法
- Python distributed.futures_of用法及代碼示例
- Python distributed.protocol.serialize.register_generic用法及代碼示例
- Python distributed.Client.gather用法及代碼示例
- Python distributed.recreate_tasks.ReplayTaskClient.recreate_task_locally用法及代碼示例
- Python distributed.diagnostics.plugin.SchedulerPlugin用法及代碼示例
- 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.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.fire_and_forget。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。