I am new to DASK.
I can submit 10 tasks using the client.map(funct_name, iterator) where the iterator is a list which contain the 10 elements.
Now, I want to submit the next task let's say 11th task when anyone from earlier submitted 10 tasks is completed.
I know there is something called process pooling in python. But I want to implement something like process pooling using DASK.
Someone please guide me with DASK process pooling.