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
For containers with a fractional CPU limit between 1 and 2 cores,
the current implementation rounds down GOMAXPROCS to 1,
which means the container will never use more than 1s of CPU because it has a single active thread,
and the VPA won't scale it up because it still has resources available.
maxProcs := int(math.Ceil(quota))
The text was updated successfully, but these errors were encountered:
https://github.com/komuw/ong/blob/424f53c696d9f04b5451f11b8e916b096245a392/automax/automaxcpu.go#L63C14-L63C36
See: uber-go/automaxprocs#78
maxProcs := int(math.Ceil(quota))
The text was updated successfully, but these errors were encountered: