datacube.utils.dask.pmap#
- datacube.utils.dask.pmap(func, its, client, lump=1, max_in_flight=3, name='compute')[source]#
Parallel map with back pressure.
Equivalent to this:
(func(x) for x in its)
Except that
func(x)
runs concurrently on dask cluster.