forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dispatcher.go
101 lines (89 loc) · 2.72 KB
/
dispatcher.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
* Copyright (c) 2018. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
package tasks
import (
"github.com/pydio/cells/common/service/metrics"
)
const (
// DefaultMaximumWorkers is set to 20.
DefaultMaximumWorkers = 20
)
// Dispatcher orchestrates the jobs by dispatching work to available workers.
type Dispatcher struct {
// A pool of workers channels that are registered with the dispatcher
JobQueue chan Runnable
WorkerPool chan chan Runnable
maxWorker int
tags map[string]string
active int
activeChan chan int
quit chan bool
}
// NewDispatcher creates and initialises a new Dispatcher with this amount of workers.
func NewDispatcher(maxWorkers int, tags map[string]string) *Dispatcher {
pool := make(chan chan Runnable, maxWorkers)
jobQueue := make(chan Runnable)
return &Dispatcher{
WorkerPool: pool,
maxWorker: maxWorkers,
JobQueue: jobQueue,
tags: tags,
activeChan: make(chan int),
quit: make(chan bool, 1),
}
}
// Run simply starts the N workers of this dispacher.
func (d *Dispatcher) Run() {
// starting n number of workers
var workers []Worker
for i := 0; i < d.maxWorker; i++ {
worker := NewWorker(d.WorkerPool, d.JobQueue, d.activeChan, d.tags)
worker.Start()
workers = append(workers, worker)
}
g := metrics.GetMetrics().Tagged(d.tags).Gauge("activeWorkers")
go func() {
for {
select {
case a := <-d.activeChan:
d.active += a
g.Update(float64(d.active))
case jobImpl := <-d.JobQueue:
// a jobs request has been received
go func(job Runnable) {
// try to obtain a worker job channel that is available.
// this will block until a worker is idle
jobChannel := <-d.WorkerPool
// dispatch the job to the worker job channel
jobChannel <- job
}(jobImpl)
case <-d.quit:
for _, worker := range workers {
worker.Stop()
}
return
}
}
}()
}
// Stop sends a quit signal to all workers and the main dispatcher
func (d *Dispatcher) Stop() {
d.quit <- true
}