I need to submit the elements of a very large dask.bag
to a non-threadsafe store, ie I need something like
for x in dbag:
store.add(x)
I can not use compute
since the bag is to large to fit in memory.
I need something more like distributed.as_completed
but that works on bags, which distributed.as_completed
does not.