-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Open
Labels
NeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.compiler/runtimeIssues related to the Go compiler and/or runtime.Issues related to the Go compiler and/or runtime.help wanted
Milestone
Description
What version of Go are you using (go version)?
$ go version 1.12.2 gccgo
Does this issue reproduce with the latest release?
Not tested
What operating system and processor architecture are you using (go env)?
go env Output
$ go env GOARCH="amd64" GOBIN="" GOCACHE="/home/builder/.cache/go-build" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/builder/go" GOPROXY="" GORACE="" GOROOT="/usr" GOTMPDIR="" GOTOOLDIR="/usr/lib/gcc/x86_64-linux-gnu/9" GCCGO="/usr/bin/x86_64-linux-gnu-gccgo-9" CC="/opt/miniconda3/envs/builder/bin/x86_64-conda-linux-gnu-cc" CXX="/opt/miniconda3/envs/builder/bin/x86_64-conda-linux-gnu-c++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build646202173=/tmp/go-build -gno-record-gcc-switches -funwind-tables"
What did you do?
- Clone five independent packages
- Compile each with say 2 threads
- Observer number of threads
- It goes down from 10 (max possible) to 5 (minimum)
What did you expect to see?
- Using a single workstation as CI server allows orchestration of concurrency during compilation of multiple independent packages
- Compiling go with other languages plays well in regards to optimal utilization of CPU cores
What did you see instead?
- Controlling max threads in a single go compile process is possible
- Sharing of threads between independent go compile process is not possible
- Ensuring that 5 or so independent compile processes are keeping 8 CPU's fully stocked is not feasible.
Possible solution
Implement support for GNU make jobserver for compilation. This doesn't have to be exposed for 80-90% of users whose primary use-case doesn't involve parallel independent compilation of go packages.
Bonus: Both compilation and testing can benefit from this
Pro:
- Works with make, ninja-cmake and other related build and meta build systems
- Works cross-platform on systems with sockets (all modern systems targeted by go as compilation platforms based on expectation of pulling dependencies automatically)
- Parity with compilation process of compilers like C/C++ (clang, gcc), rust (cargo)
- Allows power users to perform quick context switches during compilation and testing
- Allows people working on polyglot code bases a significant boost (a lot of tech stacks are not pure go)
Con:
- jobserver has drawbacks (the pipe could have been closed, env variables need to be passed into sub-shells (not a concern here, but often a source of errors))
- more complicated process for spawning sub-processes
- maybe low utilization in go community
twz123
Metadata
Metadata
Assignees
Labels
NeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.compiler/runtimeIssues related to the Go compiler and/or runtime.Issues related to the Go compiler and/or runtime.help wanted