2020-01-03 10:13:16 +08:00
|
|
|
// Copyright 2020 Kentaro Hibino. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-12-22 23:15:45 +08:00
|
|
|
// Package base defines foundational types and constants used in asynq package.
|
|
|
|
package base
|
|
|
|
|
2019-12-23 21:33:48 +08:00
|
|
|
import (
|
2020-02-13 09:12:09 +08:00
|
|
|
"context"
|
2020-01-31 22:48:58 +08:00
|
|
|
"fmt"
|
2020-01-11 13:32:15 +08:00
|
|
|
"strings"
|
2020-02-02 14:22:48 +08:00
|
|
|
"sync"
|
2019-12-23 21:33:48 +08:00
|
|
|
"time"
|
|
|
|
|
2020-04-18 22:55:10 +08:00
|
|
|
"github.com/go-redis/redis/v7"
|
2019-12-23 21:33:48 +08:00
|
|
|
"github.com/rs/xid"
|
|
|
|
)
|
2019-12-22 23:15:45 +08:00
|
|
|
|
2020-01-06 22:53:40 +08:00
|
|
|
// DefaultQueueName is the queue name used if none are specified by user.
|
|
|
|
const DefaultQueueName = "default"
|
|
|
|
|
2019-12-22 23:15:45 +08:00
|
|
|
// Redis keys
|
|
|
|
const (
|
2020-04-13 07:42:11 +08:00
|
|
|
AllServers = "asynq:servers" // ZSET
|
|
|
|
serversPrefix = "asynq:servers:" // STRING - asynq:ps:<host>:<pid>:<serverid>
|
2020-02-21 23:18:22 +08:00
|
|
|
AllWorkers = "asynq:workers" // ZSET
|
2020-04-13 07:42:11 +08:00
|
|
|
workersPrefix = "asynq:workers:" // HASH - asynq:workers:<host:<pid>:<serverid>
|
2020-01-06 22:53:40 +08:00
|
|
|
processedPrefix = "asynq:processed:" // STRING - asynq:processed:<yyyy-mm-dd>
|
|
|
|
failurePrefix = "asynq:failure:" // STRING - asynq:failure:<yyyy-mm-dd>
|
2020-01-07 13:27:51 +08:00
|
|
|
QueuePrefix = "asynq:queues:" // LIST - asynq:queues:<qname>
|
2020-01-09 22:21:43 +08:00
|
|
|
AllQueues = "asynq:queues" // SET
|
2020-01-07 13:27:51 +08:00
|
|
|
DefaultQueue = QueuePrefix + DefaultQueueName // LIST
|
2020-01-06 22:53:40 +08:00
|
|
|
ScheduledQueue = "asynq:scheduled" // ZSET
|
|
|
|
RetryQueue = "asynq:retry" // ZSET
|
|
|
|
DeadQueue = "asynq:dead" // ZSET
|
|
|
|
InProgressQueue = "asynq:in_progress" // LIST
|
2020-06-03 21:44:12 +08:00
|
|
|
PausedQueues = "asynq:paused" // SET
|
2020-02-13 09:12:09 +08:00
|
|
|
CancelChannel = "asynq:cancel" // PubSub channel
|
2019-12-22 23:15:45 +08:00
|
|
|
)
|
|
|
|
|
2020-02-20 22:34:09 +08:00
|
|
|
// QueueKey returns a redis key for the given queue name.
|
2020-01-06 22:53:40 +08:00
|
|
|
func QueueKey(qname string) string {
|
2020-01-11 13:32:15 +08:00
|
|
|
return QueuePrefix + strings.ToLower(qname)
|
2020-01-06 22:53:40 +08:00
|
|
|
}
|
|
|
|
|
2020-02-20 22:34:09 +08:00
|
|
|
// ProcessedKey returns a redis key for processed count for the given day.
|
2019-12-23 21:33:48 +08:00
|
|
|
func ProcessedKey(t time.Time) string {
|
|
|
|
return processedPrefix + t.UTC().Format("2006-01-02")
|
|
|
|
}
|
|
|
|
|
2020-02-20 22:34:09 +08:00
|
|
|
// FailureKey returns a redis key for failure count for the given day.
|
2019-12-23 21:33:48 +08:00
|
|
|
func FailureKey(t time.Time) string {
|
|
|
|
return failurePrefix + t.UTC().Format("2006-01-02")
|
|
|
|
}
|
|
|
|
|
2020-04-13 07:42:11 +08:00
|
|
|
// ServerInfoKey returns a redis key for process info.
|
|
|
|
func ServerInfoKey(hostname string, pid int, sid string) string {
|
|
|
|
return fmt.Sprintf("%s%s:%d:%s", serversPrefix, hostname, pid, sid)
|
2020-01-31 22:48:58 +08:00
|
|
|
}
|
|
|
|
|
2020-04-13 07:42:11 +08:00
|
|
|
// WorkersKey returns a redis key for the workers given hostname, pid, and server ID.
|
|
|
|
func WorkersKey(hostname string, pid int, sid string) string {
|
|
|
|
return fmt.Sprintf("%s%s:%d:%s", workersPrefix, hostname, pid, sid)
|
2020-02-20 22:34:09 +08:00
|
|
|
}
|
|
|
|
|
2019-12-22 23:15:45 +08:00
|
|
|
// TaskMessage is the internal representation of a task with additional metadata fields.
|
2019-12-28 12:37:15 +08:00
|
|
|
// Serialized data of this type gets written to redis.
|
2019-12-22 23:15:45 +08:00
|
|
|
type TaskMessage struct {
|
2019-12-28 12:37:15 +08:00
|
|
|
// Type indicates the kind of the task to be performed.
|
2019-12-22 23:15:45 +08:00
|
|
|
Type string
|
2019-12-28 12:37:15 +08:00
|
|
|
|
2019-12-22 23:15:45 +08:00
|
|
|
// Payload holds data needed to process the task.
|
|
|
|
Payload map[string]interface{}
|
|
|
|
|
2019-12-28 12:37:15 +08:00
|
|
|
// ID is a unique identifier for each task.
|
2019-12-22 23:15:45 +08:00
|
|
|
ID xid.ID
|
2019-12-28 12:37:15 +08:00
|
|
|
|
|
|
|
// Queue is a name this message should be enqueued to.
|
2019-12-22 23:15:45 +08:00
|
|
|
Queue string
|
2019-12-28 12:37:15 +08:00
|
|
|
|
2019-12-22 23:15:45 +08:00
|
|
|
// Retry is the max number of retry for this task.
|
|
|
|
Retry int
|
2019-12-28 12:37:15 +08:00
|
|
|
|
|
|
|
// Retried is the number of times we've retried this task so far.
|
2019-12-22 23:15:45 +08:00
|
|
|
Retried int
|
2019-12-28 12:37:15 +08:00
|
|
|
|
|
|
|
// ErrorMsg holds the error message from the last failure.
|
2019-12-22 23:15:45 +08:00
|
|
|
ErrorMsg string
|
2020-02-12 13:53:59 +08:00
|
|
|
|
|
|
|
// Timeout specifies how long a task may run.
|
|
|
|
// The string value should be compatible with time.Duration.ParseDuration.
|
|
|
|
//
|
|
|
|
// Zero means no limit.
|
|
|
|
Timeout string
|
2020-03-08 12:24:03 +08:00
|
|
|
|
|
|
|
// Deadline specifies the deadline for the task.
|
|
|
|
// Task won't be processed if it exceeded its deadline.
|
|
|
|
// The string shoulbe be in RFC3339 format.
|
|
|
|
//
|
|
|
|
// time.Time's zero value means no deadline.
|
|
|
|
Deadline string
|
2020-03-18 21:49:39 +08:00
|
|
|
|
|
|
|
// UniqueKey holds the redis key used for uniqueness lock for this task.
|
|
|
|
//
|
|
|
|
// Empty string indicates that no uniqueness lock was used.
|
|
|
|
UniqueKey string
|
2019-12-22 23:15:45 +08:00
|
|
|
}
|
2020-01-31 22:48:58 +08:00
|
|
|
|
2020-05-19 11:47:35 +08:00
|
|
|
// ServerStatus represents status of a server.
|
|
|
|
// ServerStatus methods are concurrency safe.
|
|
|
|
type ServerStatus struct {
|
|
|
|
mu sync.Mutex
|
|
|
|
val ServerStatusValue
|
2020-02-18 22:57:39 +08:00
|
|
|
}
|
|
|
|
|
2020-05-19 11:47:35 +08:00
|
|
|
// NewServerStatus returns a new status instance given an initial value.
|
|
|
|
func NewServerStatus(v ServerStatusValue) *ServerStatus {
|
|
|
|
return &ServerStatus{val: v}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ServerStatusValue int
|
2020-02-18 22:57:39 +08:00
|
|
|
|
|
|
|
const (
|
2020-04-13 02:41:50 +08:00
|
|
|
// StatusIdle indicates the server is in idle state.
|
2020-05-19 11:47:35 +08:00
|
|
|
StatusIdle ServerStatusValue = iota
|
2020-02-18 22:57:39 +08:00
|
|
|
|
2020-04-13 02:41:50 +08:00
|
|
|
// StatusRunning indicates the servier is up and processing tasks.
|
2020-02-18 22:57:39 +08:00
|
|
|
StatusRunning
|
|
|
|
|
2020-04-13 02:41:50 +08:00
|
|
|
// StatusQuiet indicates the server is up but not processing new tasks.
|
|
|
|
StatusQuiet
|
|
|
|
|
|
|
|
// StatusStopped indicates the server server has been stopped.
|
2020-02-18 22:57:39 +08:00
|
|
|
StatusStopped
|
|
|
|
)
|
|
|
|
|
|
|
|
var statuses = []string{
|
|
|
|
"idle",
|
|
|
|
"running",
|
2020-04-13 02:41:50 +08:00
|
|
|
"quiet",
|
2020-02-18 22:57:39 +08:00
|
|
|
"stopped",
|
|
|
|
}
|
|
|
|
|
2020-05-19 11:47:35 +08:00
|
|
|
func (s *ServerStatus) String() string {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
if StatusIdle <= s.val && s.val <= StatusStopped {
|
|
|
|
return statuses[s.val]
|
2020-02-18 22:57:39 +08:00
|
|
|
}
|
|
|
|
return "unknown status"
|
|
|
|
}
|
|
|
|
|
2020-05-19 11:47:35 +08:00
|
|
|
// Get returns the status value.
|
|
|
|
func (s *ServerStatus) Get() ServerStatusValue {
|
|
|
|
s.mu.Lock()
|
|
|
|
v := s.val
|
|
|
|
s.mu.Unlock()
|
|
|
|
return v
|
2020-02-20 23:44:13 +08:00
|
|
|
}
|
|
|
|
|
2020-05-19 11:47:35 +08:00
|
|
|
// Set sets the status value.
|
|
|
|
func (s *ServerStatus) Set(v ServerStatusValue) {
|
|
|
|
s.mu.Lock()
|
|
|
|
s.val = v
|
|
|
|
s.mu.Unlock()
|
2020-02-20 23:44:13 +08:00
|
|
|
}
|
|
|
|
|
2020-04-13 07:42:11 +08:00
|
|
|
// ServerInfo holds information about a running server.
|
|
|
|
type ServerInfo struct {
|
2020-02-20 23:44:13 +08:00
|
|
|
Host string
|
|
|
|
PID int
|
2020-04-13 07:42:11 +08:00
|
|
|
ServerID string
|
2020-02-02 14:22:48 +08:00
|
|
|
Concurrency int
|
2020-02-13 14:23:25 +08:00
|
|
|
Queues map[string]int
|
2020-02-02 14:22:48 +08:00
|
|
|
StrictPriority bool
|
2020-02-18 22:57:39 +08:00
|
|
|
Status string
|
2020-02-02 14:22:48 +08:00
|
|
|
Started time.Time
|
|
|
|
ActiveWorkerCount int
|
|
|
|
}
|
|
|
|
|
2020-02-20 23:44:13 +08:00
|
|
|
// WorkerInfo holds information about a running worker.
|
|
|
|
type WorkerInfo struct {
|
|
|
|
Host string
|
|
|
|
PID int
|
2020-05-19 11:47:35 +08:00
|
|
|
ID string
|
2020-02-20 23:44:13 +08:00
|
|
|
Type string
|
|
|
|
Queue string
|
|
|
|
Payload map[string]interface{}
|
|
|
|
Started time.Time
|
|
|
|
}
|
|
|
|
|
2020-02-13 09:33:41 +08:00
|
|
|
// Cancelations is a collection that holds cancel functions for all in-progress tasks.
|
2020-02-13 09:12:09 +08:00
|
|
|
//
|
2020-02-18 22:57:39 +08:00
|
|
|
// Cancelations are safe for concurrent use by multipel goroutines.
|
2020-02-13 09:12:09 +08:00
|
|
|
type Cancelations struct {
|
|
|
|
mu sync.Mutex
|
|
|
|
cancelFuncs map[string]context.CancelFunc
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewCancelations returns a Cancelations instance.
|
|
|
|
func NewCancelations() *Cancelations {
|
|
|
|
return &Cancelations{
|
|
|
|
cancelFuncs: make(map[string]context.CancelFunc),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-13 09:33:41 +08:00
|
|
|
// Add adds a new cancel func to the collection.
|
2020-02-13 09:12:09 +08:00
|
|
|
func (c *Cancelations) Add(id string, fn context.CancelFunc) {
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
c.cancelFuncs[id] = fn
|
|
|
|
}
|
|
|
|
|
2020-02-13 09:33:41 +08:00
|
|
|
// Delete deletes a cancel func from the collection given an id.
|
2020-02-13 09:12:09 +08:00
|
|
|
func (c *Cancelations) Delete(id string) {
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
delete(c.cancelFuncs, id)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get returns a cancel func given an id.
|
2020-02-20 23:44:13 +08:00
|
|
|
func (c *Cancelations) Get(id string) (fn context.CancelFunc, ok bool) {
|
2020-02-13 09:12:09 +08:00
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
2020-02-20 23:44:13 +08:00
|
|
|
fn, ok = c.cancelFuncs[id]
|
|
|
|
return fn, ok
|
2020-02-13 09:12:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetAll returns all cancel funcs.
|
|
|
|
func (c *Cancelations) GetAll() []context.CancelFunc {
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
var res []context.CancelFunc
|
|
|
|
for _, fn := range c.cancelFuncs {
|
|
|
|
res = append(res, fn)
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
2020-04-18 22:55:10 +08:00
|
|
|
|
|
|
|
// Broker is a message broker that supports operations to manage task queues.
|
|
|
|
//
|
|
|
|
// See rdb.RDB as a reference implementation.
|
|
|
|
type Broker interface {
|
|
|
|
Enqueue(msg *TaskMessage) error
|
|
|
|
EnqueueUnique(msg *TaskMessage, ttl time.Duration) error
|
|
|
|
Dequeue(qnames ...string) (*TaskMessage, error)
|
|
|
|
Done(msg *TaskMessage) error
|
|
|
|
Requeue(msg *TaskMessage) error
|
|
|
|
Schedule(msg *TaskMessage, processAt time.Time) error
|
|
|
|
ScheduleUnique(msg *TaskMessage, processAt time.Time, ttl time.Duration) error
|
|
|
|
Retry(msg *TaskMessage, processAt time.Time, errMsg string) error
|
|
|
|
Kill(msg *TaskMessage, errMsg string) error
|
|
|
|
RequeueAll() (int64, error)
|
2020-06-08 04:04:27 +08:00
|
|
|
CheckAndEnqueue() error
|
2020-05-19 11:47:35 +08:00
|
|
|
WriteServerState(info *ServerInfo, workers []*WorkerInfo, ttl time.Duration) error
|
|
|
|
ClearServerState(host string, pid int, serverID string) error
|
2020-04-18 22:55:10 +08:00
|
|
|
CancelationPubSub() (*redis.PubSub, error) // TODO: Need to decouple from redis to support other brokers
|
|
|
|
PublishCancelation(id string) error
|
|
|
|
Close() error
|
|
|
|
}
|