用法:
retire_workers(workers: list[str] | None = None, close_workers: bool = True, **kwargs)
退休調度程序上的某些工作人員
有關完整的文檔字符串,請參閱
distributed.Scheduler.retire_workers()
。- workers:
- close_workers:
- **kwargs:dict
遠程函數的可選關鍵字參數
參數:
例子:
您可以使用以下方式獲取有關在職工作人員的信息:
>>> workers = client.scheduler_info()['workers']
從該列表中,您可能想要選擇一些要關閉的工人
>>> client.retire_workers(workers=['tcp://address:port', ...])
相關用法
- Python distributed.Client.register_worker_plugin用法及代碼示例
- Python distributed.Client.replicate用法及代碼示例
- Python distributed.Client.run用法及代碼示例
- Python distributed.Client.run_on_scheduler用法及代碼示例
- Python distributed.Client.gather用法及代碼示例
- Python distributed.Client.ncores用法及代碼示例
- 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.Client.nthreads用法及代碼示例
- Python distributed.Client.unpublish_dataset用法及代碼示例
- Python distributed.Client.start_ipython_scheduler用法及代碼示例
- Python distributed.Client.get用法及代碼示例
- Python distributed.Client.publish_dataset用法及代碼示例
- Python distributed.Client.who_has用法及代碼示例
- Python distributed.Client.get_versions用法及代碼示例
- Python distributed.Client.profile用法及代碼示例
- Python distributed.Client.map用法及代碼示例
注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 distributed.Client.retire_workers。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。