It seems Java/Scala/C++ is taking all the funs of distributed computing, with Hadoop, Spark, Storm, Meso, YARN, Kafka, Zookeeper, etc.
Glow is trying to do it via Go, and make distributed computing simple for Go.
Here is how to setup the glow cluster:
// fetch and install via go, or just download it from somewhere
go get github.com/chrislusf/glow
// start a master on one computer
glow master
// run one or more agents on computers
glow agent --dir . --max.executors=16 --memory=2048 --master="localhost:8930" --port 8931
And to run the code in distributed mode, just run it via
hello_world -glow
This should be simple enough to make your Go code run across the cluster.
Chris