Actors and dask-workers

眉间皱痕 提交于 2021-02-09 08:29:41

问题


client = Client('127.0.0.1:8786',direct_to_workers=True)
future1 = client.submit(Counter, workers= 'ninja',actor=True)   
counter1 = future1.result()                    
print(counter1)

All is well but what if the client gets restarted? How do I get the actor back from the worker called ninja?


回答1:


There is no user-facing way to do this as of 2019-03-06

I recommend raising a feature request issue



来源:https://stackoverflow.com/questions/54918699/actors-and-dask-workers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!