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 (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/rs/xid"
|
|
|
|
)
|
2019-12-22 23:15:45 +08:00
|
|
|
|
|
|
|
// Redis keys
|
|
|
|
const (
|
2019-12-23 21:33:48 +08:00
|
|
|
processedPrefix = "asynq:processed:" // STRING - asynq:processed:<yyyy-mm-dd>
|
|
|
|
failurePrefix = "asynq:failure:" // STRING - asynq:failure:<yyyy-mm-dd>
|
|
|
|
QueuePrefix = "asynq:queues:" // LIST - asynq:queues:<qname>
|
2019-12-22 23:15:45 +08:00
|
|
|
DefaultQueue = QueuePrefix + "default" // LIST
|
|
|
|
ScheduledQueue = "asynq:scheduled" // ZSET
|
|
|
|
RetryQueue = "asynq:retry" // ZSET
|
|
|
|
DeadQueue = "asynq:dead" // ZSET
|
|
|
|
InProgressQueue = "asynq:in_progress" // LIST
|
|
|
|
)
|
|
|
|
|
2019-12-23 21:33:48 +08:00
|
|
|
// ProcessedKey returns a redis key string for procesed count
|
|
|
|
// for the given day.
|
|
|
|
func ProcessedKey(t time.Time) string {
|
|
|
|
return processedPrefix + t.UTC().Format("2006-01-02")
|
|
|
|
}
|
|
|
|
|
|
|
|
// FailureKey returns a redis key string for failure count
|
|
|
|
// for the given day.
|
|
|
|
func FailureKey(t time.Time) string {
|
|
|
|
return failurePrefix + t.UTC().Format("2006-01-02")
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|