-
-
Notifications
You must be signed in to change notification settings - Fork 719
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
performance report not rendering correctly on 2021.07.0 #5097
Comments
If you could upload your HTML files for |
Second Gabe on uploading the report that has issues to a Gist. Also could you please include your install environment ( |
yeah sorry for the sparse report ... here's I put the performance reports on s3:
|
@d-v-b Do you still have this problem on from dask.distributed import Client, performance_report
import dask.array as da
client= Client()
with performance_report(filename="test.html"):
x = da.random.random((10_000, 10_000), chunks=(1_000, 1_000))
result = (x + x.T).mean(axis=0).mean()
result.compute() |
Just checking in here, @d-v-b is this still an issue? Are you able to reproduce with the latest |
Yep, I think this is fixed! Closing. |
When I use the
performance_report
context manager ondistributed==2021.07.0
, Only the summary tab and the scheduler logs render correctly. Everything else (e.g., task stream, etc) fails to render. Performance reports render properly for me ondistributed==2021.06.0
.By way of illustration, here's what the task stream looks like on 2021.07.0:
The text was updated successfully, but these errors were encountered: