mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-10 11:31:58 +08:00
144 lines
3.8 KiB
Go
144 lines
3.8 KiB
Go
// 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.
|
|
|
|
package asynq
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"fmt"
|
|
|
|
"github.com/go-redis/redis/v7"
|
|
)
|
|
|
|
// Task represents a task to be performed.
|
|
type Task struct {
|
|
// Type indicates the type of task to be performed.
|
|
Type string
|
|
|
|
// Payload holds data needed to perform the task.
|
|
Payload Payload
|
|
}
|
|
|
|
// NewTask returns a new Task. The typename and payload argument set Type
|
|
// and Payload field respectively.
|
|
//
|
|
// The payload must be serializable to JSON.
|
|
func NewTask(typename string, payload map[string]interface{}) *Task {
|
|
return &Task{
|
|
Type: typename,
|
|
Payload: Payload{payload},
|
|
}
|
|
}
|
|
|
|
// RedisConnOpt is a discriminated union of redis-client-option types.
|
|
//
|
|
// RedisConnOpt represents a sum of following types:
|
|
//
|
|
// RedisClientOpt | *RedisClientOpt | RedisFailoverClientOpt | *RedisFailoverClientOpt
|
|
//
|
|
// Passing unexpected type to a RedisConnOpt variable can cause panic.
|
|
type RedisConnOpt interface{}
|
|
|
|
// RedisClientOpt is used to create a redis client that connects
|
|
// to a redis server directly.
|
|
type RedisClientOpt struct {
|
|
// Network type to use, either tcp or unix.
|
|
// Default is tcp.
|
|
Network string
|
|
|
|
// Redis server address in "host:port" format.
|
|
Addr string
|
|
|
|
// Redis server password.
|
|
Password string
|
|
|
|
// Redis DB to select after connecting to the server.
|
|
// See: https://redis.io/commands/select.
|
|
DB int
|
|
|
|
// Maximum number of socket connections.
|
|
// Default is 10 connections per every CPU as reported by runtime.NumCPU.
|
|
PoolSize int
|
|
|
|
// TLS Config used to connect to the server.
|
|
// TLS will be negotiated only if this field is set.
|
|
TLSConfig *tls.Config
|
|
}
|
|
|
|
// RedisFailoverClientOpt is used to creates a redis client that talks
|
|
// to redis sentinels for service discovery and has automatic failover
|
|
// capability.
|
|
type RedisFailoverClientOpt struct {
|
|
// Redis master name that monitored by sentinels.
|
|
MasterName string
|
|
|
|
// Addresses of sentinels in "host:port" format.
|
|
// Use at least three sentinels to avoid problems described in
|
|
// https://redis.io/topics/sentinel.
|
|
SentinelAddrs []string
|
|
|
|
// Redis sentinel password.
|
|
SentinelPassword string
|
|
|
|
// Redis server password.
|
|
Password string
|
|
|
|
// Redis DB to select after connecting to the server.
|
|
// See: https://redis.io/commands/select.
|
|
DB int
|
|
|
|
// Maximum number of socket connections.
|
|
// Default is 10 connections per every CPU as reported by runtime.NumCPU.
|
|
PoolSize int
|
|
|
|
// TLS Config used to connect to the server.
|
|
// TLS will be negotiated only if this field is set.
|
|
TLSConfig *tls.Config
|
|
}
|
|
|
|
func createRedisClient(r RedisConnOpt) *redis.Client {
|
|
switch r := r.(type) {
|
|
case *RedisClientOpt:
|
|
return redis.NewClient(&redis.Options{
|
|
Network: r.Network,
|
|
Addr: r.Addr,
|
|
Password: r.Password,
|
|
DB: r.DB,
|
|
PoolSize: r.PoolSize,
|
|
TLSConfig: r.TLSConfig,
|
|
})
|
|
case RedisClientOpt:
|
|
return redis.NewClient(&redis.Options{
|
|
Network: r.Network,
|
|
Addr: r.Addr,
|
|
Password: r.Password,
|
|
DB: r.DB,
|
|
PoolSize: r.PoolSize,
|
|
TLSConfig: r.TLSConfig,
|
|
})
|
|
case *RedisFailoverClientOpt:
|
|
return redis.NewFailoverClient(&redis.FailoverOptions{
|
|
MasterName: r.MasterName,
|
|
SentinelAddrs: r.SentinelAddrs,
|
|
SentinelPassword: r.SentinelPassword,
|
|
Password: r.Password,
|
|
DB: r.DB,
|
|
PoolSize: r.PoolSize,
|
|
TLSConfig: r.TLSConfig,
|
|
})
|
|
case RedisFailoverClientOpt:
|
|
return redis.NewFailoverClient(&redis.FailoverOptions{
|
|
MasterName: r.MasterName,
|
|
SentinelAddrs: r.SentinelAddrs,
|
|
SentinelPassword: r.SentinelPassword,
|
|
Password: r.Password,
|
|
DB: r.DB,
|
|
PoolSize: r.PoolSize,
|
|
TLSConfig: r.TLSConfig,
|
|
})
|
|
default:
|
|
panic(fmt.Sprintf("unexpected type %T for RedisConnOpt", r))
|
|
}
|
|
}
|