Closed
Bug 1683894
Opened 5 years ago
Closed 5 years ago
Large increase in nursery collections on 2020-12-16
Categories
(Core :: JavaScript: GC, defect, P1)
Core
JavaScript: GC
Tracking
()
RESOLVED
FIXED
86 Branch
Tracking | Status | |
---|---|---|
firefox-esr78 | --- | unaffected |
firefox84 | --- | unaffected |
firefox85 | --- | unaffected |
firefox86 | --- | fixed |
People
(Reporter: jonco, Assigned: jonco)
References
(Regression)
Details
(Keywords: regression)
Attachments
(1 file)
There was a large spike in the number of nursery collections performed on the 16th December:
This is most likely a result of landing bug 1677765.
Assignee | ||
Comment 1•5 years ago
|
||
The problem here is that when we're unmarking on a background thread there's
nothing for the main thread GC to do, but the browser GC scheduling doesn't
know this and will happily trigger GC slices based on its timer / idle time.
This has the unfortunate effect that these repeated nursery collection will
shrink the nursery down to its minimum size pretty quickly.
Pushed by jcoppeard@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/ed0b7d9cd487
Don't trigger GC slices while waiting for unmarking to finish r=sfink
Comment 3•5 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 5 years ago
status-firefox86:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 86 Branch
Comment 4•5 years ago
|
||
Set release status flags based on info from the regressing bug 1677765
status-firefox84:
--- → unaffected
status-firefox85:
--- → unaffected
status-firefox-esr78:
--- → unaffected
Updated•5 years ago
|
Keywords: regression
Updated•5 years ago
|
Has Regression Range: --- → yes
You need to log in
before you can comment on or make changes to this bug.
Description
•