当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python distributed.secede用法及代码示例


用法:

distributed.secede()

让这个任务脱离工作线程池

这为新任务打开了一个新的调度槽和一个新线程。这使客户端能够在此节点上安排任务,这在等待其他作业完成时特别有用(例如,使用 client.gather )。

例子

>>> def mytask(x):
...     # do some work
...     client = get_client()
...     futures = client.map(...)  # do some remote work
...     secede()  # while that work happens, remove ourself from the pool
...     return client.gather(futures)  # return gathered results

相关用法


注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.secede。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。