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

215 lines
5.3 KiB
Go
Raw Normal View History

2019-11-15 13:07:19 +08:00
package asynq
2019-11-17 06:45:51 +08:00
/*
TODOs:
- [P0] Write tests
2019-11-18 07:36:33 +08:00
- [P0] Shutdown all workers gracefully when the process gets killed
2019-11-17 06:45:51 +08:00
- [P1] Add Support for multiple queues
2019-11-18 07:36:33 +08:00
- [P1] User defined max-retry count
- [P2] Web UI
2019-11-17 06:45:51 +08:00
*/
2019-11-15 13:07:19 +08:00
import (
"encoding/json"
2019-11-15 23:21:25 +08:00
"fmt"
2019-11-18 10:44:40 +08:00
"math"
"math/rand"
2019-11-15 23:21:25 +08:00
"strconv"
2019-11-15 13:07:19 +08:00
"time"
"github.com/go-redis/redis/v7"
)
// Redis keys
const (
2019-11-18 07:36:33 +08:00
queuePrefix = "asynq:queues:" // LIST
allQueues = "asynq:queues" // SET
scheduled = "asynq:scheduled" // ZSET
retry = "asynq:retry" // ZSET
dead = "asynq:dead" // ZSET
2019-11-15 13:07:19 +08:00
)
// Max retry count by default
const defaultMaxRetry = 25
2019-11-15 13:07:19 +08:00
// Client is an interface for scheduling tasks.
type Client struct {
rdb *redis.Client
}
// Task represents a task to be performed.
type Task struct {
2019-11-17 06:45:51 +08:00
// Type indicates the kind of the task to be performed.
Type string
// Payload is an arbitrary data needed for task execution.
// The value has to be serializable.
Payload map[string]interface{}
2019-11-15 13:07:19 +08:00
}
// taskMessage is an internal representation of a task with additional metadata fields.
// This data gets written in redis.
type taskMessage struct {
// fields from type Task
Type string
Payload map[string]interface{}
//------- metadata fields ----------
// queue name this message should be enqueued to
2019-11-15 13:07:19 +08:00
Queue string
2019-11-18 10:44:40 +08:00
// max number of retry for this task.
Retry int
// number of times we've retried so far
Retried int
// error message from the last failure
ErrorMsg string
2019-11-15 13:07:19 +08:00
}
// RedisOpt specifies redis options.
type RedisOpt struct {
Addr string
Password string
}
// NewClient creates and returns a new client.
func NewClient(opt *RedisOpt) *Client {
rdb := redis.NewClient(&redis.Options{Addr: opt.Addr, Password: opt.Password})
return &Client{rdb: rdb}
}
2019-11-17 06:45:51 +08:00
// Process enqueues the task to be performed at a given time.
func (c *Client) Process(task *Task, executeAt time.Time) error {
msg := &taskMessage{
Type: task.Type,
Payload: task.Payload,
2019-11-18 07:36:33 +08:00
Queue: "default",
Retry: defaultMaxRetry,
2019-11-15 13:07:19 +08:00
}
2019-11-18 07:36:33 +08:00
return c.enqueue(msg, executeAt)
}
// enqueue pushes a given task to the specified queue.
func (c *Client) enqueue(msg *taskMessage, executeAt time.Time) error {
if time.Now().After(executeAt) {
return push(c.rdb, msg)
2019-11-15 13:07:19 +08:00
}
2019-11-18 07:36:33 +08:00
return zadd(c.rdb, scheduled, float64(executeAt.Unix()), msg)
2019-11-15 13:07:19 +08:00
}
2019-11-15 23:21:25 +08:00
2019-11-19 22:48:54 +08:00
//-------------------- Launcher --------------------
2019-11-15 23:21:25 +08:00
2019-11-19 22:19:22 +08:00
// Launcher starts the manager and poller.
type Launcher struct {
2019-11-15 23:21:25 +08:00
rdb *redis.Client
2019-11-18 13:21:32 +08:00
// running indicates whether the workes are currently running.
running bool
2019-11-19 13:23:49 +08:00
poller *poller
2019-11-19 22:48:54 +08:00
manager *manager
2019-11-15 23:21:25 +08:00
}
2019-11-19 22:19:22 +08:00
// NewLauncher creates and returns a new Launcher.
func NewLauncher(poolSize int, opt *RedisOpt) *Launcher {
2019-11-15 23:21:25 +08:00
rdb := redis.NewClient(&redis.Options{Addr: opt.Addr, Password: opt.Password})
2019-11-19 13:23:49 +08:00
poller := &poller{
rdb: rdb,
done: make(chan struct{}),
avgInterval: 5 * time.Second,
zsets: []string{scheduled, retry},
}
2019-11-19 22:48:54 +08:00
manager := newManager(rdb, poolSize, nil)
2019-11-19 22:19:22 +08:00
return &Launcher{
2019-11-19 22:48:54 +08:00
rdb: rdb,
poller: poller,
manager: manager,
2019-11-15 23:21:25 +08:00
}
}
2019-11-17 06:45:51 +08:00
// TaskHandler handles a given task and report any error.
type TaskHandler func(*Task) error
2019-11-15 23:21:25 +08:00
2019-11-19 22:48:54 +08:00
// Start starts the manager and poller.
func (l *Launcher) Start(handler TaskHandler) {
if l.running {
2019-11-18 13:21:32 +08:00
return
}
2019-11-19 22:48:54 +08:00
l.running = true
l.manager.handler = handler
l.poller.start()
l.manager.start()
}
// Stop stops both manager and poller.
func (l *Launcher) Stop() {
if !l.running {
return
2019-11-15 23:21:25 +08:00
}
2019-11-19 22:48:54 +08:00
l.running = false
l.poller.terminate()
l.manager.terminate()
2019-11-15 23:21:25 +08:00
}
2019-11-17 00:20:23 +08:00
// push pushes the task to the specified queue to get picked up by a worker.
func push(rdb *redis.Client, msg *taskMessage) error {
bytes, err := json.Marshal(msg)
2019-11-16 23:51:53 +08:00
if err != nil {
return fmt.Errorf("could not encode task into JSON: %v", err)
}
qname := queuePrefix + msg.Queue
2019-11-17 00:20:23 +08:00
err = rdb.SAdd(allQueues, qname).Err()
2019-11-16 23:51:53 +08:00
if err != nil {
return fmt.Errorf("could not execute command SADD %q %q: %v",
2019-11-17 00:20:23 +08:00
allQueues, qname, err)
2019-11-16 23:51:53 +08:00
}
2019-11-17 00:20:23 +08:00
return rdb.RPush(qname, string(bytes)).Err()
}
2019-11-18 07:36:33 +08:00
// zadd serializes the given message and adds to the specified sorted set.
func zadd(rdb *redis.Client, zset string, zscore float64, msg *taskMessage) error {
bytes, err := json.Marshal(msg)
if err != nil {
return fmt.Errorf("could not encode task into JSON: %v", err)
}
return rdb.ZAdd(zset, &redis.Z{Member: string(bytes), Score: zscore}).Err()
}
const maxDeadTask = 100
const deadExpirationInDays = 90
// kill sends the task to "dead" sorted set. It also trim the sorted set by
// timestamp and set size.
func kill(rdb *redis.Client, msg *taskMessage) error {
bytes, err := json.Marshal(msg)
if err != nil {
return fmt.Errorf("could not encode task into JSON: %v", err)
}
now := time.Now()
pipe := rdb.Pipeline()
pipe.ZAdd(dead, &redis.Z{Member: string(bytes), Score: float64(now.Unix())})
limit := now.AddDate(0, 0, -deadExpirationInDays).Unix() // 90 days ago
pipe.ZRemRangeByScore(dead, "-inf", strconv.Itoa(int(limit)))
pipe.ZRemRangeByRank(dead, 0, -maxDeadTask) // trim the set to 100
_, err = pipe.Exec()
return err
}
2019-11-17 00:20:23 +08:00
// listQueues returns the list of all queues.
func listQueues(rdb *redis.Client) []string {
return rdb.SMembers(allQueues).Val()
2019-11-16 23:51:53 +08:00
}
2019-11-18 10:44:40 +08:00
// delaySeconds returns a number seconds to delay before retrying.
// Formula taken from https://github.com/mperham/sidekiq.
func delaySeconds(count int) time.Duration {
r := rand.New(rand.NewSource(time.Now().UnixNano()))
s := int(math.Pow(float64(count), 4)) + 15 + (r.Intn(30) * (count + 1))
return time.Duration(s) * time.Second
}