用法:
distributed.get_client(address=None, timeout=None, resolve_address=True) → Client
在任務中獲取客戶。
此客戶端連接到與工作人員連接的同一調度程序
- address:str,可選
要連接的調度程序的地址。默認為工作人員連接到的調度程序。
- timeout:整數或字符串
獲取客戶端的超時(以秒為單位)。默認為
distributed.comm.timeouts.connect
配置值。- resolve_address:布爾值,默認為真
是否將
address
解析為其規範形式。
- 客戶
參數:
返回:
例子:
>>> def f(): ... client = get_client(timeout="10s") ... futures = client.map(lambda x: x + 1, range(10)) # spawn many tasks ... results = client.gather(futures) ... return sum(results)
>>> future = client.submit(f) >>> future.result() 55
相關用法
- Python distributed.get_worker用法及代碼示例
- Python distributed.get_task_stream用法及代碼示例
- Python distributed.get_task_metadata用法及代碼示例
- 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.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.SpecCluster.scale_up用法及代碼示例
- Python distributed.Client.nthreads用法及代碼示例
- Python distributed.comm.resolve_address用法及代碼示例
- Python distributed.Client.unpublish_dataset用法及代碼示例
注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 distributed.get_client。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。