Bug #20424
closedProcess view page slowdown when inputs panel is ON and workflow with several thousands inputs
Description
Customer reported having significant slowdown on the process view page when trying to see a process that has ~4300 inputs. When closing the inputs panel & clicking on the reload button, the page renders a lot quicker.
Files
Related issues
Updated by Peter Amstutz over 1 year ago
Oh, that's quite a lot. It should handle it better.
I did notice when I was reusing the component for the registered workflow panel that it didn't seem to be using React "key" in the list components to reduce re-renders, I thought I added it, but maybe only in one place.
Updated by Lucas Di Pentima over 1 year ago
- File deleted (
many inputs slowdown.mp4)
Updated by Peter Amstutz over 1 year ago
- Target version changed from Development 2023-04-26 sprint to Development 2023-05-10 sprint
Updated by Lucas Di Pentima over 1 year ago
- File lots-of-inputs.json lots-of-inputs.json added
Added an example of CR with lots of inputs.
Updated by Stephen Smith over 1 year ago
- Status changed from New to In Progress
Changes at arvados-workbench2|3e18e35172808479d02e02985563d658fec7bb0f branch 20424-io-panel-performance
- Memoized the process io preview component, reduces re-renders from ~140 to 6
- Rewrote file array processing code to use a single loop, cuts processing time in half (~5s to ~2s) * The remaining performance impact here seems to be solely due to having to run checks on all 4000 entries, each execution is <1ms
The remaining performance issues seem to stem mostly from the rendering code on process-io-card.tsx L400 and having to render 4000 entries. I'm not sure how to further optimize that part
Updated by Lucas Di Pentima over 1 year ago
If the issue is rendering so many elements, we have solved that in the past by using <FixedSizeList>
and <AutoSizer>
to implement virtualized lists that only render the elements that are on the current viewport.
Would that help?
Updated by Peter Amstutz over 1 year ago
- Target version changed from Development 2023-05-10 sprint to Development 2023-05-24 sprint
Updated by Peter Amstutz over 1 year ago
- File lots-of-inputs.json lots-of-inputs.json added
(attached a version of lots-of-inputs that you can load with arv container_request create -o lots-of-inputs.json
)
Stephen Smith wrote in #note-9:
Changes at arvados-workbench2|3e18e35172808479d02e02985563d658fec7bb0f branch 20424-io-panel-performance
- Memoized the process io preview component, reduces re-renders from ~140 to 6
- Rewrote file array processing code to use a single loop, cuts processing time in half (~5s to ~2s)
- The remaining performance impact here seems to be solely due to having to run checks on all 4000 entries, each execution is <1ms
The remaining performance issues seem to stem mostly from the rendering code on process-io-card.tsx L400 and having to render 4000 entries. I'm not sure how to further optimize that part
I compared main with this branch and it is a huge improvement. In the main branch, the browser basically hangs for tens of seconds. It's unusable.
With this branch, the browser still stutters, but it's only for about 5 or 6 seconds. So while it's not ideal, it's on the outer end of tolerable. Lucas is correct that using a virtualized list to limit rendering to just the visible portion would be even more performant, but it would take more time to implement, and we have other bugs and performance issues to deal with.
This LGTM.
Updated by Stephen Smith over 1 year ago
- Status changed from In Progress to Resolved
Updated by Peter Amstutz 9 months ago
- Related to Bug #21525: Process view unusable on running containers that are too verbose added
Updated by Peter Amstutz 9 months ago
- Related to deleted (Bug #21525: Process view unusable on running containers that are too verbose)
Updated by Peter Amstutz 9 months ago
- Related to Bug #21508: Browser struggles with very large number of input or output parameters added