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-11-15 13:07:19 +08:00
|
|
|
package asynq
|
|
|
|
|
2020-01-15 13:19:06 +08:00
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"fmt"
|
2020-03-26 22:31:08 +08:00
|
|
|
"net/url"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2021-03-25 07:44:33 +08:00
|
|
|
"time"
|
2020-01-15 13:19:06 +08:00
|
|
|
|
|
|
|
"github.com/go-redis/redis/v7"
|
|
|
|
)
|
2019-11-17 06:45:51 +08:00
|
|
|
|
2020-02-07 12:46:59 +08:00
|
|
|
// Task represents a unit of work to be performed.
|
2019-11-15 13:07:19 +08:00
|
|
|
type Task struct {
|
2021-03-21 04:42:13 +08:00
|
|
|
// typename indicates the type of task to be performed.
|
|
|
|
typename string
|
2019-11-17 06:45:51 +08:00
|
|
|
|
2021-03-21 04:42:13 +08:00
|
|
|
// payload holds data needed to perform the task.
|
|
|
|
payload []byte
|
2019-11-15 13:07:19 +08:00
|
|
|
}
|
2020-01-05 05:13:46 +08:00
|
|
|
|
2021-03-21 04:42:13 +08:00
|
|
|
func (t *Task) Type() string { return t.typename }
|
|
|
|
func (t *Task) Payload() []byte { return t.payload }
|
|
|
|
|
2020-02-07 12:46:59 +08:00
|
|
|
// NewTask returns a new Task given a type name and payload data.
|
2021-03-21 04:42:13 +08:00
|
|
|
func NewTask(typename string, payload []byte) *Task {
|
2020-01-05 05:13:46 +08:00
|
|
|
return &Task{
|
2021-03-21 04:42:13 +08:00
|
|
|
typename: typename,
|
|
|
|
payload: payload,
|
2020-01-05 05:13:46 +08:00
|
|
|
}
|
|
|
|
}
|
2020-01-15 13:19:06 +08:00
|
|
|
|
2020-02-07 12:46:59 +08:00
|
|
|
// RedisConnOpt is a discriminated union of types that represent Redis connection configuration option.
|
2020-01-15 13:19:06 +08:00
|
|
|
//
|
|
|
|
// RedisConnOpt represents a sum of following types:
|
2020-01-17 11:50:45 +08:00
|
|
|
//
|
2020-08-28 20:40:16 +08:00
|
|
|
// - RedisClientOpt
|
|
|
|
// - RedisFailoverClientOpt
|
|
|
|
// - RedisClusterClientOpt
|
2021-01-29 22:37:35 +08:00
|
|
|
type RedisConnOpt interface {
|
|
|
|
// MakeRedisClient returns a new redis client instance.
|
|
|
|
// Return value is intentionally opaque to hide the implementation detail of redis client.
|
|
|
|
MakeRedisClient() interface{}
|
|
|
|
}
|
2020-01-15 13:19:06 +08:00
|
|
|
|
2020-01-17 11:50:45 +08:00
|
|
|
// RedisClientOpt is used to create a redis client that connects
|
|
|
|
// to a redis server directly.
|
2020-01-15 13:19:06 +08:00
|
|
|
type RedisClientOpt struct {
|
|
|
|
// Network type to use, either tcp or unix.
|
|
|
|
// Default is tcp.
|
|
|
|
Network string
|
|
|
|
|
2020-01-17 11:50:45 +08:00
|
|
|
// Redis server address in "host:port" format.
|
2020-01-15 13:19:06 +08:00
|
|
|
Addr string
|
|
|
|
|
2020-09-08 20:51:05 +08:00
|
|
|
// Username to authenticate the current connection when Redis ACLs are used.
|
|
|
|
// See: https://redis.io/commands/auth.
|
|
|
|
Username string
|
|
|
|
|
|
|
|
// Password to authenticate the current connection.
|
|
|
|
// See: https://redis.io/commands/auth.
|
2020-01-15 13:19:06 +08:00
|
|
|
Password string
|
|
|
|
|
2020-02-07 12:46:59 +08:00
|
|
|
// Redis DB to select after connecting to a server.
|
2020-01-15 13:19:06 +08:00
|
|
|
// See: https://redis.io/commands/select.
|
|
|
|
DB int
|
|
|
|
|
2021-03-25 07:44:33 +08:00
|
|
|
// Dial timeout for establishing new connections.
|
|
|
|
// Default is 5 seconds.
|
|
|
|
DialTimeout time.Duration
|
|
|
|
|
|
|
|
// Timeout for socket reads.
|
|
|
|
// If timeout is reached, read commands will fail with a timeout error
|
|
|
|
// instead of blocking.
|
|
|
|
//
|
|
|
|
// Use value -1 for no timeout and 0 for default.
|
|
|
|
// Default is 3 seconds.
|
|
|
|
ReadTimeout time.Duration
|
|
|
|
|
|
|
|
// Timeout for socket writes.
|
|
|
|
// If timeout is reached, write commands will fail with a timeout error
|
|
|
|
// instead of blocking.
|
|
|
|
//
|
|
|
|
// Use value -1 for no timeout and 0 for default.
|
|
|
|
// Default is ReadTimout.
|
|
|
|
WriteTimeout time.Duration
|
|
|
|
|
2020-01-15 13:19:06 +08:00
|
|
|
// Maximum number of socket connections.
|
|
|
|
// Default is 10 connections per every CPU as reported by runtime.NumCPU.
|
|
|
|
PoolSize int
|
|
|
|
|
2020-02-07 12:46:59 +08:00
|
|
|
// TLS Config used to connect to a server.
|
2020-01-15 13:19:06 +08:00
|
|
|
// TLS will be negotiated only if this field is set.
|
|
|
|
TLSConfig *tls.Config
|
|
|
|
}
|
|
|
|
|
2021-01-29 22:37:35 +08:00
|
|
|
func (opt RedisClientOpt) MakeRedisClient() interface{} {
|
|
|
|
return redis.NewClient(&redis.Options{
|
2021-03-25 07:44:33 +08:00
|
|
|
Network: opt.Network,
|
|
|
|
Addr: opt.Addr,
|
|
|
|
Username: opt.Username,
|
|
|
|
Password: opt.Password,
|
|
|
|
DB: opt.DB,
|
|
|
|
DialTimeout: opt.DialTimeout,
|
|
|
|
ReadTimeout: opt.ReadTimeout,
|
|
|
|
WriteTimeout: opt.WriteTimeout,
|
|
|
|
PoolSize: opt.PoolSize,
|
|
|
|
TLSConfig: opt.TLSConfig,
|
2021-01-29 22:37:35 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-01-17 11:50:45 +08:00
|
|
|
// RedisFailoverClientOpt is used to creates a redis client that talks
|
2020-02-07 12:46:59 +08:00
|
|
|
// to redis sentinels for service discovery and has an automatic failover
|
2020-01-17 11:50:45 +08:00
|
|
|
// capability.
|
2020-01-15 13:19:06 +08:00
|
|
|
type RedisFailoverClientOpt struct {
|
|
|
|
// Redis master name that monitored by sentinels.
|
|
|
|
MasterName string
|
|
|
|
|
2020-01-17 11:50:45 +08:00
|
|
|
// Addresses of sentinels in "host:port" format.
|
2020-01-15 13:19:06 +08:00
|
|
|
// Use at least three sentinels to avoid problems described in
|
|
|
|
// https://redis.io/topics/sentinel.
|
|
|
|
SentinelAddrs []string
|
|
|
|
|
|
|
|
// Redis sentinel password.
|
|
|
|
SentinelPassword string
|
|
|
|
|
2020-09-08 20:51:05 +08:00
|
|
|
// Username to authenticate the current connection when Redis ACLs are used.
|
|
|
|
// See: https://redis.io/commands/auth.
|
|
|
|
Username string
|
|
|
|
|
|
|
|
// Password to authenticate the current connection.
|
|
|
|
// See: https://redis.io/commands/auth.
|
2020-01-15 13:19:06 +08:00
|
|
|
Password string
|
|
|
|
|
2020-02-07 12:46:59 +08:00
|
|
|
// Redis DB to select after connecting to a server.
|
2020-01-15 13:19:06 +08:00
|
|
|
// See: https://redis.io/commands/select.
|
|
|
|
DB int
|
|
|
|
|
2021-03-25 07:44:33 +08:00
|
|
|
// Dial timeout for establishing new connections.
|
|
|
|
// Default is 5 seconds.
|
|
|
|
DialTimeout time.Duration
|
|
|
|
|
|
|
|
// Timeout for socket reads.
|
|
|
|
// If timeout is reached, read commands will fail with a timeout error
|
|
|
|
// instead of blocking.
|
|
|
|
//
|
|
|
|
// Use value -1 for no timeout and 0 for default.
|
|
|
|
// Default is 3 seconds.
|
|
|
|
ReadTimeout time.Duration
|
|
|
|
|
|
|
|
// Timeout for socket writes.
|
|
|
|
// If timeout is reached, write commands will fail with a timeout error
|
|
|
|
// instead of blocking.
|
|
|
|
//
|
|
|
|
// Use value -1 for no timeout and 0 for default.
|
|
|
|
// Default is ReadTimeout
|
|
|
|
WriteTimeout time.Duration
|
|
|
|
|
2020-01-15 13:19:06 +08:00
|
|
|
// Maximum number of socket connections.
|
|
|
|
// Default is 10 connections per every CPU as reported by runtime.NumCPU.
|
|
|
|
PoolSize int
|
|
|
|
|
2020-02-07 12:46:59 +08:00
|
|
|
// TLS Config used to connect to a server.
|
2020-01-15 13:19:06 +08:00
|
|
|
// TLS will be negotiated only if this field is set.
|
|
|
|
TLSConfig *tls.Config
|
|
|
|
}
|
|
|
|
|
2021-01-29 22:37:35 +08:00
|
|
|
func (opt RedisFailoverClientOpt) MakeRedisClient() interface{} {
|
|
|
|
return redis.NewFailoverClient(&redis.FailoverOptions{
|
|
|
|
MasterName: opt.MasterName,
|
|
|
|
SentinelAddrs: opt.SentinelAddrs,
|
|
|
|
SentinelPassword: opt.SentinelPassword,
|
|
|
|
Username: opt.Username,
|
|
|
|
Password: opt.Password,
|
|
|
|
DB: opt.DB,
|
2021-03-25 07:44:33 +08:00
|
|
|
DialTimeout: opt.DialTimeout,
|
|
|
|
ReadTimeout: opt.ReadTimeout,
|
|
|
|
WriteTimeout: opt.WriteTimeout,
|
2021-01-29 22:37:35 +08:00
|
|
|
PoolSize: opt.PoolSize,
|
|
|
|
TLSConfig: opt.TLSConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-06 06:28:22 +08:00
|
|
|
// RedisClusterClientOpt is used to creates a redis client that connects to
|
2020-08-28 20:40:16 +08:00
|
|
|
// redis cluster.
|
|
|
|
type RedisClusterClientOpt struct {
|
|
|
|
// A seed list of host:port addresses of cluster nodes.
|
|
|
|
Addrs []string
|
|
|
|
|
2020-09-08 20:56:45 +08:00
|
|
|
// The maximum number of retries before giving up.
|
|
|
|
// Command is retried on network errors and MOVED/ASK redirects.
|
|
|
|
// Default is 8 retries.
|
|
|
|
MaxRedirects int
|
|
|
|
|
2020-09-08 20:51:05 +08:00
|
|
|
// Username to authenticate the current connection when Redis ACLs are used.
|
|
|
|
// See: https://redis.io/commands/auth.
|
|
|
|
Username string
|
|
|
|
|
|
|
|
// Password to authenticate the current connection.
|
|
|
|
// See: https://redis.io/commands/auth.
|
2020-08-28 20:40:16 +08:00
|
|
|
Password string
|
|
|
|
|
2021-03-25 07:44:33 +08:00
|
|
|
// Dial timeout for establishing new connections.
|
|
|
|
// Default is 5 seconds.
|
|
|
|
DialTimeout time.Duration
|
|
|
|
|
|
|
|
// Timeout for socket reads.
|
|
|
|
// If timeout is reached, read commands will fail with a timeout error
|
|
|
|
// instead of blocking.
|
|
|
|
//
|
|
|
|
// Use value -1 for no timeout and 0 for default.
|
|
|
|
// Default is 3 seconds.
|
|
|
|
ReadTimeout time.Duration
|
|
|
|
|
|
|
|
// Timeout for socket writes.
|
|
|
|
// If timeout is reached, write commands will fail with a timeout error
|
|
|
|
// instead of blocking.
|
|
|
|
//
|
|
|
|
// Use value -1 for no timeout and 0 for default.
|
|
|
|
// Default is ReadTimeout.
|
|
|
|
WriteTimeout time.Duration
|
|
|
|
|
2020-08-28 20:40:16 +08:00
|
|
|
// TLS Config used to connect to a server.
|
|
|
|
// TLS will be negotiated only if this field is set.
|
|
|
|
TLSConfig *tls.Config
|
|
|
|
}
|
|
|
|
|
2021-01-29 22:37:35 +08:00
|
|
|
func (opt RedisClusterClientOpt) MakeRedisClient() interface{} {
|
|
|
|
return redis.NewClusterClient(&redis.ClusterOptions{
|
|
|
|
Addrs: opt.Addrs,
|
|
|
|
MaxRedirects: opt.MaxRedirects,
|
|
|
|
Username: opt.Username,
|
|
|
|
Password: opt.Password,
|
2021-03-25 07:44:33 +08:00
|
|
|
DialTimeout: opt.DialTimeout,
|
|
|
|
ReadTimeout: opt.ReadTimeout,
|
|
|
|
WriteTimeout: opt.WriteTimeout,
|
2021-01-29 22:37:35 +08:00
|
|
|
TLSConfig: opt.TLSConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-03-26 22:31:08 +08:00
|
|
|
// ParseRedisURI parses redis uri string and returns RedisConnOpt if uri is valid.
|
|
|
|
// It returns a non-nil error if uri cannot be parsed.
|
|
|
|
//
|
|
|
|
// Three URI schemes are supported, which are redis:, redis-socket:, and redis-sentinel:.
|
|
|
|
// Supported formats are:
|
|
|
|
// redis://[:password@]host[:port][/dbnumber]
|
|
|
|
// redis-socket://[:password@]path[?db=dbnumber]
|
|
|
|
// redis-sentinel://[:password@]host1[:port][,host2:[:port]][,hostN:[:port]][?master=masterName]
|
|
|
|
func ParseRedisURI(uri string) (RedisConnOpt, error) {
|
|
|
|
u, err := url.Parse(uri)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("asynq: could not parse redis uri: %v", err)
|
|
|
|
}
|
|
|
|
switch u.Scheme {
|
|
|
|
case "redis":
|
|
|
|
return parseRedisURI(u)
|
|
|
|
case "redis-socket":
|
|
|
|
return parseRedisSocketURI(u)
|
|
|
|
case "redis-sentinel":
|
|
|
|
return parseRedisSentinelURI(u)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("asynq: unsupported uri scheme: %q", u.Scheme)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseRedisURI(u *url.URL) (RedisConnOpt, error) {
|
|
|
|
var db int
|
|
|
|
var err error
|
|
|
|
if len(u.Path) > 0 {
|
|
|
|
xs := strings.Split(strings.Trim(u.Path, "/"), "/")
|
|
|
|
db, err = strconv.Atoi(xs[0])
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("asynq: could not parse redis uri: database number should be the first segment of the path")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var password string
|
|
|
|
if v, ok := u.User.Password(); ok {
|
|
|
|
password = v
|
|
|
|
}
|
|
|
|
return RedisClientOpt{Addr: u.Host, DB: db, Password: password}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseRedisSocketURI(u *url.URL) (RedisConnOpt, error) {
|
|
|
|
const errPrefix = "asynq: could not parse redis socket uri"
|
|
|
|
if len(u.Path) == 0 {
|
|
|
|
return nil, fmt.Errorf("%s: path does not exist", errPrefix)
|
|
|
|
}
|
|
|
|
q := u.Query()
|
|
|
|
var db int
|
|
|
|
var err error
|
|
|
|
if n := q.Get("db"); n != "" {
|
|
|
|
db, err = strconv.Atoi(n)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%s: query param `db` should be a number", errPrefix)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var password string
|
|
|
|
if v, ok := u.User.Password(); ok {
|
|
|
|
password = v
|
|
|
|
}
|
|
|
|
return RedisClientOpt{Network: "unix", Addr: u.Path, DB: db, Password: password}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseRedisSentinelURI(u *url.URL) (RedisConnOpt, error) {
|
|
|
|
addrs := strings.Split(u.Host, ",")
|
|
|
|
master := u.Query().Get("master")
|
|
|
|
var password string
|
|
|
|
if v, ok := u.User.Password(); ok {
|
|
|
|
password = v
|
|
|
|
}
|
|
|
|
return RedisFailoverClientOpt{MasterName: master, SentinelAddrs: addrs, Password: password}, nil
|
|
|
|
}
|