You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Isn't this sizing excessive if we bound it by number of possible PIDs? For example,
if we set off-cpu-threshold to 1000, we'll end up with a map that takes up roughly 4194304*16 = 64MB since we pre-allocate.
Generated off-cpu events are bounded by cores and scheduler call frequency, so for example
we could size this map as: next_pow2(cores*1000*pollInterval) using 1000Hz as an upper
bound estimate of scheduler call frequency which should consume far less memory.
The text was updated successfully, but these errors were encountered:
Summary
This has been raised at #316 (comment)
The text was updated successfully, but these errors were encountered: