Skip to content

Instantly share code, notes, and snippets.

@ijingo
Created November 19, 2016 09:44
Show Gist options
  • Save ijingo/159e200af937f60b975b7dbb060902bf to your computer and use it in GitHub Desktop.
Save ijingo/159e200af937f60b975b7dbb060902bf to your computer and use it in GitHub Desktop.
type Master struct {
sync.Mutex
address string
registerChannel chan string
doneChannel chan bool
workers []string // protected by the mutex
// per-task info
jobName string
files []string
nReduce int
shutdown chan struct{}
l net.Listener
stats []int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment