2
0
mirror of https://github.com/hibiken/asynq.git synced 2026-04-23 14:25:52 +08:00
Files
asynq/background.go

115 lines
2.8 KiB
Go
Raw Normal View History

2019-11-23 15:22:43 -08:00
package asynq
import (
2019-11-27 06:33:04 -08:00
"fmt"
"log"
2019-11-23 15:44:42 -08:00
"os"
"os/signal"
2019-11-23 15:22:43 -08:00
"sync"
"time"
2019-12-03 21:01:26 -08:00
"github.com/hibiken/asynq/internal/rdb"
2019-11-23 15:22:43 -08:00
)
2019-12-06 22:00:09 -08:00
// Background is responsible for managing the background-task processing.
//
// Background manages background queues to process tasks and retry if
// necessary. If the processing of a task is unsuccessful, background will
// schedule it for a retry with an exponential backoff until either the task
// gets processed successfully or it exhausts its max retry count.
//
// Once a task exhausts its retries, it will be moved to the "dead" queue and
// will be kept in the queue for some time until a certain condition is met
// (e.g., queue size reaches a certain limit, or the task has been in the
// queue for a certain amount of time).
2019-11-23 15:22:43 -08:00
type Background struct {
mu sync.Mutex
running bool
2019-11-23 15:22:43 -08:00
2019-12-03 21:01:26 -08:00
rdb *rdb.RDB
2019-11-23 15:22:43 -08:00
poller *poller
processor *processor
}
2019-12-06 22:00:09 -08:00
// NewBackground returns a new Background with the specified number of workers
// given a redis configuration .
2019-12-09 06:22:08 -08:00
func NewBackground(numWorkers int, cfg *RedisConfig) *Background {
r := rdb.NewRDB(newRedisClient(cfg))
2019-12-04 07:14:37 -08:00
poller := newPoller(r, 5*time.Second)
2019-12-03 21:01:26 -08:00
processor := newProcessor(r, numWorkers, nil)
2019-11-23 15:22:43 -08:00
return &Background{
2019-12-03 21:01:26 -08:00
rdb: r,
2019-11-23 15:22:43 -08:00
poller: poller,
processor: processor,
}
}
// A Handler processes a task.
//
// ProcessTask should return nil if the processing of a task
// is successful.
//
// If ProcessTask return a non-nil error or panics, the task
// will be retried after delay.
type Handler interface {
ProcessTask(*Task) error
}
// The HandlerFunc type is an adapter to allow the use of
// ordinary functions as a Handler. If f is a function
// with the appropriate signature, HandlerFunc(f) is a
// Handler that calls f.
type HandlerFunc func(*Task) error
// ProcessTask calls fn(task)
func (fn HandlerFunc) ProcessTask(task *Task) error {
return fn(task)
}
2019-11-23 15:22:43 -08:00
2019-11-23 15:44:42 -08:00
// Run starts the background-task processing and blocks until
// an os signal to exit the program is received. Once it receives
// a signal, it gracefully shuts down all pending workers and other
// goroutines to process the tasks.
func (bg *Background) Run(handler Handler) {
2019-11-23 15:44:42 -08:00
bg.start(handler)
defer bg.stop()
// Wait for a signal to exit.
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, os.Interrupt, os.Kill)
<-sigs
fmt.Println()
log.Println("[INFO] Starting graceful shutdown...")
2019-11-23 15:44:42 -08:00
}
// starts the background-task processing.
func (bg *Background) start(handler Handler) {
2019-11-23 15:22:43 -08:00
bg.mu.Lock()
defer bg.mu.Unlock()
if bg.running {
return
}
2019-11-23 15:22:43 -08:00
bg.running = true
bg.processor.handler = handler
bg.poller.start()
bg.processor.start()
}
2019-11-23 15:44:42 -08:00
// stops the background-task processing.
func (bg *Background) stop() {
2019-11-23 15:22:43 -08:00
bg.mu.Lock()
defer bg.mu.Unlock()
if !bg.running {
return
}
bg.poller.terminate()
bg.processor.terminate()
2019-12-03 21:01:26 -08:00
bg.rdb.Close()
bg.processor.handler = nil
bg.running = false
2019-11-23 15:22:43 -08:00
}