mirror of
https://github.com/coreos/prometheus-operator.git
synced 2026-02-05 06:45:27 +01:00
* add auto GOMEMLIMIT Signed-off-by: dongjiang1989 <dongjiang1989@126.com> --------- Signed-off-by: dongjiang1989 <dongjiang1989@126.com> Co-authored-by: Simon Pasquier <spasquie@redhat.com>
51 lines
1.4 KiB
Go
51 lines
1.4 KiB
Go
// Copyright 2024 The prometheus-operator Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package goruntime
|
|
|
|
import (
|
|
"runtime/debug"
|
|
|
|
"github.com/KimMachineGun/automemlimit/memlimit"
|
|
"github.com/go-kit/log"
|
|
"github.com/go-kit/log/level"
|
|
)
|
|
|
|
func SetMemLimit(logger log.Logger, memlimitRatio float64) {
|
|
if memlimitRatio >= 1.0 {
|
|
memlimitRatio = 1.0
|
|
} else if memlimitRatio <= 0.0 {
|
|
memlimitRatio = 0.0
|
|
}
|
|
|
|
// the memlimitRatio argument to 0, effectively disabling auto memory limit for all users.
|
|
if memlimitRatio == 0.0 {
|
|
return
|
|
}
|
|
|
|
if _, err := memlimit.SetGoMemLimitWithOpts(
|
|
memlimit.WithRatio(memlimitRatio),
|
|
memlimit.WithProvider(
|
|
memlimit.ApplyFallback(
|
|
memlimit.FromCgroup,
|
|
memlimit.FromSystem,
|
|
),
|
|
),
|
|
); err != nil {
|
|
level.Warn(logger).Log("component", "automemlimit", "msg", "Failed to set GOMEMLIMIT automatically", "err", err)
|
|
}
|
|
|
|
level.Info(logger).Log("GOMEMLIMIT set to %d", debug.SetMemoryLimit(-1))
|
|
}
|