diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 3d352f20..5447167e 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -271,6 +271,8 @@ For release specific notes visit the [ClusterCockpit Documentation](https://clus ## Known issues +- The new dynamic memory management is not bullet proof yet across restarts. We + will fix that in a subsequent patch release - Currently energy footprint metrics of type energy are ignored for calculating total energy. - With energy footprint metrics of type power the unit is ignored and it is diff --git a/cmd/cc-backend/main.go b/cmd/cc-backend/main.go index 5b51b963..57c8d65b 100644 --- a/cmd/cc-backend/main.go +++ b/cmd/cc-backend/main.go @@ -395,6 +395,7 @@ func runServer(ctx context.Context) error { // Set GC percent if not configured if os.Getenv(envGOGC) == "" { + // trigger GC when heap grows 15% above the previous live set debug.SetGCPercent(15) } runtime.SystemdNotify(true, "running")