mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 07:11:08 +00:00
aa559bf496
Go is not cgroup aware and by default will set GOMAXPROCS to the number of available threads, regardless of whether it is within the allocated quota. This behaviour causes high amount of CPU throttling and degraded application performance.
34 lines
772 B
Go
34 lines
772 B
Go
// Copyright (C) 2023 The Syncthing Authors.
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/alecthomas/kong"
|
|
"github.com/syncthing/syncthing/cmd/ursrv/aggregate"
|
|
"github.com/syncthing/syncthing/cmd/ursrv/serve"
|
|
_ "go.uber.org/automaxprocs"
|
|
)
|
|
|
|
type CLI struct {
|
|
Serve serve.CLI `cmd:"" default:""`
|
|
Aggregate aggregate.CLI `cmd:""`
|
|
}
|
|
|
|
func main() {
|
|
log.SetFlags(log.Ltime | log.Ldate | log.Lshortfile)
|
|
log.SetOutput(os.Stdout)
|
|
|
|
var cli CLI
|
|
ctx := kong.Parse(&cli)
|
|
if err := ctx.Run(); err != nil {
|
|
log.Fatalf("%s: %v", ctx.Command(), err)
|
|
}
|
|
}
|