Loading page is x2 slower than chrome
Categories
(Core :: JavaScript: GC, defect, P2)
Tracking
()
Performance Impact | medium |
People
(Reporter: alice0775, Unassigned)
References
(Depends on 3 open bugs, )
Details
(Keywords: parity-chrome, perf, perf:pageload)
Attachments
(1 file)
15.62 KB,
text/plain
|
Details |
Reporter | ||
Comment 1•6 years ago
|
||
Reporter | ||
Comment 2•6 years ago
|
||
Comment 3•6 years ago
|
||
Updated•6 years ago
|
Comment 4•6 years ago
|
||
Reporter | ||
Comment 5•6 years ago
|
||
Comment 6•6 years ago
|
||
Updated•6 years ago
|
Reporter | ||
Comment 8•6 years ago
|
||
Reporter | ||
Comment 9•6 years ago
|
||
Comment 10•6 years ago
|
||
Comment 11•6 years ago
|
||
Comment 12•6 years ago
|
||
Reporter | ||
Comment 13•6 years ago
|
||
Comment 14•6 years ago
|
||
Comment 15•6 years ago
|
||
Reporter | ||
Comment 16•6 years ago
|
||
Comment 17•6 years ago
|
||
Comment 18•6 years ago
|
||
Comment 19•6 years ago
|
||
Comment 20•6 years ago
|
||
Updated•6 years ago
|
Updated•6 years ago
|
Updated•6 years ago
|
Comment 21•6 years ago
|
||
Comment 22•6 years ago
|
||
Comment 23•6 years ago
|
||
Comment 24•6 years ago
|
||
Reporter | ||
Comment 25•6 years ago
|
||
Comment 26•6 years ago
|
||
Comment 27•6 years ago
|
||
Comment 28•6 years ago
|
||
Comment 29•6 years ago
|
||
Comment 30•6 years ago
|
||
Comment 31•6 years ago
|
||
Comment 32•6 years ago
|
||
Comment 33•6 years ago
|
||
Comment 34•6 years ago
|
||
Updated•6 years ago
|
Comment 35•6 years ago
|
||
Reporter | ||
Comment 36•6 years ago
|
||
Comment 37•6 years ago
|
||
Comment 38•6 years ago
|
||
Updated•6 years ago
|
Comment 39•6 years ago
|
||
Updated•6 years ago
|
Comment 40•4 years ago
|
||
This is still a really bad problem. It's not 30s, but still takes around 10s+ while Chrome is around 4.
Comment 41•4 years ago
|
||
That profile is awful from a responsiveness perspective. It's allocating fast enough that the GC keeps going nonincremental to catch up.
It also has frequent long delays while it flushes the microtask queue.
For the GC stuff, it would probably be better to slow the mutator down and shift time towards the GC until it can keep up. But that's not going to help the 10s load, and might even make it worse.
It seems to do lots of FETCH_ITEMS
calls (within a promise callback), without ever yielding. There's a fair amount of, but not all that much, network stuff going on throughout the whole run.
Comment 42•4 years ago
|
||
Adding some metrics here for reference:
ContentfulSpeedIndex: Chrome: 2580.00 (+- 109) Firefox: 4388.33 (+- 190) , -70.09%
PageLoadTime: Chrome: 1942.33 (+- 259) Firefox: 3476.44 (+- 889) , -78.98%
Comment 43•4 years ago
|
||
Gonna move this to p2 since it's not a critical website and fixing this would probably require a large architectural change.
Updated•4 years ago
|
Updated•3 years ago
|
Updated•3 years ago
|
Updated•2 years ago
|
Comment 44•5 months ago
|
||
Unfortunately, the site is gone now, so closing as incomplete.
Description
•