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-05 12:30:37 +08:00
|
|
|
package rdb
|
|
|
|
|
|
|
|
import (
|
2020-08-18 21:30:15 +08:00
|
|
|
"encoding/json"
|
2019-12-08 22:46:04 +08:00
|
|
|
"fmt"
|
2019-12-23 01:09:57 +08:00
|
|
|
"strings"
|
2019-12-05 12:30:37 +08:00
|
|
|
"time"
|
|
|
|
|
2019-12-08 22:46:04 +08:00
|
|
|
"github.com/go-redis/redis/v7"
|
2020-07-02 21:21:20 +08:00
|
|
|
"github.com/google/uuid"
|
2019-12-22 23:15:45 +08:00
|
|
|
"github.com/hibiken/asynq/internal/base"
|
2019-12-26 13:29:20 +08:00
|
|
|
"github.com/spf13/cast"
|
2019-12-05 12:30:37 +08:00
|
|
|
)
|
|
|
|
|
2020-08-11 20:35:06 +08:00
|
|
|
// AllQueues returns a list of all queue names.
|
|
|
|
func (r *RDB) AllQueues() ([]string, error) {
|
|
|
|
return r.client.SMembers(base.AllQueues).Result()
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
|
|
|
|
2020-08-11 20:35:06 +08:00
|
|
|
// Stats represents a state of queues at a certain time.
|
|
|
|
type Stats struct {
|
2020-06-08 04:04:27 +08:00
|
|
|
// Name of the queue (e.g. "default", "critical").
|
2020-08-12 20:30:59 +08:00
|
|
|
Queue string
|
2020-06-08 04:04:27 +08:00
|
|
|
// Paused indicates whether the queue is paused.
|
|
|
|
// If true, tasks in the queue should not be processed.
|
2020-06-05 21:42:27 +08:00
|
|
|
Paused bool
|
2020-08-21 21:00:49 +08:00
|
|
|
// Size is the total number of tasks in the queue.
|
|
|
|
Size int
|
2020-08-11 20:35:06 +08:00
|
|
|
// Number of tasks in each state.
|
2020-09-06 03:43:15 +08:00
|
|
|
Pending int
|
|
|
|
Active int
|
|
|
|
Scheduled int
|
|
|
|
Retry int
|
|
|
|
Dead int
|
2020-08-11 20:35:06 +08:00
|
|
|
// Total number of tasks processed during the current date.
|
|
|
|
// The number includes both succeeded and failed tasks.
|
|
|
|
Processed int
|
|
|
|
// Total number of tasks failed during the current date.
|
|
|
|
Failed int
|
|
|
|
// Time this stats was taken.
|
|
|
|
Timestamp time.Time
|
2020-06-05 21:42:27 +08:00
|
|
|
}
|
|
|
|
|
2020-01-05 01:41:05 +08:00
|
|
|
// DailyStats holds aggregate data for a given day.
|
|
|
|
type DailyStats struct {
|
2020-08-12 20:30:59 +08:00
|
|
|
// Name of the queue (e.g. "default", "critical").
|
|
|
|
Queue string
|
|
|
|
// Total number of tasks processed during the given day.
|
|
|
|
// The number includes both succeeded and failed tasks.
|
2020-01-05 01:41:05 +08:00
|
|
|
Processed int
|
2020-08-12 20:30:59 +08:00
|
|
|
// Total number of tasks failed during the given day.
|
|
|
|
Failed int
|
|
|
|
// Date this stats was taken.
|
|
|
|
Time time.Time
|
2020-01-05 01:41:05 +08:00
|
|
|
}
|
|
|
|
|
2020-08-11 21:28:12 +08:00
|
|
|
// KEYS[1] -> asynq:<qname>
|
2020-09-06 03:43:15 +08:00
|
|
|
// KEYS[2] -> asynq:<qname>:active
|
2020-08-11 21:28:12 +08:00
|
|
|
// KEYS[3] -> asynq:<qname>:scheduled
|
|
|
|
// KEYS[4] -> asynq:<qname>:retry
|
|
|
|
// KEYS[5] -> asynq:<qname>:dead
|
|
|
|
// KEYS[6] -> asynq:<qname>:processed:<yyyy-mm-dd>
|
|
|
|
// KEYS[7] -> asynq:<qname>:failed:<yyyy-mm-dd>
|
|
|
|
// KEYS[8] -> asynq:<qname>:paused
|
2020-02-09 03:06:14 +08:00
|
|
|
var currentStatsCmd = redis.NewScript(`
|
|
|
|
local res = {}
|
2020-08-11 21:28:12 +08:00
|
|
|
table.insert(res, KEYS[1])
|
|
|
|
table.insert(res, redis.call("LLEN", KEYS[1]))
|
2020-02-09 03:06:14 +08:00
|
|
|
table.insert(res, KEYS[2])
|
|
|
|
table.insert(res, redis.call("LLEN", KEYS[2]))
|
|
|
|
table.insert(res, KEYS[3])
|
|
|
|
table.insert(res, redis.call("ZCARD", KEYS[3]))
|
|
|
|
table.insert(res, KEYS[4])
|
|
|
|
table.insert(res, redis.call("ZCARD", KEYS[4]))
|
|
|
|
table.insert(res, KEYS[5])
|
|
|
|
table.insert(res, redis.call("ZCARD", KEYS[5]))
|
|
|
|
local pcount = 0
|
|
|
|
local p = redis.call("GET", KEYS[6])
|
|
|
|
if p then
|
|
|
|
pcount = tonumber(p)
|
|
|
|
end
|
2020-08-11 21:28:12 +08:00
|
|
|
table.insert(res, KEYS[6])
|
2020-02-09 03:06:14 +08:00
|
|
|
table.insert(res, pcount)
|
|
|
|
local fcount = 0
|
|
|
|
local f = redis.call("GET", KEYS[7])
|
|
|
|
if f then
|
|
|
|
fcount = tonumber(f)
|
|
|
|
end
|
2020-08-11 21:28:12 +08:00
|
|
|
table.insert(res, KEYS[7])
|
2020-02-09 03:06:14 +08:00
|
|
|
table.insert(res, fcount)
|
2020-08-11 21:28:12 +08:00
|
|
|
table.insert(res, KEYS[8])
|
|
|
|
table.insert(res, redis.call("EXISTS", KEYS[8]))
|
2020-02-09 03:06:14 +08:00
|
|
|
return res`)
|
|
|
|
|
2019-12-05 12:30:37 +08:00
|
|
|
// CurrentStats returns a current state of the queues.
|
2020-08-11 21:28:12 +08:00
|
|
|
func (r *RDB) CurrentStats(qname string) (*Stats, error) {
|
|
|
|
exists, err := r.client.SIsMember(base.AllQueues, qname).Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !exists {
|
2020-08-13 21:54:32 +08:00
|
|
|
return nil, &ErrQueueNotFound{qname}
|
2020-08-11 21:28:12 +08:00
|
|
|
}
|
2019-12-26 12:17:00 +08:00
|
|
|
now := time.Now()
|
2020-02-09 03:06:14 +08:00
|
|
|
res, err := currentStatsCmd.Run(r.client, []string{
|
2020-08-11 21:28:12 +08:00
|
|
|
base.QueueKey(qname),
|
2020-09-06 03:43:15 +08:00
|
|
|
base.ActiveKey(qname),
|
2020-08-11 21:28:12 +08:00
|
|
|
base.ScheduledKey(qname),
|
|
|
|
base.RetryKey(qname),
|
|
|
|
base.DeadKey(qname),
|
|
|
|
base.ProcessedKey(qname, now),
|
|
|
|
base.FailedKey(qname, now),
|
|
|
|
base.PausedKey(qname),
|
2019-12-26 13:29:20 +08:00
|
|
|
}).Result()
|
2019-12-26 12:17:00 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-09 23:01:44 +08:00
|
|
|
data, err := cast.ToSliceE(res)
|
2019-12-26 12:17:00 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-09 23:01:44 +08:00
|
|
|
stats := &Stats{
|
2020-08-12 20:30:59 +08:00
|
|
|
Queue: qname,
|
2020-01-09 23:01:44 +08:00
|
|
|
Timestamp: now,
|
|
|
|
}
|
2020-08-21 21:00:49 +08:00
|
|
|
size := 0
|
2020-01-09 23:01:44 +08:00
|
|
|
for i := 0; i < len(data); i += 2 {
|
|
|
|
key := cast.ToString(data[i])
|
|
|
|
val := cast.ToInt(data[i+1])
|
2020-08-11 21:28:12 +08:00
|
|
|
switch key {
|
|
|
|
case base.QueueKey(qname):
|
2020-09-05 22:03:43 +08:00
|
|
|
stats.Pending = val
|
2020-08-21 21:00:49 +08:00
|
|
|
size += val
|
2020-09-06 03:43:15 +08:00
|
|
|
case base.ActiveKey(qname):
|
|
|
|
stats.Active = val
|
2020-08-21 21:00:49 +08:00
|
|
|
size += val
|
2020-08-11 21:28:12 +08:00
|
|
|
case base.ScheduledKey(qname):
|
2020-01-09 23:01:44 +08:00
|
|
|
stats.Scheduled = val
|
2020-08-21 21:00:49 +08:00
|
|
|
size += val
|
2020-08-13 21:54:32 +08:00
|
|
|
case base.RetryKey(qname):
|
2020-01-09 23:01:44 +08:00
|
|
|
stats.Retry = val
|
2020-08-21 21:00:49 +08:00
|
|
|
size += val
|
2020-08-11 21:28:12 +08:00
|
|
|
case base.DeadKey(qname):
|
2020-01-09 23:01:44 +08:00
|
|
|
stats.Dead = val
|
2020-08-21 21:00:49 +08:00
|
|
|
size += val
|
2020-08-11 21:28:12 +08:00
|
|
|
case base.ProcessedKey(qname, now):
|
2020-01-09 23:01:44 +08:00
|
|
|
stats.Processed = val
|
2020-08-11 21:28:12 +08:00
|
|
|
case base.FailedKey(qname, now):
|
2020-01-09 23:01:44 +08:00
|
|
|
stats.Failed = val
|
2020-08-11 21:28:12 +08:00
|
|
|
case base.PausedKey(qname):
|
|
|
|
if val == 0 {
|
|
|
|
stats.Paused = false
|
|
|
|
} else {
|
|
|
|
stats.Paused = true
|
|
|
|
}
|
2020-01-09 23:01:44 +08:00
|
|
|
}
|
|
|
|
}
|
2020-08-21 21:00:49 +08:00
|
|
|
stats.Size = size
|
2020-01-09 23:01:44 +08:00
|
|
|
return stats, nil
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
|
|
|
|
2020-02-09 03:06:14 +08:00
|
|
|
var historicalStatsCmd = redis.NewScript(`
|
|
|
|
local res = {}
|
|
|
|
for _, key in ipairs(KEYS) do
|
|
|
|
local n = redis.call("GET", key)
|
|
|
|
if not n then
|
2020-08-12 20:30:59 +08:00
|
|
|
n = 0
|
2020-02-09 03:06:14 +08:00
|
|
|
end
|
|
|
|
table.insert(res, tonumber(n))
|
|
|
|
end
|
|
|
|
return res`)
|
|
|
|
|
2020-08-12 20:30:59 +08:00
|
|
|
// HistoricalStats returns a list of stats from the last n days for the given queue.
|
|
|
|
func (r *RDB) HistoricalStats(qname string, n int) ([]*DailyStats, error) {
|
2020-01-05 01:41:05 +08:00
|
|
|
if n < 1 {
|
2020-08-21 21:00:49 +08:00
|
|
|
return nil, fmt.Errorf("the number of days must be positive")
|
|
|
|
}
|
|
|
|
exists, err := r.client.SIsMember(base.AllQueues, qname).Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !exists {
|
|
|
|
return nil, &ErrQueueNotFound{qname}
|
2020-01-05 01:41:05 +08:00
|
|
|
}
|
|
|
|
const day = 24 * time.Hour
|
|
|
|
now := time.Now().UTC()
|
|
|
|
var days []time.Time
|
|
|
|
var keys []string
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
ts := now.Add(-time.Duration(i) * day)
|
|
|
|
days = append(days, ts)
|
2020-08-12 20:30:59 +08:00
|
|
|
keys = append(keys, base.ProcessedKey(qname, ts))
|
2020-08-13 21:54:32 +08:00
|
|
|
keys = append(keys, base.FailedKey(qname, ts))
|
2020-01-05 01:41:05 +08:00
|
|
|
}
|
2020-08-12 20:30:59 +08:00
|
|
|
res, err := historicalStatsCmd.Run(r.client, keys).Result()
|
2020-01-05 01:41:05 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
data, err := cast.ToIntSliceE(res)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var stats []*DailyStats
|
|
|
|
for i := 0; i < len(data); i += 2 {
|
|
|
|
stats = append(stats, &DailyStats{
|
2020-08-12 20:30:59 +08:00
|
|
|
Queue: qname,
|
2020-01-05 01:41:05 +08:00
|
|
|
Processed: data[i],
|
|
|
|
Failed: data[i+1],
|
|
|
|
Time: days[i/2],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return stats, nil
|
|
|
|
}
|
|
|
|
|
2019-12-23 01:09:57 +08:00
|
|
|
// RedisInfo returns a map of redis info.
|
|
|
|
func (r *RDB) RedisInfo() (map[string]string, error) {
|
|
|
|
res, err := r.client.Info().Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-09-08 03:55:32 +08:00
|
|
|
return parseInfo(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RedisClusterInfo returns a map of redis cluster info.
|
|
|
|
func (r *RDB) RedisClusterInfo() (map[string]string, error) {
|
|
|
|
res, err := r.client.ClusterInfo().Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return parseInfo(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseInfo(infoStr string) (map[string]string, error) {
|
2019-12-23 01:09:57 +08:00
|
|
|
info := make(map[string]string)
|
2020-09-08 03:55:32 +08:00
|
|
|
lines := strings.Split(infoStr, "\r\n")
|
2019-12-23 01:09:57 +08:00
|
|
|
for _, l := range lines {
|
|
|
|
kv := strings.Split(l, ":")
|
|
|
|
if len(kv) == 2 {
|
|
|
|
info[kv[0]] = kv[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return info, nil
|
|
|
|
}
|
|
|
|
|
2020-01-24 23:19:58 +08:00
|
|
|
func reverse(x []string) {
|
|
|
|
for i := len(x)/2 - 1; i >= 0; i-- {
|
|
|
|
opp := len(x) - 1 - i
|
|
|
|
x[i], x[opp] = x[opp], x[i]
|
2020-01-11 13:32:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-24 23:19:58 +08:00
|
|
|
// Pagination specifies the page size and page number
|
|
|
|
// for the list operation.
|
|
|
|
type Pagination struct {
|
|
|
|
// Number of items in the page.
|
2020-02-13 14:23:25 +08:00
|
|
|
Size int
|
2020-01-24 23:19:58 +08:00
|
|
|
|
|
|
|
// Page number starting from zero.
|
2020-02-13 14:23:25 +08:00
|
|
|
Page int
|
2020-01-11 13:32:15 +08:00
|
|
|
}
|
|
|
|
|
2020-01-24 23:19:58 +08:00
|
|
|
func (p Pagination) start() int64 {
|
|
|
|
return int64(p.Size * p.Page)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p Pagination) stop() int64 {
|
|
|
|
return int64(p.Size*p.Page + p.Size - 1)
|
|
|
|
}
|
|
|
|
|
2020-09-05 22:03:43 +08:00
|
|
|
// ListPending returns pending tasks that are ready to be processed.
|
|
|
|
func (r *RDB) ListPending(qname string, pgn Pagination) ([]*base.TaskMessage, error) {
|
2020-08-13 21:54:32 +08:00
|
|
|
if !r.client.SIsMember(base.AllQueues, qname).Val() {
|
2020-01-24 23:19:58 +08:00
|
|
|
return nil, fmt.Errorf("queue %q does not exist", qname)
|
2020-01-11 13:32:15 +08:00
|
|
|
}
|
2020-08-13 21:54:32 +08:00
|
|
|
return r.listMessages(base.QueueKey(qname), pgn)
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
|
|
|
|
2020-09-06 03:43:15 +08:00
|
|
|
// ListActive returns all tasks that are currently being processed for the given queue.
|
|
|
|
func (r *RDB) ListActive(qname string, pgn Pagination) ([]*base.TaskMessage, error) {
|
2020-08-21 21:00:49 +08:00
|
|
|
if !r.client.SIsMember(base.AllQueues, qname).Val() {
|
|
|
|
return nil, fmt.Errorf("queue %q does not exist", qname)
|
|
|
|
}
|
2020-09-06 03:43:15 +08:00
|
|
|
return r.listMessages(base.ActiveKey(qname), pgn)
|
2020-07-13 21:29:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// listMessages returns a list of TaskMessage in Redis list with the given key.
|
|
|
|
func (r *RDB) listMessages(key string, pgn Pagination) ([]*base.TaskMessage, error) {
|
2020-01-24 23:19:58 +08:00
|
|
|
// Note: Because we use LPUSH to redis list, we need to calculate the
|
|
|
|
// correct range and reverse the list to get the tasks with pagination.
|
|
|
|
stop := -pgn.start() - 1
|
|
|
|
start := -pgn.stop() - 1
|
2020-07-13 21:29:41 +08:00
|
|
|
data, err := r.client.LRange(key, start, stop).Result()
|
2019-12-05 12:30:37 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-24 23:19:58 +08:00
|
|
|
reverse(data)
|
2020-07-13 21:29:41 +08:00
|
|
|
var msgs []*base.TaskMessage
|
2019-12-05 12:30:37 +08:00
|
|
|
for _, s := range data {
|
2020-07-13 21:29:41 +08:00
|
|
|
m, err := base.DecodeMessage(s)
|
2019-12-05 12:30:37 +08:00
|
|
|
if err != nil {
|
|
|
|
continue // bad data, ignore and continue
|
|
|
|
}
|
2020-07-13 21:29:41 +08:00
|
|
|
msgs = append(msgs, m)
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
2020-07-13 21:29:41 +08:00
|
|
|
return msgs, nil
|
|
|
|
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
|
|
|
|
2020-08-12 21:18:15 +08:00
|
|
|
// ListScheduled returns all tasks from the given queue that are scheduled
|
|
|
|
// to be processed in the future.
|
|
|
|
func (r *RDB) ListScheduled(qname string, pgn Pagination) ([]base.Z, error) {
|
2020-08-21 21:00:49 +08:00
|
|
|
if !r.client.SIsMember(base.AllQueues, qname).Val() {
|
|
|
|
return nil, fmt.Errorf("queue %q does not exist", qname)
|
|
|
|
}
|
2020-08-12 21:18:15 +08:00
|
|
|
return r.listZSetEntries(base.ScheduledKey(qname), pgn)
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
|
|
|
|
2020-08-12 21:18:15 +08:00
|
|
|
// ListRetry returns all tasks from the given queue that have failed before
|
|
|
|
// and willl be retried in the future.
|
|
|
|
func (r *RDB) ListRetry(qname string, pgn Pagination) ([]base.Z, error) {
|
2020-08-21 21:00:49 +08:00
|
|
|
if !r.client.SIsMember(base.AllQueues, qname).Val() {
|
|
|
|
return nil, fmt.Errorf("queue %q does not exist", qname)
|
|
|
|
}
|
2020-08-12 21:18:15 +08:00
|
|
|
return r.listZSetEntries(base.RetryKey(qname), pgn)
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
|
|
|
|
2020-08-12 21:18:15 +08:00
|
|
|
// ListDead returns all tasks from the given queue that have exhausted its retry limit.
|
|
|
|
func (r *RDB) ListDead(qname string, pgn Pagination) ([]base.Z, error) {
|
2020-08-21 21:00:49 +08:00
|
|
|
if !r.client.SIsMember(base.AllQueues, qname).Val() {
|
|
|
|
return nil, fmt.Errorf("queue %q does not exist", qname)
|
|
|
|
}
|
2020-08-12 21:18:15 +08:00
|
|
|
return r.listZSetEntries(base.DeadKey(qname), pgn)
|
2020-07-13 21:29:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// listZSetEntries returns a list of message and score pairs in Redis sorted-set
|
|
|
|
// with the given key.
|
|
|
|
func (r *RDB) listZSetEntries(key string, pgn Pagination) ([]base.Z, error) {
|
|
|
|
data, err := r.client.ZRangeWithScores(key, pgn.start(), pgn.stop()).Result()
|
2019-12-05 12:30:37 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-07-13 21:29:41 +08:00
|
|
|
var res []base.Z
|
2019-12-05 12:30:37 +08:00
|
|
|
for _, z := range data {
|
|
|
|
s, ok := z.Member.(string)
|
|
|
|
if !ok {
|
|
|
|
continue // bad data, ignore and continue
|
|
|
|
}
|
2020-07-13 21:29:41 +08:00
|
|
|
msg, err := base.DecodeMessage(s)
|
2019-12-05 12:30:37 +08:00
|
|
|
if err != nil {
|
|
|
|
continue // bad data, ignore and continue
|
|
|
|
}
|
2020-07-13 21:29:41 +08:00
|
|
|
res = append(res, base.Z{msg, int64(z.Score)})
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
2020-07-13 21:29:41 +08:00
|
|
|
return res, nil
|
2019-12-05 12:30:37 +08:00
|
|
|
}
|
2019-12-08 22:46:04 +08:00
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
// RunDeadTask finds a dead task that matches the given id and score from
|
2020-08-13 21:54:32 +08:00
|
|
|
// the given queue and enqueues it for processing.
|
|
|
|
//If a task that matches the id and score does not exist, it returns ErrTaskNotFound.
|
2020-09-06 04:35:52 +08:00
|
|
|
func (r *RDB) RunDeadTask(qname string, id uuid.UUID, score int64) error {
|
|
|
|
n, err := r.removeAndRun(base.DeadKey(qname), base.QueueKey(qname), id.String(), float64(score))
|
2019-12-08 22:46:04 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return ErrTaskNotFound
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
// RunRetryTask finds a retry task that matches the given id and score from
|
2020-08-13 21:54:32 +08:00
|
|
|
// the given queue and enqueues it for processing.
|
|
|
|
// If a task that matches the id and score does not exist, it returns ErrTaskNotFound.
|
2020-09-06 04:35:52 +08:00
|
|
|
func (r *RDB) RunRetryTask(qname string, id uuid.UUID, score int64) error {
|
|
|
|
n, err := r.removeAndRun(base.RetryKey(qname), base.QueueKey(qname), id.String(), float64(score))
|
2019-12-08 22:46:04 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return ErrTaskNotFound
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
// RunScheduledTask finds a scheduled task that matches the given id and score from
|
2020-08-13 21:54:32 +08:00
|
|
|
// from the given queue and enqueues it for processing.
|
|
|
|
// If a task that matches the id and score does not exist, it returns ErrTaskNotFound.
|
2020-09-06 04:35:52 +08:00
|
|
|
func (r *RDB) RunScheduledTask(qname string, id uuid.UUID, score int64) error {
|
|
|
|
n, err := r.removeAndRun(base.ScheduledKey(qname), base.QueueKey(qname), id.String(), float64(score))
|
2019-12-08 22:46:04 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return ErrTaskNotFound
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
// RunAllScheduledTasks enqueues all scheduled tasks from the given queue
|
2019-12-11 13:38:25 +08:00
|
|
|
// and returns the number of tasks enqueued.
|
2020-09-06 04:35:52 +08:00
|
|
|
func (r *RDB) RunAllScheduledTasks(qname string) (int64, error) {
|
|
|
|
return r.removeAndRunAll(base.ScheduledKey(qname), base.QueueKey(qname))
|
2019-12-11 12:28:31 +08:00
|
|
|
}
|
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
// RunAllRetryTasks enqueues all retry tasks from the given queue
|
2019-12-11 13:38:25 +08:00
|
|
|
// and returns the number of tasks enqueued.
|
2020-09-06 04:35:52 +08:00
|
|
|
func (r *RDB) RunAllRetryTasks(qname string) (int64, error) {
|
|
|
|
return r.removeAndRunAll(base.RetryKey(qname), base.QueueKey(qname))
|
2019-12-11 12:28:31 +08:00
|
|
|
}
|
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
// RunAllDeadTasks enqueues all tasks from dead queue
|
2019-12-11 13:38:25 +08:00
|
|
|
// and returns the number of tasks enqueued.
|
2020-09-06 04:35:52 +08:00
|
|
|
func (r *RDB) RunAllDeadTasks(qname string) (int64, error) {
|
|
|
|
return r.removeAndRunAll(base.DeadKey(qname), base.QueueKey(qname))
|
2019-12-11 12:28:31 +08:00
|
|
|
}
|
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
var removeAndRunCmd = redis.NewScript(`
|
2020-02-09 03:06:14 +08:00
|
|
|
local msgs = redis.call("ZRANGEBYSCORE", KEYS[1], ARGV[1], ARGV[1])
|
|
|
|
for _, msg in ipairs(msgs) do
|
|
|
|
local decoded = cjson.decode(msg)
|
|
|
|
if decoded["ID"] == ARGV[2] then
|
2020-08-13 21:54:32 +08:00
|
|
|
redis.call("LPUSH", KEYS[2], msg)
|
2020-02-09 03:06:14 +08:00
|
|
|
redis.call("ZREM", KEYS[1], msg)
|
|
|
|
return 1
|
2019-12-08 22:46:04 +08:00
|
|
|
end
|
2020-02-09 03:06:14 +08:00
|
|
|
end
|
|
|
|
return 0`)
|
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
func (r *RDB) removeAndRun(zset, qkey, id string, score float64) (int64, error) {
|
|
|
|
res, err := removeAndRunCmd.Run(r.client, []string{zset, qkey}, score, id).Result()
|
2019-12-08 22:46:04 +08:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
n, ok := res.(int64)
|
|
|
|
if !ok {
|
|
|
|
return 0, fmt.Errorf("could not cast %v to int64", res)
|
|
|
|
}
|
|
|
|
return n, nil
|
|
|
|
}
|
2019-12-11 12:28:31 +08:00
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
var removeAndRunAllCmd = redis.NewScript(`
|
2020-02-09 03:06:14 +08:00
|
|
|
local msgs = redis.call("ZRANGE", KEYS[1], 0, -1)
|
|
|
|
for _, msg in ipairs(msgs) do
|
2020-08-13 21:54:32 +08:00
|
|
|
redis.call("LPUSH", KEYS[2], msg)
|
2020-02-09 03:06:14 +08:00
|
|
|
redis.call("ZREM", KEYS[1], msg)
|
|
|
|
end
|
|
|
|
return table.getn(msgs)`)
|
|
|
|
|
2020-09-06 04:35:52 +08:00
|
|
|
func (r *RDB) removeAndRunAll(zset, qkey string) (int64, error) {
|
|
|
|
res, err := removeAndRunAllCmd.Run(r.client, []string{zset, qkey}).Result()
|
2019-12-11 12:28:31 +08:00
|
|
|
if err != nil {
|
2019-12-11 13:38:25 +08:00
|
|
|
return 0, err
|
2019-12-11 12:28:31 +08:00
|
|
|
}
|
2019-12-11 13:38:25 +08:00
|
|
|
n, ok := res.(int64)
|
|
|
|
if !ok {
|
|
|
|
return 0, fmt.Errorf("could not cast %v to int64", res)
|
|
|
|
}
|
|
|
|
return n, nil
|
2019-12-26 23:17:26 +08:00
|
|
|
}
|
|
|
|
|
2020-08-15 21:38:33 +08:00
|
|
|
// KillRetryTask finds a retry task that matches the given id and score from the given queue
|
|
|
|
// and kills it. If a task that maches the id and score does not exist, it returns ErrTaskNotFound.
|
|
|
|
func (r *RDB) KillRetryTask(qname string, id uuid.UUID, score int64) error {
|
|
|
|
n, err := r.removeAndKill(base.RetryKey(qname), base.DeadKey(qname), id.String(), float64(score))
|
2019-12-26 23:17:26 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return ErrTaskNotFound
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-15 21:38:33 +08:00
|
|
|
// KillScheduledTask finds a scheduled task that matches the given id and score from the given queue
|
|
|
|
// and kills it. If a task that maches the id and score does not exist, it returns ErrTaskNotFound.
|
|
|
|
func (r *RDB) KillScheduledTask(qname string, id uuid.UUID, score int64) error {
|
|
|
|
n, err := r.removeAndKill(base.ScheduledKey(qname), base.DeadKey(qname), id.String(), float64(score))
|
2019-12-26 23:17:26 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return ErrTaskNotFound
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-15 21:38:33 +08:00
|
|
|
// KillAllRetryTasks kills all retry tasks from the given queue and
|
2019-12-27 22:22:33 +08:00
|
|
|
// returns the number of tasks that were moved.
|
2020-08-15 21:38:33 +08:00
|
|
|
func (r *RDB) KillAllRetryTasks(qname string) (int64, error) {
|
|
|
|
return r.removeAndKillAll(base.RetryKey(qname), base.DeadKey(qname))
|
2019-12-27 22:22:33 +08:00
|
|
|
}
|
|
|
|
|
2020-08-15 21:38:33 +08:00
|
|
|
// KillAllScheduledTasks kills all scheduled tasks from the given queue and
|
2019-12-27 22:22:33 +08:00
|
|
|
// returns the number of tasks that were moved.
|
2020-08-15 21:38:33 +08:00
|
|
|
func (r *RDB) KillAllScheduledTasks(qname string) (int64, error) {
|
|
|
|
return r.removeAndKillAll(base.ScheduledKey(qname), base.DeadKey(qname))
|
2019-12-27 22:22:33 +08:00
|
|
|
}
|
|
|
|
|
2020-02-09 03:06:14 +08:00
|
|
|
// KEYS[1] -> ZSET to move task from (e.g., retry queue)
|
2020-08-15 21:38:33 +08:00
|
|
|
// KEYS[2] -> asynq:{<qname>}:dead
|
2020-02-09 03:06:14 +08:00
|
|
|
// ARGV[1] -> score of the task to kill
|
|
|
|
// ARGV[2] -> id of the task to kill
|
|
|
|
// ARGV[3] -> current timestamp
|
|
|
|
// ARGV[4] -> cutoff timestamp (e.g., 90 days ago)
|
|
|
|
// ARGV[5] -> max number of tasks in dead queue (e.g., 100)
|
|
|
|
var removeAndKillCmd = redis.NewScript(`
|
|
|
|
local msgs = redis.call("ZRANGEBYSCORE", KEYS[1], ARGV[1], ARGV[1])
|
|
|
|
for _, msg in ipairs(msgs) do
|
|
|
|
local decoded = cjson.decode(msg)
|
|
|
|
if decoded["ID"] == ARGV[2] then
|
|
|
|
redis.call("ZREM", KEYS[1], msg)
|
|
|
|
redis.call("ZADD", KEYS[2], ARGV[3], msg)
|
|
|
|
redis.call("ZREMRANGEBYSCORE", KEYS[2], "-inf", ARGV[4])
|
|
|
|
redis.call("ZREMRANGEBYRANK", KEYS[2], 0, -ARGV[5])
|
|
|
|
return 1
|
2019-12-26 23:17:26 +08:00
|
|
|
end
|
2020-02-09 03:06:14 +08:00
|
|
|
end
|
|
|
|
return 0`)
|
|
|
|
|
2020-08-15 21:38:33 +08:00
|
|
|
func (r *RDB) removeAndKill(src, dst, id string, score float64) (int64, error) {
|
2019-12-26 23:17:26 +08:00
|
|
|
now := time.Now()
|
|
|
|
limit := now.AddDate(0, 0, -deadExpirationInDays).Unix() // 90 days ago
|
2020-02-09 03:06:14 +08:00
|
|
|
res, err := removeAndKillCmd.Run(r.client,
|
2020-08-15 21:38:33 +08:00
|
|
|
[]string{src, dst},
|
2019-12-26 23:17:26 +08:00
|
|
|
score, id, now.Unix(), limit, maxDeadTasks).Result()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
n, ok := res.(int64)
|
|
|
|
if !ok {
|
|
|
|
return 0, fmt.Errorf("could not cast %v to int64", res)
|
|
|
|
}
|
|
|
|
return n, nil
|
2019-12-27 22:22:33 +08:00
|
|
|
}
|
|
|
|
|
2020-02-09 03:06:14 +08:00
|
|
|
// KEYS[1] -> ZSET to move task from (e.g., retry queue)
|
2020-08-15 21:38:33 +08:00
|
|
|
// KEYS[2] -> asynq:{<qname>}:dead
|
2020-02-09 03:06:14 +08:00
|
|
|
// ARGV[1] -> current timestamp
|
|
|
|
// ARGV[2] -> cutoff timestamp (e.g., 90 days ago)
|
|
|
|
// ARGV[3] -> max number of tasks in dead queue (e.g., 100)
|
|
|
|
var removeAndKillAllCmd = redis.NewScript(`
|
|
|
|
local msgs = redis.call("ZRANGE", KEYS[1], 0, -1)
|
|
|
|
for _, msg in ipairs(msgs) do
|
|
|
|
redis.call("ZADD", KEYS[2], ARGV[1], msg)
|
|
|
|
redis.call("ZREM", KEYS[1], msg)
|
|
|
|
redis.call("ZREMRANGEBYSCORE", KEYS[2], "-inf", ARGV[2])
|
|
|
|
redis.call("ZREMRANGEBYRANK", KEYS[2], 0, -ARGV[3])
|
|
|
|
end
|
|
|
|
return table.getn(msgs)`)
|
|
|
|
|
2020-08-15 21:38:33 +08:00
|
|
|
func (r *RDB) removeAndKillAll(src, dst string) (int64, error) {
|
2019-12-27 22:22:33 +08:00
|
|
|
now := time.Now()
|
|
|
|
limit := now.AddDate(0, 0, -deadExpirationInDays).Unix() // 90 days ago
|
2020-08-15 21:38:33 +08:00
|
|
|
res, err := removeAndKillAllCmd.Run(r.client, []string{src, dst},
|
2019-12-27 22:22:33 +08:00
|
|
|
now.Unix(), limit, maxDeadTasks).Result()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
n, ok := res.(int64)
|
|
|
|
if !ok {
|
|
|
|
return 0, fmt.Errorf("could not cast %v to int64", res)
|
|
|
|
}
|
|
|
|
return n, nil
|
2019-12-11 12:28:31 +08:00
|
|
|
}
|
2019-12-12 11:56:19 +08:00
|
|
|
|
2020-08-16 04:04:26 +08:00
|
|
|
// DeleteDeadTask deletes a dead task that matches the given id and score from the given queue.
|
|
|
|
// If a task that matches the id and score does not exist, it returns ErrTaskNotFound.
|
|
|
|
func (r *RDB) DeleteDeadTask(qname string, id uuid.UUID, score int64) error {
|
|
|
|
return r.deleteTask(base.DeadKey(qname), id.String(), float64(score))
|
2019-12-12 11:56:19 +08:00
|
|
|
}
|
|
|
|
|
2020-08-16 04:04:26 +08:00
|
|
|
// DeleteRetryTask deletes a retry task that matches the given id and score from the given queue.
|
|
|
|
// If a task that matches the id and score does not exist, it returns ErrTaskNotFound.
|
|
|
|
func (r *RDB) DeleteRetryTask(qname string, id uuid.UUID, score int64) error {
|
|
|
|
return r.deleteTask(base.RetryKey(qname), id.String(), float64(score))
|
2019-12-12 11:56:19 +08:00
|
|
|
}
|
|
|
|
|
2020-08-16 04:04:26 +08:00
|
|
|
// DeleteScheduledTask deletes a scheduled task that matches the given id and score from the given queue.
|
|
|
|
// If a task that matches the id and score does not exist, it returns ErrTaskNotFound.
|
|
|
|
func (r *RDB) DeleteScheduledTask(qname string, id uuid.UUID, score int64) error {
|
|
|
|
return r.deleteTask(base.ScheduledKey(qname), id.String(), float64(score))
|
2019-12-12 11:56:19 +08:00
|
|
|
}
|
|
|
|
|
2020-02-09 03:06:14 +08:00
|
|
|
var deleteTaskCmd = redis.NewScript(`
|
|
|
|
local msgs = redis.call("ZRANGEBYSCORE", KEYS[1], ARGV[1], ARGV[1])
|
|
|
|
for _, msg in ipairs(msgs) do
|
|
|
|
local decoded = cjson.decode(msg)
|
|
|
|
if decoded["ID"] == ARGV[2] then
|
|
|
|
redis.call("ZREM", KEYS[1], msg)
|
|
|
|
return 1
|
2019-12-12 11:56:19 +08:00
|
|
|
end
|
2020-02-09 03:06:14 +08:00
|
|
|
end
|
|
|
|
return 0`)
|
|
|
|
|
2020-08-16 04:04:26 +08:00
|
|
|
func (r *RDB) deleteTask(key, id string, score float64) error {
|
|
|
|
res, err := deleteTaskCmd.Run(r.client, []string{key}, score, id).Result()
|
2019-12-12 11:56:19 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
n, ok := res.(int64)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("could not cast %v to int64", res)
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return ErrTaskNotFound
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2019-12-12 22:38:01 +08:00
|
|
|
|
2020-07-13 21:29:41 +08:00
|
|
|
// KEYS[1] -> queue to delete
|
|
|
|
var deleteAllCmd = redis.NewScript(`
|
|
|
|
local n = redis.call("ZCARD", KEYS[1])
|
|
|
|
redis.call("DEL", KEYS[1])
|
|
|
|
return n`)
|
|
|
|
|
2020-08-16 04:04:26 +08:00
|
|
|
// DeleteAllDeadTasks deletes all dead tasks from the given queue
|
2020-07-13 21:29:41 +08:00
|
|
|
// and returns the number of tasks deleted.
|
2020-08-16 04:04:26 +08:00
|
|
|
func (r *RDB) DeleteAllDeadTasks(qname string) (int64, error) {
|
|
|
|
return r.deleteAll(base.DeadKey(qname))
|
2020-07-13 21:29:41 +08:00
|
|
|
}
|
|
|
|
|
2020-08-16 04:04:26 +08:00
|
|
|
// DeleteAllRetryTasks deletes all retry tasks from the given queue
|
2020-07-13 21:29:41 +08:00
|
|
|
// and returns the number of tasks deleted.
|
2020-08-16 04:04:26 +08:00
|
|
|
func (r *RDB) DeleteAllRetryTasks(qname string) (int64, error) {
|
|
|
|
return r.deleteAll(base.RetryKey(qname))
|
2019-12-12 22:38:01 +08:00
|
|
|
}
|
|
|
|
|
2020-08-16 04:04:26 +08:00
|
|
|
// DeleteAllScheduledTasks deletes all scheduled tasks from the given queue
|
2020-07-13 21:29:41 +08:00
|
|
|
// and returns the number of tasks deleted.
|
2020-08-16 04:04:26 +08:00
|
|
|
func (r *RDB) DeleteAllScheduledTasks(qname string) (int64, error) {
|
|
|
|
return r.deleteAll(base.ScheduledKey(qname))
|
2019-12-12 22:38:01 +08:00
|
|
|
}
|
|
|
|
|
2020-07-13 21:29:41 +08:00
|
|
|
func (r *RDB) deleteAll(key string) (int64, error) {
|
|
|
|
res, err := deleteAllCmd.Run(r.client, []string{key}).Result()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
n, ok := res.(int64)
|
|
|
|
if !ok {
|
|
|
|
return 0, fmt.Errorf("could not cast %v to int64", res)
|
|
|
|
}
|
|
|
|
return n, nil
|
2019-12-12 22:38:01 +08:00
|
|
|
}
|
2020-01-13 22:50:03 +08:00
|
|
|
|
2020-01-13 23:03:07 +08:00
|
|
|
// ErrQueueNotFound indicates specified queue does not exist.
|
|
|
|
type ErrQueueNotFound struct {
|
|
|
|
qname string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *ErrQueueNotFound) Error() string {
|
|
|
|
return fmt.Sprintf("queue %q does not exist", e.qname)
|
|
|
|
}
|
|
|
|
|
2020-08-21 21:00:49 +08:00
|
|
|
// ErrQueueNotEmpty indicates specified queue is not empty.
|
|
|
|
type ErrQueueNotEmpty struct {
|
|
|
|
qname string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *ErrQueueNotEmpty) Error() string {
|
|
|
|
return fmt.Sprintf("queue %q is not empty", e.qname)
|
|
|
|
}
|
|
|
|
|
2020-09-06 03:43:15 +08:00
|
|
|
// Only check whether active queue is empty before removing.
|
2020-08-20 21:59:10 +08:00
|
|
|
// KEYS[1] -> asynq:{<qname>}
|
2020-09-06 03:43:15 +08:00
|
|
|
// KEYS[2] -> asynq:{<qname>}:active
|
2020-08-20 21:59:10 +08:00
|
|
|
// KEYS[3] -> asynq:{<qname>}:scheduled
|
|
|
|
// KEYS[4] -> asynq:{<qname>}:retry
|
|
|
|
// KEYS[5] -> asynq:{<qname>}:dead
|
|
|
|
// KEYS[6] -> asynq:{<qname>}:deadlines
|
2020-02-09 03:06:14 +08:00
|
|
|
var removeQueueForceCmd = redis.NewScript(`
|
2020-09-06 03:43:15 +08:00
|
|
|
local active = redis.call("LLEN", KEYS[2])
|
|
|
|
if active > 0 then
|
|
|
|
return redis.error_reply("Queue has tasks active")
|
2020-02-09 03:06:14 +08:00
|
|
|
end
|
2020-08-20 21:59:10 +08:00
|
|
|
redis.call("DEL", KEYS[1])
|
2020-02-09 03:06:14 +08:00
|
|
|
redis.call("DEL", KEYS[2])
|
2020-08-20 21:59:10 +08:00
|
|
|
redis.call("DEL", KEYS[3])
|
|
|
|
redis.call("DEL", KEYS[4])
|
|
|
|
redis.call("DEL", KEYS[5])
|
|
|
|
redis.call("DEL", KEYS[6])
|
2020-02-09 03:06:14 +08:00
|
|
|
return redis.status_reply("OK")`)
|
|
|
|
|
|
|
|
// Checks whether queue is empty before removing.
|
2020-08-20 21:59:10 +08:00
|
|
|
// KEYS[1] -> asynq:{<qname>}
|
2020-09-06 03:43:15 +08:00
|
|
|
// KEYS[2] -> asynq:{<qname>}:active
|
2020-08-20 21:59:10 +08:00
|
|
|
// KEYS[3] -> asynq:{<qname>}:scheduled
|
|
|
|
// KEYS[4] -> asynq:{<qname>}:retry
|
|
|
|
// KEYS[5] -> asynq:{<qname>}:dead
|
|
|
|
// KEYS[6] -> asynq:{<qname>}:deadlines
|
2020-02-09 03:06:14 +08:00
|
|
|
var removeQueueCmd = redis.NewScript(`
|
2020-09-05 22:03:43 +08:00
|
|
|
local pending = redis.call("LLEN", KEYS[1])
|
2020-09-06 03:43:15 +08:00
|
|
|
local active = redis.call("LLEN", KEYS[2])
|
2020-08-20 21:59:10 +08:00
|
|
|
local scheduled = redis.call("SCARD", KEYS[3])
|
|
|
|
local retry = redis.call("SCARD", KEYS[4])
|
|
|
|
local dead = redis.call("SCARD", KEYS[5])
|
2020-09-06 03:43:15 +08:00
|
|
|
local total = pending + active + scheduled + retry + dead
|
2020-08-20 21:59:10 +08:00
|
|
|
if total > 0 then
|
2020-08-21 21:00:49 +08:00
|
|
|
return redis.error_reply("QUEUE NOT EMPTY")
|
2020-02-09 03:06:14 +08:00
|
|
|
end
|
2020-08-20 21:59:10 +08:00
|
|
|
redis.call("DEL", KEYS[1])
|
2020-02-09 03:06:14 +08:00
|
|
|
redis.call("DEL", KEYS[2])
|
2020-08-20 21:59:10 +08:00
|
|
|
redis.call("DEL", KEYS[3])
|
|
|
|
redis.call("DEL", KEYS[4])
|
|
|
|
redis.call("DEL", KEYS[5])
|
|
|
|
redis.call("DEL", KEYS[6])
|
2020-02-09 03:06:14 +08:00
|
|
|
return redis.status_reply("OK")`)
|
|
|
|
|
2020-01-13 23:03:07 +08:00
|
|
|
// RemoveQueue removes the specified queue.
|
|
|
|
//
|
|
|
|
// If force is set to true, it will remove the queue regardless
|
2020-09-06 03:43:15 +08:00
|
|
|
// as long as no tasks are active for the queue.
|
2020-01-13 23:03:07 +08:00
|
|
|
// If force is set to false, it will only remove the queue if
|
2020-08-20 21:59:10 +08:00
|
|
|
// the queue is empty.
|
2020-01-13 23:03:07 +08:00
|
|
|
func (r *RDB) RemoveQueue(qname string, force bool) error {
|
2020-08-20 21:59:10 +08:00
|
|
|
exists, err := r.client.SIsMember(base.AllQueues, qname).Result()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !exists {
|
|
|
|
return &ErrQueueNotFound{qname}
|
|
|
|
}
|
2020-01-13 23:03:07 +08:00
|
|
|
var script *redis.Script
|
|
|
|
if force {
|
2020-02-09 03:06:14 +08:00
|
|
|
script = removeQueueForceCmd
|
2020-01-13 23:03:07 +08:00
|
|
|
} else {
|
2020-02-09 03:06:14 +08:00
|
|
|
script = removeQueueCmd
|
2020-01-13 23:03:07 +08:00
|
|
|
}
|
2020-08-20 21:59:10 +08:00
|
|
|
keys := []string{
|
|
|
|
base.QueueKey(qname),
|
2020-09-06 03:43:15 +08:00
|
|
|
base.ActiveKey(qname),
|
2020-08-20 21:59:10 +08:00
|
|
|
base.ScheduledKey(qname),
|
|
|
|
base.RetryKey(qname),
|
|
|
|
base.DeadKey(qname),
|
|
|
|
base.DeadlinesKey(qname),
|
2020-01-13 23:03:07 +08:00
|
|
|
}
|
2020-08-20 21:59:10 +08:00
|
|
|
if err := script.Run(r.client, keys).Err(); err != nil {
|
2020-08-21 21:00:49 +08:00
|
|
|
if err.Error() == "QUEUE NOT EMPTY" {
|
|
|
|
return &ErrQueueNotEmpty{qname}
|
|
|
|
} else {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-20 21:59:10 +08:00
|
|
|
}
|
2020-08-21 21:00:49 +08:00
|
|
|
|
2020-08-20 21:59:10 +08:00
|
|
|
return r.client.SRem(base.AllQueues, qname).Err()
|
2020-01-13 22:50:03 +08:00
|
|
|
}
|
2020-02-02 14:22:48 +08:00
|
|
|
|
2020-02-09 03:06:14 +08:00
|
|
|
// Note: Script also removes stale keys.
|
2020-08-18 21:30:15 +08:00
|
|
|
var listServerKeysCmd = redis.NewScript(`
|
2020-02-09 03:06:14 +08:00
|
|
|
local now = tonumber(ARGV[1])
|
|
|
|
local keys = redis.call("ZRANGEBYSCORE", KEYS[1], now, "+inf")
|
|
|
|
redis.call("ZREMRANGEBYSCORE", KEYS[1], "-inf", now-1)
|
2020-08-18 21:30:15 +08:00
|
|
|
return keys`)
|
2020-02-09 03:06:14 +08:00
|
|
|
|
2020-04-13 23:14:55 +08:00
|
|
|
// ListServers returns the list of server info.
|
2020-04-13 08:09:58 +08:00
|
|
|
func (r *RDB) ListServers() ([]*base.ServerInfo, error) {
|
2020-09-27 08:33:29 +08:00
|
|
|
now := time.Now()
|
2020-08-18 21:30:15 +08:00
|
|
|
res, err := listServerKeysCmd.Run(r.client, []string{base.AllServers}, now.Unix()).Result()
|
2020-02-02 14:22:48 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-18 21:30:15 +08:00
|
|
|
keys, err := cast.ToStringSliceE(res)
|
2020-02-02 14:22:48 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-04-13 08:09:58 +08:00
|
|
|
var servers []*base.ServerInfo
|
2020-08-18 21:30:15 +08:00
|
|
|
for _, key := range keys {
|
|
|
|
data, err := r.client.Get(key).Result()
|
2020-02-02 14:22:48 +08:00
|
|
|
if err != nil {
|
|
|
|
continue // skip bad data
|
|
|
|
}
|
2020-08-18 21:30:15 +08:00
|
|
|
var info base.ServerInfo
|
|
|
|
if err := json.Unmarshal([]byte(data), &info); err != nil {
|
|
|
|
continue // skip bad data
|
|
|
|
}
|
2020-04-13 08:09:58 +08:00
|
|
|
servers = append(servers, &info)
|
2020-02-02 14:22:48 +08:00
|
|
|
}
|
2020-04-13 08:09:58 +08:00
|
|
|
return servers, nil
|
2020-02-02 14:22:48 +08:00
|
|
|
}
|
2020-02-23 12:42:53 +08:00
|
|
|
|
|
|
|
// Note: Script also removes stale keys.
|
2020-08-18 21:30:15 +08:00
|
|
|
var listWorkerKeysCmd = redis.NewScript(`
|
2020-02-23 12:42:53 +08:00
|
|
|
local now = tonumber(ARGV[1])
|
|
|
|
local keys = redis.call("ZRANGEBYSCORE", KEYS[1], now, "+inf")
|
|
|
|
redis.call("ZREMRANGEBYSCORE", KEYS[1], "-inf", now-1)
|
2020-08-18 21:30:15 +08:00
|
|
|
return keys`)
|
2020-02-23 12:42:53 +08:00
|
|
|
|
|
|
|
// ListWorkers returns the list of worker stats.
|
|
|
|
func (r *RDB) ListWorkers() ([]*base.WorkerInfo, error) {
|
2020-09-27 08:33:29 +08:00
|
|
|
now := time.Now()
|
2020-08-18 21:30:15 +08:00
|
|
|
res, err := listWorkerKeysCmd.Run(r.client, []string{base.AllWorkers}, now.Unix()).Result()
|
2020-02-23 12:42:53 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-18 21:30:15 +08:00
|
|
|
keys, err := cast.ToStringSliceE(res)
|
2020-02-23 12:42:53 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var workers []*base.WorkerInfo
|
2020-08-18 21:30:15 +08:00
|
|
|
for _, key := range keys {
|
|
|
|
data, err := r.client.HVals(key).Result()
|
2020-02-23 12:42:53 +08:00
|
|
|
if err != nil {
|
|
|
|
continue // skip bad data
|
|
|
|
}
|
2020-08-18 21:30:15 +08:00
|
|
|
for _, s := range data {
|
|
|
|
var w base.WorkerInfo
|
|
|
|
if err := json.Unmarshal([]byte(s), &w); err != nil {
|
|
|
|
continue // skip bad data
|
|
|
|
}
|
|
|
|
workers = append(workers, &w)
|
|
|
|
|
|
|
|
}
|
2020-02-23 12:42:53 +08:00
|
|
|
}
|
|
|
|
return workers, nil
|
|
|
|
}
|
2020-06-03 21:44:12 +08:00
|
|
|
|
2020-09-27 08:33:29 +08:00
|
|
|
// Note: Script also removes stale keys.
|
|
|
|
var listSchedulerKeysCmd = redis.NewScript(`
|
|
|
|
local now = tonumber(ARGV[1])
|
|
|
|
local keys = redis.call("ZRANGEBYSCORE", KEYS[1], now, "+inf")
|
|
|
|
redis.call("ZREMRANGEBYSCORE", KEYS[1], "-inf", now-1)
|
|
|
|
return keys`)
|
|
|
|
|
|
|
|
// ListSchedulerEntries returns the list of scheduler entries.
|
|
|
|
func (r *RDB) ListSchedulerEntries() ([]*base.SchedulerEntry, error) {
|
|
|
|
now := time.Now()
|
|
|
|
res, err := listSchedulerKeysCmd.Run(r.client, []string{base.AllSchedulers}, now.Unix()).Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
keys, err := cast.ToStringSliceE(res)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var entries []*base.SchedulerEntry
|
|
|
|
for _, key := range keys {
|
|
|
|
data, err := r.client.LRange(key, 0, -1).Result()
|
|
|
|
if err != nil {
|
|
|
|
continue // skip bad data
|
|
|
|
}
|
|
|
|
for _, s := range data {
|
|
|
|
var e base.SchedulerEntry
|
|
|
|
if err := json.Unmarshal([]byte(s), &e); err != nil {
|
|
|
|
continue // skip bad data
|
|
|
|
}
|
|
|
|
entries = append(entries, &e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return entries, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListSchedulerEnqueueEvents returns the list of scheduler enqueue events.
|
|
|
|
func (r *RDB) ListSchedulerEnqueueEvents(entryID string) ([]*base.SchedulerEnqueueEvent, error) {
|
|
|
|
key := base.SchedulerHistoryKey(entryID)
|
|
|
|
zs, err := r.client.ZRangeWithScores(key, 0, -1).Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var events []*base.SchedulerEnqueueEvent
|
|
|
|
for _, z := range zs {
|
|
|
|
data, err := cast.ToStringE(z.Member)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var e base.SchedulerEnqueueEvent
|
|
|
|
if err := json.Unmarshal([]byte(data), &e); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
events = append(events, &e)
|
|
|
|
}
|
|
|
|
return events, nil
|
|
|
|
}
|
|
|
|
|
2020-06-03 21:44:12 +08:00
|
|
|
// Pause pauses processing of tasks from the given queue.
|
|
|
|
func (r *RDB) Pause(qname string) error {
|
2020-08-13 21:54:32 +08:00
|
|
|
key := base.PausedKey(qname)
|
|
|
|
ok, err := r.client.SetNX(key, time.Now().Unix(), 0).Result()
|
2020-08-12 12:36:49 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-13 21:54:32 +08:00
|
|
|
if !ok {
|
2020-08-12 12:36:49 +08:00
|
|
|
return fmt.Errorf("queue %q is already paused", qname)
|
|
|
|
}
|
|
|
|
return nil
|
2020-06-03 21:44:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unpause resumes processing of tasks from the given queue.
|
|
|
|
func (r *RDB) Unpause(qname string) error {
|
2020-08-13 21:54:32 +08:00
|
|
|
key := base.PausedKey(qname)
|
2020-08-12 12:36:49 +08:00
|
|
|
deleted, err := r.client.Del(key).Result()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if deleted == 0 {
|
|
|
|
return fmt.Errorf("queue %q is not paused", qname)
|
|
|
|
}
|
|
|
|
return nil
|
2020-06-03 21:44:12 +08:00
|
|
|
}
|
2020-09-01 21:57:08 +08:00
|
|
|
|
|
|
|
// ClusterKeySlot returns an integer identifying the hash slot the given queue hashes to.
|
|
|
|
func (r *RDB) ClusterKeySlot(qname string) (int64, error) {
|
|
|
|
key := base.QueueKey(qname)
|
|
|
|
return r.client.ClusterKeySlot(key).Result()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClusterNodes returns a list of nodes the given queue belongs to.
|
|
|
|
func (r *RDB) ClusterNodes(qname string) ([]redis.ClusterNode, error) {
|
|
|
|
keyslot, err := r.ClusterKeySlot(qname)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
clusterSlots, err := r.client.ClusterSlots().Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, slotRange := range clusterSlots {
|
|
|
|
if int64(slotRange.Start) <= keyslot && keyslot <= int64(slotRange.End) {
|
|
|
|
return slotRange.Nodes, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("nodes not found")
|
|
|
|
}
|