Reputation: 141
Using dask 0.15.0, distributed 1.17.1.
I want to memoize some things per worker, like a client to access google cloud storage, because instantiating it is expensive. I'd rather store this in some kind of worker attribute. What is the canonical way to do this? Or are globals the way to go?
Upvotes: 10
Views: 1562
Reputation: 6297
Dask Actors
For simpler use cases, other solutions may be preferable; however, its worth considering Actors. Actors are currently an experimental feature in Dask which enables stateful computations.
Upvotes: 1
Reputation: 57311
You can get access to the local worker with the get_worker function. A slightly cleaner thing than globals would be to attach state to the worker:
from dask.distributed import get_worker
def my_function(...):
worker = get_worker()
worker.my_personal_state = ...
future = client.submit(my_function, ...)
We should probably add a generic namespace variable on workers to serve as a general place for information like this, but haven't yet.
That being said though, for things like connections to external services globals aren't entirely evil. Many systems like Tornado use global singletons.
Note that workers are often multi-threaded. If your connection object isn't threadsafe then you may need to cache a different object per-thread. For this I recommend using a threading.local
object. Dask uses one at
from distributed.worker import thread_state
Upvotes: 9