Say if I've about 20 CPUs from different nodes, can I use all of them while building?
Ask HN: CPU Sharing in a Cluster
1–6 of 6 posts
Is there a way to share system resources like running `make` across clusters?
Re: Ask HN: CPU Sharing in a Cluster
#2blows dust off tome
A classic quandary: https://en.wikipedia.org/wiki/Distcc
Re: Ask HN: CPU Sharing in a Cluster
#3blows dust off tome A classic quandary: https://en.wikipedia.org/wiki/Distcc
Interesting. I'll look into that. Just wondering if it's possible for different programming languages like Zig, Go and on?
Re: Ask HN: CPU Sharing in a Cluster
#4I've never done it, but bazel came to mind https://bazel.build/basics/distributed-builds
Re: Ask HN: CPU Sharing in a Cluster
#5blows dust off tome A classic quandary: https://en.wikipedia.org/wiki/Distcc
Interesting. I'll look into that. Just wondering if it's possible for different programming languages like Zig, Go and on?
For go you would need to change the compiler by a lot.
rust may be an option, but the projects i have build had often bottlenecks where one thing in the chain took a long time.
Re: Ask HN: CPU Sharing in a Cluster
#6Earlier quoted context omitted.
Interesting. I'll look into that. Just wondering if it's possible for different programming languages like Zig, Go and on?
For go you would need to change the compiler by a lot. rust may be an option, but the projects i have build had often bottlenecks where one thing in the chain took a long time.
May be we can step up and look into the way to distributing the process instead of handling it via the language specific compilers?