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

121 lines
3.2 KiB
Go
Raw Normal View History

2019-11-19 22:48:54 +08:00
package asynq
import (
"fmt"
"log"
"time"
2019-12-04 13:01:26 +08:00
"github.com/hibiken/asynq/internal/rdb"
2019-11-19 22:48:54 +08:00
)
2019-11-21 12:08:03 +08:00
type processor struct {
2019-12-04 13:01:26 +08:00
rdb *rdb.RDB
2019-11-19 22:48:54 +08:00
handler Handler
2019-11-19 22:48:54 +08:00
2019-11-30 04:48:54 +08:00
// timeout for blocking dequeue operation.
// dequeue needs to timeout to avoid blocking forever
// in case of a program shutdown or additon of a new queue.
dequeueTimeout time.Duration
2019-11-19 22:48:54 +08:00
// sema is a counting semaphore to ensure the number of active workers
2019-11-30 04:48:54 +08:00
// does not exceed the limit.
2019-11-19 22:48:54 +08:00
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-12-04 13:01:26 +08:00
func newProcessor(r *rdb.RDB, numWorkers int, handler Handler) *processor {
2019-11-21 12:08:03 +08:00
return &processor{
2019-12-04 13:01:26 +08:00
rdb: r,
2019-11-30 04:48:54 +08:00
handler: handler,
dequeueTimeout: 5 * time.Second,
sema: make(chan struct{}, numWorkers),
done: make(chan struct{}),
2019-11-19 22:48:54 +08:00
}
}
2019-11-30 04:48:54 +08:00
// NOTE: once terminated, processor cannot be re-started.
2019-11-21 12:08:03 +08:00
func (p *processor) terminate() {
log.Println("[INFO] Processor shutting down...")
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{}{}
log.Println("[INFO] Waiting for all workers to finish...")
2019-11-28 11:36:56 +08:00
// block until all workers have released the token
2019-11-21 12:08:03 +08:00
for i := 0; i < cap(p.sema); i++ {
p.sema <- struct{}{}
}
log.Println("[INFO] All workers have finished.")
2019-11-19 22:48:54 +08:00
}
2019-11-21 12:08:03 +08:00
func (p *processor) start() {
// NOTE: The call to "restore" needs to complete before starting
// the processor goroutine.
p.restore()
2019-11-19 22:48:54 +08:00
go func() {
for {
select {
2019-11-21 12:08:03 +08:00
case <-p.done:
log.Println("[INFO] Processor done.")
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-12-04 13:01:26 +08:00
msg, err := p.rdb.Dequeue(rdb.DefaultQueue, p.dequeueTimeout)
if err == rdb.ErrDequeueTimeout {
2019-11-28 11:36:56 +08:00
// timed out, this is a normal behavior.
return
}
2019-11-19 22:48:54 +08:00
if err != nil {
2019-11-28 11:36:56 +08:00
log.Printf("[ERROR] unexpected error while pulling a task out of queue: %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) {
// NOTE: This deferred anonymous function needs to take taskMessage as a value because
// the message can be mutated by the time this function is called.
2019-12-04 13:01:26 +08:00
defer func(msg rdb.TaskMessage) {
if err := p.rdb.Remove(rdb.InProgress, &msg); err != nil {
log.Printf("[ERROR] could not remove %+v from %q: %v\n", msg, rdb.InProgress, err)
2019-11-22 13:45:27 +08:00
}
<-p.sema // release token
}(*msg)
2019-11-28 06:03:04 +08:00
err := perform(p.handler, task)
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
}
// restore moves all tasks from "in-progress" back to queue
// to restore all unfinished tasks.
func (p *processor) restore() {
2019-12-04 13:01:26 +08:00
err := p.rdb.MoveAll(rdb.InProgress, rdb.DefaultQueue)
if err != nil {
2019-12-04 13:01:26 +08:00
log.Printf("[ERROR] could not move tasks from %q to %q\n", rdb.InProgress, rdb.DefaultQueue)
}
}
2019-11-28 06:03:04 +08:00
// perform calls the handler with the given task.
// If the call returns without panic, it simply returns the value,
// otherwise, it recovers from panic and returns an error.
func perform(h Handler, task *Task) (err error) {
2019-11-28 06:03:04 +08:00
defer func() {
if x := recover(); x != nil {
err = fmt.Errorf("panic: %v", x)
}
}()
return h.ProcessTask(task)
2019-11-28 06:03:04 +08:00
}