MCPcopy Create free account
hub / github.com/BWbwchen/MapReduce / StartSingleMachineJob

Function StartSingleMachineJob

singleMachine.go:10–15  ·  view source on GitHub ↗
(input []string, plugin string, nReducer int, nWorker int, inRAM bool)

Source from the content-addressed store, hash-verified

8var MasterIP string = ":10000"
9
10func StartSingleMachineJob(input []string, plugin string, nReducer int, nWorker int, inRAM bool) {
11 if len(input) == 0 {
12 os.Exit(0)
13 }
14 singleMachineJob(input, nWorker, nReducer, plugin, inRAM)
15}
16
17func singleMachineJob(input []string, nWorker int, nReducer int, plugin string, storeInRAM bool) {
18 var wg sync.WaitGroup

Callers

nothing calls this directly

Calls 1

singleMachineJobFunction · 0.85

Tested by

no test coverage detected