Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrislusf/glow
Glow is an easy-to-use distributed computation system written in Go, similar to Hadoop Map Reduce, Spark, Flink, Storm, etc. I am also working on another similar pure Go system, https://github.com/chrislusf/gleam , which is more flexible and more performant.
https://github.com/chrislusf/glow
Last synced: 9 days ago
JSON representation
Glow is an easy-to-use distributed computation system written in Go, similar to Hadoop Map Reduce, Spark, Flink, Storm, etc. I am also working on another similar pure Go system, https://github.com/chrislusf/gleam , which is more flexible and more performant.
- Host: GitHub
- URL: https://github.com/chrislusf/glow
- Owner: chrislusf
- Created: 2015-06-14T00:33:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-02T06:09:14.000Z (about 6 years ago)
- Last Synced: 2024-10-14T20:52:54.498Z (25 days ago)
- Language: Go
- Homepage:
- Size: 34 MB
- Stars: 3,201
- Watchers: 145
- Forks: 247
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE-Apache 2.0.txt
Awesome Lists containing this project
- awesome-go - glow - Easy-to-Use scalable distributed big data processing, Map-Reduce, DAG execution, all in pure Go. (Distributed Systems / Search and Analytic Databases)
- my-awesome - chrislusf/glow - 11 star:3.2k fork:0.2k Glow is an easy-to-use distributed computation system written in Go, similar to Hadoop Map Reduce, Spark, Flink, Storm, etc. I am also working on another similar pure Go system, https://github.com/chrislusf/gleam , which is more flexible and more performant. (Go)
- go-awesome - glow - An easy-to-use distributed computing system (Open source library / Machine Learning)
- awesome-go - glow - Easy-to-Use scalable distributed big data processing, Map-Reduce, DAG execution, all in pure Go. Stars:`3.2K`. (Distributed Systems / Search and Analytic Databases)
- awesome-go - glow - Glow is an easy-to-use distributed computation system written in Go, similar to Hadoop Map Reduce, Spark, Flink, Storm, etc. I am also working on another similar pure Go system, , which is more flexible and more performant. - ★ 2225 (Distributed Systems)
- awesome-go-extra - glow - to-use distributed computation system written in Go, similar to Hadoop Map Reduce, Spark, Flink, Storm, etc. I am also working on another similar pure Go system, https://github.com/chrislusf/gleam , which is more flexible and more performant.|3083|242|13|2015-06-14T00:33:48Z|2018-11-02T06:09:14Z| (Distributed Systems / Advanced Console UIs)
README
# glow
[![Build Status](https://travis-ci.org/chrislusf/glow.svg?branch=master)](https://travis-ci.org/chrislusf/glow)
[![GoDoc](https://godoc.org/github.com/chrislusf/glow?status.svg)](https://godoc.org/github.com/chrislusf/glow)# Purpose
Glow is providing a library to easily compute in parallel threads or distributed to clusters of machines. This is written in pure Go.
I am also working on another pure-Go system, https://github.com/chrislusf/gleam , which is more flexible and more performant.
# Installation
```
$ go get github.com/chrislusf/glow
$ go get github.com/chrislusf/glow/flow
```# One minute tutorial
## Simple Start
Here is a simple full example:
```go
package mainimport (
"flag"
"strings""github.com/chrislusf/glow/flow"
)func main() {
flag.Parse()flow.New().TextFile(
"/etc/passwd", 3,
).Filter(func(line string) bool {
return !strings.HasPrefix(line, "#")
}).Map(func(line string, ch chan string) {
for _, token := range strings.Split(line, ":") {
ch <- token
}
}).Map(func(key string) int {
return 1
}).Reduce(func(x int, y int) int {
return x + y
}).Map(func(x int) {
println("count:", x)
}).Run()
}```
Try it.
```
$ ./word_count
```It will run the input text file, '/etc/passwd', in 3 go routines, filter/map/map, and then reduced to one number in one goroutine (not exactly one goroutine, but let's skip the details for now.) and print it out.
This is useful already, saving lots of idiomatic but repetitive code on channels, sync wait, etc, to fully utilize more CPU cores.
However, there is one more thing! It can run across a Glow cluster, which can be run multiple servers/racks/data centers!
## Scale it out
To setup the Glow cluster, we do not need experts on Zookeeper/HDFS/Mesos/YARN etc. Just build or download one binary file.### Setup the cluster
```shell
# Fetch and install via go, or just download it from somewhere.
$ go get github.com/chrislusf/glow
# Run a script from the root directory of the repo to start a test cluster.
$ etc/start_local_glow_cluster.sh
```
Glow Master and Glow Agent run very efficiently. They take about 6.5MB and 5.5MB memory respectively in my environments. I would recommend set up agents on any server you can find. You can tap into the computing power whenever you need to.### Start the driver program
To leap from one computer to clusters of computers, add this line to the import list:```go
_ "github.com/chrislusf/glow/driver"
```And put this line as the first statement in the main() function:
```go
flag.Parse()
```This will "steroidize" the code to run in cluster mode!
```
$ ./word_count -glow -glow.leader="localhost:8930"
```
The word_count program will become a driver program, dividing the execution into a directed acyclic graph(DAG), and send tasks to agents.### Visualize the flow
To understand how each executor works, you can visualize the flow by generating a dot file of the flow, and render it to png file via "dot" command provided from graphviz.
```
$ ./word_count -glow -glow.flow.plot > x.dot
$ dot -Tpng -otestSelfJoin.png x.dot
```![Glow Hello World Execution Plan](https://raw.githubusercontent.com/chrislusf/glow/master/etc/helloworld.png)
# Read More
1. Wiki page: https://github.com/chrislusf/glow/wiki
2. Mailing list: https://groups.google.com/forum/#!forum/glow-user-discussion
3. Examples: https://github.com/chrislusf/glow/tree/master/examples/## Docker container
Docker is not required. But if you like docker, here are instructions.```
# Cross compile artefact for docker
$ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build .
# build container
$ docker build -t glow .
```
See `examples/` directory for docker-compose setups.# Contribution
Start using it! And report or fix any issue you have seen, add any feature you want.Fork it, code it, and send pull requests. Better first discuss about the feature you want on the mailing list.
https://groups.google.com/forum/#!forum/glow-user-discussion# License
http://www.apache.org/licenses/LICENSE-2.0