-
-
Notifications
You must be signed in to change notification settings - Fork 747
Dashboard: Fix Fine Perf. Metrics spilling crash #7878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dashboard: Fix Fine Perf. Metrics spilling crash #7878
Conversation
Unit Test ResultsSee test report for an extended history of previous test failures. This is useful for diagnosing flaky tests. 20 files ±0 20 suites ±0 11h 45m 3s ⏱️ + 16m 55s For more details on these failures, see this check. Results for commit d3f9b58. ± Comparison against base commit b52024b. ♻️ This comment has been updated with latest results. |
|
Better than before, but there's still a problem.
import dask.array as da
import distributed
client = distributed.Client(n_workers=4, threads_per_worker=1, memory_limit="2 GiB")
a = da.random.random((14_000, 14_000))
b = (a @ a.T).sum()
The error disappears after you reload the page in your browser. |
|
@crusaderky I really appreciate the feedback and examples of reproducing. I think this ought to be good for another look when time permits. |
|
@milesgranger now it hangs with 100% CPU usage... |
Closes #7875
pre-commit run --all-files