Hello people,
I have a question about what changed between Dask 2024.7 uintil 2025.7.
I have an app which was dpeloyed in Kubernetes using Dask distributed version 2024.7. Everything was fine and working nicely. A client makes a request; in the app a Dask Client is created, connecting to the scheduler, and work is being done. Important to say that it was working in a parallel manner. I have Gunicorn workers, which are serving parallel requests. Now with the upgrade to 2025.7 (dask changing to Expressions as backend), suddenly all these parallel computations are not working. It seems that Dask is hanging. Executing requests sequentially is not a problem, but as soon as many requests get in, at some point it starts hanging and leads to timeout.It seems a bit slow. For example if i make a parallel requests, i will get Dask lost dependency error or just in the middle of the work it hangs and not finishes,
I would appreciate your help!