2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-09-20 11:05:58 +08:00
asynq/processor.go

115 lines
2.8 KiB
Go
Raw Normal View History

2019-11-19 22:48:54 +08:00
package asynq
import (
"fmt"
"log"
"time"
)
2019-11-21 12:08:03 +08:00
type processor struct {
2019-11-20 11:44:41 +08:00
rdb *rdb
2019-11-19 22:48:54 +08:00
handler TaskHandler
// sema is a counting semaphore to ensure the number of active workers
// does not exceed the limit
sema chan struct{}
2019-11-21 12:08:03 +08:00
// channel to communicate back to the long running "processor" goroutine.
2019-11-19 22:48:54 +08:00
done chan struct{}
}
2019-11-21 12:08:03 +08:00
func newProcessor(rdb *rdb, numWorkers int, handler TaskHandler) *processor {
return &processor{
2019-11-19 22:48:54 +08:00
rdb: rdb,
handler: handler,
sema: make(chan struct{}, numWorkers),
done: make(chan struct{}),
}
}
2019-11-21 12:08:03 +08:00
func (p *processor) terminate() {
2019-11-22 12:22:55 +08:00
// Signal the processor goroutine to stop processing tasks from the queue.
2019-11-21 12:08:03 +08:00
p.done <- struct{}{}
fmt.Println("--- Waiting for all workers to finish ---")
2019-11-21 12:08:03 +08:00
for i := 0; i < cap(p.sema); i++ {
// block until all workers have released the token
2019-11-21 12:08:03 +08:00
p.sema <- struct{}{}
}
fmt.Println("--- All workers have finished! ----")
2019-11-19 22:48:54 +08:00
}
2019-11-21 12:08:03 +08:00
func (p *processor) start() {
2019-11-19 22:48:54 +08:00
go func() {
for {
select {
2019-11-21 12:08:03 +08:00
case <-p.done:
fmt.Println("-------------[Processor]---------------")
fmt.Println("Processor shutting down...")
fmt.Println("-------------------------------------")
return
2019-11-19 22:48:54 +08:00
default:
2019-11-21 12:08:03 +08:00
p.exec()
2019-11-19 22:48:54 +08:00
}
}
}()
}
2019-11-22 13:45:27 +08:00
// exec pulls a task out of the queue and starts a worker goroutine to
// process the task.
2019-11-21 12:08:03 +08:00
func (p *processor) exec() {
2019-11-22 13:45:27 +08:00
// NOTE: BLPOP needs to timeout to avoid blocking forever
// in case of a program shutdown or additon of a new queue.
2019-11-22 12:22:55 +08:00
const timeout = 5 * time.Second
2019-11-19 22:48:54 +08:00
// TODO(hibiken): sort the list of queues in order of priority
2019-11-22 13:45:27 +08:00
msg, err := p.rdb.dequeue(timeout, p.rdb.listQueues()...)
2019-11-19 22:48:54 +08:00
if err != nil {
2019-11-20 11:44:41 +08:00
switch err {
case errQueuePopTimeout:
// timed out, this is a normal behavior.
return
case errDeserializeTask:
log.Println("[Servere Error] could not parse json encoded message")
return
default:
log.Printf("[Servere Error] unexpected error while pulling message out of queues: %v\n", err)
return
2019-11-19 22:48:54 +08:00
}
}
task := &Task{Type: msg.Type, Payload: msg.Payload}
2019-11-21 12:08:03 +08:00
p.sema <- struct{}{} // acquire token
2019-11-19 22:48:54 +08:00
go func(task *Task) {
quit := make(chan struct{}) // channel to signal heartbeat goroutine
2019-11-22 13:45:27 +08:00
defer func() {
quit <- struct{}{}
2019-11-22 13:45:27 +08:00
if err := p.rdb.srem(inProgress, msg); err != nil {
log.Printf("[SERVER ERROR] SREM failed: %v\n", err)
}
if err := p.rdb.clearHeartbeat(msg.ID); err != nil {
log.Printf("[SERVER ERROR] DEL heartbeat failed: %v\n", err)
}
2019-11-22 13:45:27 +08:00
<-p.sema // release token
}()
// start "heartbeat" goroutine
go func() {
ticker := time.NewTicker(5 * time.Second)
for {
select {
case <-quit:
return
case t := <-ticker.C:
if err := p.rdb.heartbeat(msg.ID, t); err != nil {
log.Printf("[ERROR] heartbeat failed for %v at %v: %v", msg.ID, t, err)
}
}
}
}()
err := p.handler(task) // TODO(hibiken): maybe also handle panic?
2019-11-19 22:48:54 +08:00
if err != nil {
retryTask(p.rdb, msg, err)
2019-11-19 22:48:54 +08:00
}
}(task)
2019-11-19 22:48:54 +08:00
}