Documentation
¶
Index ¶
- Variables
- type BackoffCalculator
- type BackoffStrategy
- type Client
- func (c *Client) AddPeriodicSchedule(schedule *PeriodicSchedule) error
- func (c *Client) DeadJobs(page uint) ([]*DeadJob, int64, error)
- func (c *Client) DeleteAllDeadJobs() error
- func (c *Client) DeleteDeadJob(diedAt int64, jobID string) error
- func (c *Client) DeletePeriodicSchedule(name string) error
- func (c *Client) DeleteRetryJob(retryAt int64, jobID string) error
- func (c *Client) DeleteScheduledJob(scheduledFor int64, jobID string) error
- func (c *Client) DisablePeriodicSchedule(name string) error
- func (c *Client) EnablePeriodicSchedule(name string) error
- func (c *Client) HistoryCount() (int64, error)
- func (c *Client) HistoryJobByID(jobID string) (*HistoryJob, error)
- func (c *Client) HistoryJobs(page uint, jobName string) ([]*HistoryJob, int64, error)
- func (c *Client) PeriodicSchedules() ([]*PeriodicSchedule, error)
- func (c *Client) Queues() ([]*Queue, error)
- func (c *Client) RedisInfo() (*RedisStats, error)
- func (c *Client) RetryAllDeadJobs() error
- func (c *Client) RetryDeadJob(diedAt int64, jobID string) error
- func (c *Client) RetryJobs(page uint) ([]*RetryJob, int64, error)
- func (c *Client) ScheduledJobs(page uint) ([]*ScheduledJob, int64, error)
- func (c *Client) WorkerObservations() ([]*WorkerObservation, error)
- func (c *Client) WorkerPoolHeartbeats() ([]*WorkerPoolHeartbeat, error)
- type DeadJob
- type EnqueueOptions
- type Enqueuer
- func (e *Enqueuer) Enqueue(jobName string, args map[string]interface{}) (*Job, error)
- func (e *Enqueuer) EnqueueIn(jobName string, secondsFromNow int64, args map[string]interface{}) (*ScheduledJob, error)
- func (e *Enqueuer) EnqueueUnique(jobName string, args map[string]interface{}) (*Job, error)
- func (e *Enqueuer) EnqueueUniqueByKey(jobName string, args map[string]interface{}, keyMap map[string]interface{}) (*Job, error)
- func (e *Enqueuer) EnqueueUniqueIn(jobName string, secondsFromNow int64, args map[string]interface{}) (*ScheduledJob, error)
- func (e *Enqueuer) EnqueueUniqueInByKey(jobName string, secondsFromNow int64, args map[string]interface{}, ...) (*ScheduledJob, error)
- func (e *Enqueuer) EnqueueWithOptions(jobName string, args map[string]interface{}, opts EnqueueOptions) (*Job, error)
- type GenericHandler
- type GenericMiddlewareHandler
- type HistoryJob
- type Job
- type JobOptions
- type NextMiddlewareFunc
- type PeriodicSchedule
- type Q
- type Queue
- type RedisStats
- type RetryJob
- type RetryOptions
- type ScheduledJob
- type WorkerObservation
- type WorkerPool
- func (wp *WorkerPool) Daily(jobName string, hour, minute int) *WorkerPool
- func (wp *WorkerPool) Drain()
- func (wp *WorkerPool) Every(jobName string, d time.Duration) *WorkerPool
- func (wp *WorkerPool) Hourly(jobName string, minute int) *WorkerPool
- func (wp *WorkerPool) Job(name string, fn interface{}) *WorkerPool
- func (wp *WorkerPool) JobWithOptions(name string, jobOpts JobOptions, fn interface{}) *WorkerPool
- func (wp *WorkerPool) Middleware(fn interface{}) *WorkerPool
- func (wp *WorkerPool) PeriodicallyEnqueue(spec string, jobName string) *WorkerPool
- func (wp *WorkerPool) PeriodicallyEnqueueWithArgs(spec string, jobName string, args map[string]interface{}) *WorkerPool
- func (wp *WorkerPool) Start()
- func (wp *WorkerPool) Stop()
- type WorkerPoolHeartbeat
- type WorkerPoolOptions
Constants ¶
This section is empty.
Variables ¶
var ErrNotDeleted = fmt.Errorf("nothing deleted")
ErrNotDeleted is returned by functions that delete jobs to indicate that although the redis commands were successful, no object was actually deleted by those commmands.
var ErrNotRetried = fmt.Errorf("nothing retried")
ErrNotRetried is returned by functions that retry jobs to indicate that although the redis commands were successful, no object was actually retried by those commmands.
Functions ¶
This section is empty.
Types ¶
type BackoffCalculator ¶
You may provide your own backoff function for retrying failed jobs or use the builtin one. Returns the number of seconds to wait until the next attempt.
The builtin backoff calculator provides an exponentially increasing wait function.
func ExponentialBackoff ¶
func ExponentialBackoff() BackoffCalculator
ExponentialBackoff returns the default exponential backoff calculator.
func FixedBackoff ¶
func FixedBackoff(seconds int64) BackoffCalculator
FixedBackoff returns a BackoffCalculator that always waits the specified number of seconds.
func LinearBackoff ¶
func LinearBackoff(baseSeconds int64) BackoffCalculator
LinearBackoff returns a BackoffCalculator that waits baseSeconds * failCount.
type BackoffStrategy ¶
type BackoffStrategy int
BackoffStrategy defines predefined backoff strategies for retrying failed jobs.
const ( // BackoffExponential uses the default quartic polynomial backoff with jitter. BackoffExponential BackoffStrategy = iota // BackoffLinear uses a linear backoff: baseDelay * failCount. BackoffLinear // BackoffFixed uses a constant delay between retries. BackoffFixed )
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client implements all of the functionality of the web UI. It can be used to inspect the status of a running cluster and retry dead jobs.
func NewClient ¶
NewClient creates a new Client with the specified redis namespace and connection pool.
func (*Client) AddPeriodicSchedule ¶
func (c *Client) AddPeriodicSchedule(schedule *PeriodicSchedule) error
AddPeriodicSchedule adds or updates a named periodic schedule in Redis. The schedule will be picked up by the periodic enqueuer on its next cycle.
func (*Client) DeadJobs ¶
DeadJobs returns a list of DeadJob's. The page param is 1-based; each page is 20 items. The total number of items (not pages) in the list of dead jobs is also returned.
func (*Client) DeleteAllDeadJobs ¶
DeleteAllDeadJobs deletes all dead jobs.
func (*Client) DeleteDeadJob ¶
DeleteDeadJob deletes a dead job from Redis.
func (*Client) DeletePeriodicSchedule ¶
DeletePeriodicSchedule removes a named periodic schedule from Redis.
func (*Client) DeleteRetryJob ¶
DeleteRetryJob deletes a job in the retry queue.
func (*Client) DeleteScheduledJob ¶
DeleteScheduledJob deletes a job in the scheduled queue.
func (*Client) DisablePeriodicSchedule ¶
DisablePeriodicSchedule disables a schedule without removing it.
func (*Client) EnablePeriodicSchedule ¶
EnablePeriodicSchedule enables a previously disabled schedule.
func (*Client) HistoryCount ¶
HistoryCount returns the total number of entries in the history.
func (*Client) HistoryJobByID ¶
func (c *Client) HistoryJobByID(jobID string) (*HistoryJob, error)
HistoryJobByID looks up a single history entry by job ID using the index HASH.
func (*Client) HistoryJobs ¶
HistoryJobs returns a paginated list of history entries, newest first. If jobName is non-empty, it filters to only that job name using the per-name secondary index.
func (*Client) PeriodicSchedules ¶
func (c *Client) PeriodicSchedules() ([]*PeriodicSchedule, error)
PeriodicSchedules returns all periodic schedules stored in Redis.
func (*Client) RedisInfo ¶
func (c *Client) RedisInfo() (*RedisStats, error)
RedisInfo executes the Redis INFO command and returns parsed server metrics.
func (*Client) RetryAllDeadJobs ¶
RetryAllDeadJobs requeues all dead jobs. In other words, it puts them all back on the normal work queue for workers to pull from and process.
func (*Client) RetryDeadJob ¶
RetryDeadJob retries a dead job. The job will be re-queued on the normal work queue for eventual processing by a worker.
func (*Client) RetryJobs ¶
RetryJobs returns a list of RetryJob's. The page param is 1-based; each page is 20 items. The total number of items (not pages) in the list of retry jobs is also returned.
func (*Client) ScheduledJobs ¶
func (c *Client) ScheduledJobs(page uint) ([]*ScheduledJob, int64, error)
ScheduledJobs returns a list of ScheduledJob's. The page param is 1-based; each page is 20 items. The total number of items (not pages) in the list of scheduled jobs is also returned.
func (*Client) WorkerObservations ¶
func (c *Client) WorkerObservations() ([]*WorkerObservation, error)
WorkerObservations returns all of the WorkerObservation's it finds for all worker pools' workers.
func (*Client) WorkerPoolHeartbeats ¶
func (c *Client) WorkerPoolHeartbeats() ([]*WorkerPoolHeartbeat, error)
WorkerPoolHeartbeats queries Redis and returns all WorkerPoolHeartbeat's it finds (even for those worker pools which don't have a current heartbeat).
type EnqueueOptions ¶
type EnqueueOptions struct {
// Delay specifies how long to wait before the job becomes eligible for processing.
// Zero means the job is processed immediately.
Delay time.Duration
// Retry configures per-job retry behavior. If nil, the job type defaults are used.
Retry *RetryOptions
// Unique ensures only one job with this name and arguments is enqueued at a time.
Unique bool
// UniqueKey provides a custom key map for uniqueness checks.
// If nil and Unique is true, the job arguments are used as the key.
UniqueKey map[string]interface{}
}
EnqueueOptions combines all options for enqueuing a job.
type Enqueuer ¶
type Enqueuer struct {
Namespace string // eg, "myapp-work"
Pool *redis.Pool
// contains filtered or unexported fields
}
Enqueuer can enqueue jobs.
func NewEnqueuer ¶
NewEnqueuer creates a new enqueuer with the specified Redis namespace and Redis pool.
func (*Enqueuer) Enqueue ¶
Enqueue will enqueue the specified job name and arguments. The args param can be nil if no args ar needed. Example: e.Enqueue("send_email", work.Q{"addr": "[email protected]"})
func (*Enqueuer) EnqueueIn ¶
func (e *Enqueuer) EnqueueIn(jobName string, secondsFromNow int64, args map[string]interface{}) (*ScheduledJob, error)
EnqueueIn enqueues a job in the scheduled job queue for execution in secondsFromNow seconds.
func (*Enqueuer) EnqueueUnique ¶
EnqueueUnique enqueues a job unless a job is already enqueued with the same name and arguments. The already-enqueued job can be in the normal work queue or in the scheduled job queue. Once a worker begins processing a job, another job with the same name and arguments can be enqueued again. Any failed jobs in the retry queue or dead queue don't count against the uniqueness -- so if a job fails and is retried, two unique jobs with the same name and arguments can be enqueued at once. In order to add robustness to the system, jobs are only unique for 24 hours after they're enqueued. This is mostly relevant for scheduled jobs. EnqueueUnique returns the job if it was enqueued and nil if it wasn't
func (*Enqueuer) EnqueueUniqueByKey ¶
func (e *Enqueuer) EnqueueUniqueByKey(jobName string, args map[string]interface{}, keyMap map[string]interface{}) (*Job, error)
EnqueueUniqueByKey enqueues a job unless a job is already enqueued with the same name and key, updating arguments. The already-enqueued job can be in the normal work queue or in the scheduled job queue. Once a worker begins processing a job, another job with the same name and key can be enqueued again. Any failed jobs in the retry queue or dead queue don't count against the uniqueness -- so if a job fails and is retried, two unique jobs with the same name and arguments can be enqueued at once. In order to add robustness to the system, jobs are only unique for 24 hours after they're enqueued. This is mostly relevant for scheduled jobs. EnqueueUniqueByKey returns the job if it was enqueued and nil if it wasn't
func (*Enqueuer) EnqueueUniqueIn ¶
func (e *Enqueuer) EnqueueUniqueIn(jobName string, secondsFromNow int64, args map[string]interface{}) (*ScheduledJob, error)
EnqueueUniqueIn enqueues a unique job in the scheduled job queue for execution in secondsFromNow seconds. See EnqueueUnique for the semantics of unique jobs.
func (*Enqueuer) EnqueueUniqueInByKey ¶
func (e *Enqueuer) EnqueueUniqueInByKey(jobName string, secondsFromNow int64, args map[string]interface{}, keyMap map[string]interface{}) (*ScheduledJob, error)
EnqueueUniqueInByKey enqueues a job in the scheduled job queue that is unique on specified key for execution in secondsFromNow seconds. See EnqueueUnique for the semantics of unique jobs. Subsequent calls with same key will update arguments
func (*Enqueuer) EnqueueWithOptions ¶
func (e *Enqueuer) EnqueueWithOptions(jobName string, args map[string]interface{}, opts EnqueueOptions) (*Job, error)
EnqueueWithOptions enqueues a job with full configuration control. It supports delayed execution, per-job retry configuration, and uniqueness.
type GenericHandler ¶
GenericHandler is a job handler without any custom context.
type GenericMiddlewareHandler ¶
type GenericMiddlewareHandler func(*Job, NextMiddlewareFunc) error
GenericMiddlewareHandler is a middleware without any custom context.
type HistoryJob ¶
type HistoryJob struct {
CompletedAt int64 `json:"completed_at"`
Status string `json:"status"` // "success", "retry", "dead"
*Job
}
HistoryJob represents a completed job in the history log.
type Job ¶
type Job struct {
// Inputs when making a new job
Name string `json:"name,omitempty"`
ID string `json:"id"`
EnqueuedAt int64 `json:"t"`
Args map[string]interface{} `json:"args"`
Unique bool `json:"unique,omitempty"`
UniqueKey string `json:"unique_key,omitempty"`
// Inputs when retrying
Fails int64 `json:"fails,omitempty"` // number of times this job has failed
LastErr string `json:"err,omitempty"`
FailedAt int64 `json:"failed_at,omitempty"`
// Per-job retry configuration (set at enqueue time, optional).
// When nil, the job type defaults from the WorkerPool are used.
MaxRetries *int64 `json:"max_retries,omitempty"`
BackoffBase *int64 `json:"backoff_base,omitempty"`
BackoffType *int `json:"backoff_type,omitempty"` // 0=exponential, 1=linear, 2=fixed
// contains filtered or unexported fields
}
Job represents a job.
func (*Job) ArgBool ¶
ArgBool returns j.Args[key] typed to a bool. If the key is missing or of the wrong type, it sets an argument error on the job. This function is meant to be used in the body of a job handling function while extracting arguments, followed by a single call to j.ArgError().
func (*Job) ArgError ¶
ArgError returns the last error generated when extracting typed params. Returns nil if extracting the args went fine.
func (*Job) ArgFloat64 ¶
ArgFloat64 returns j.Args[key] typed to a float64. If the key is missing or of the wrong type, it sets an argument error on the job. This function is meant to be used in the body of a job handling function while extracting arguments, followed by a single call to j.ArgError().
func (*Job) ArgInt64 ¶
ArgInt64 returns j.Args[key] typed to an int64. If the key is missing or of the wrong type, it sets an argument error on the job. This function is meant to be used in the body of a job handling function while extracting arguments, followed by a single call to j.ArgError().
func (*Job) ArgString ¶
ArgString returns j.Args[key] typed to a string. If the key is missing or of the wrong type, it sets an argument error on the job. This function is meant to be used in the body of a job handling function while extracting arguments, followed by a single call to j.ArgError().
func (*Job) Checkin ¶
Checkin will update the status of the executing job to the specified messages. This message is visible within the web UI. This is useful for indicating some sort of progress on very long running jobs. For instance, on a job that has to process a million records over the course of an hour, the job could call Checkin with the current job number every 10k jobs.
type JobOptions ¶
type JobOptions struct {
Priority uint // Priority from 1 to 10000
MaxFails uint // 1: send straight to dead (unless SkipDead)
SkipDead bool // If true, don't send failed jobs to the dead queue when retries are exhausted.
MaxConcurrency uint // Max number of jobs to keep in flight (default is 0, meaning no max)
Backoff BackoffCalculator // If not set, uses the default backoff algorithm
}
JobOptions can be passed to JobWithOptions.
type NextMiddlewareFunc ¶
type NextMiddlewareFunc func() error
NextMiddlewareFunc is a function type (whose instances are named 'next') that you call to advance to the next middleware.
type PeriodicSchedule ¶
type PeriodicSchedule struct {
Name string `json:"name"`
JobName string `json:"job_name"`
Spec string `json:"spec"`
Args map[string]interface{} `json:"args,omitempty"`
Enabled bool `json:"enabled"`
CreatedAt int64 `json:"created_at"`
UpdatedAt int64 `json:"updated_at"`
}
PeriodicSchedule represents a named recurring job schedule stored in Redis. Unlike code-defined schedules via PeriodicallyEnqueue, these can be created, modified, and deleted at runtime through the Client API.
type Q ¶
type Q map[string]interface{}
Q is a shortcut to easily specify arguments for jobs when enqueueing them. Example: e.Enqueue("send_email", work.Q{"addr": "[email protected]", "track": true})
type Queue ¶
type Queue struct {
JobName string `json:"job_name"`
Count int64 `json:"count"`
Latency int64 `json:"latency"`
}
Queue represents a queue that holds jobs with the same name. It indicates their name, count, and latency (in seconds). Latency is a measurement of how long ago the next job to be processed was enqueued.
type RedisStats ¶
type RedisStats struct {
Version string `json:"version"`
UptimeSeconds int64 `json:"uptime_seconds"`
ConnectedClients int64 `json:"connected_clients"`
UsedMemory int64 `json:"used_memory"`
UsedMemoryHuman string `json:"used_memory_human"`
UsedMemoryPeak string `json:"used_memory_peak_human"`
TotalCommands int64 `json:"total_commands_processed"`
OpsPerSec int64 `json:"instantaneous_ops_per_sec"`
KeyspaceHits int64 `json:"keyspace_hits"`
KeyspaceMisses int64 `json:"keyspace_misses"`
DBKeys int64 `json:"db_keys"`
}
RedisStats contains key metrics parsed from the Redis INFO command.
type RetryOptions ¶
type RetryOptions struct {
// MaxRetries is the maximum number of times to retry the job.
// 0 means use the job type default.
MaxRetries int64
// Strategy selects a predefined backoff strategy.
// Only used when Backoff is nil.
Strategy BackoffStrategy
// Backoff is a custom backoff function. If set, it takes precedence over Strategy.
Backoff BackoffCalculator
// BaseDelay is the base delay in seconds for linear and fixed strategies.
// Defaults to 60 seconds if not set.
BaseDelay int64
}
RetryOptions configures retry behavior for a job at enqueue time. When set, these override the job type defaults configured on the WorkerPool.
type ScheduledJob ¶
ScheduledJob represents a job in the scheduled queue.
type WorkerObservation ¶
type WorkerObservation struct {
WorkerID string `json:"worker_id"`
IsBusy bool `json:"is_busy"`
// If IsBusy:
JobName string `json:"job_name"`
JobID string `json:"job_id"`
StartedAt int64 `json:"started_at"`
ArgsJSON string `json:"args_json"`
Checkin string `json:"checkin"`
CheckinAt int64 `json:"checkin_at"`
}
WorkerObservation represents the latest observation taken from a worker. The observation indicates whether the worker is busy processing a job, and if so, information about that job.
type WorkerPool ¶
type WorkerPool struct {
// contains filtered or unexported fields
}
WorkerPool represents a pool of workers. It forms the primary API of gocraft/work. WorkerPools provide the public API of gocraft/work. You can attach jobs and middlware to them. You can start and stop them. Based on their concurrency setting, they'll spin up N worker goroutines.
func NewWorkerPool ¶
func NewWorkerPool(ctx interface{}, concurrency uint, namespace string, pool *redis.Pool) *WorkerPool
NewWorkerPool creates a new worker pool. ctx should be a struct literal whose type will be used for middleware and handlers. concurrency specifies how many workers to spin up - each worker can process jobs concurrently.
func NewWorkerPoolWithOptions ¶
func NewWorkerPoolWithOptions(ctx interface{}, concurrency uint, namespace string, pool *redis.Pool, workerPoolOpts WorkerPoolOptions) *WorkerPool
NewWorkerPoolWithOptions creates a new worker pool as per the NewWorkerPool function, but permits you to specify additional options such as sleep backoffs.
func (*WorkerPool) Daily ¶
func (wp *WorkerPool) Daily(jobName string, hour, minute int) *WorkerPool
Daily enqueues jobName at the specified hour and minute (UTC) every day.
func (*WorkerPool) Drain ¶
func (wp *WorkerPool) Drain()
Drain drains all jobs in the queue before returning. Note that if jobs are added faster than we can process them, this function wouldn't return.
func (*WorkerPool) Every ¶
func (wp *WorkerPool) Every(jobName string, d time.Duration) *WorkerPool
Every enqueues jobName at the given duration interval. The duration must be >= 1 minute.
func (*WorkerPool) Hourly ¶
func (wp *WorkerPool) Hourly(jobName string, minute int) *WorkerPool
Hourly enqueues jobName at the specified minute of every hour.
func (*WorkerPool) Job ¶
func (wp *WorkerPool) Job(name string, fn interface{}) *WorkerPool
Job registers the job name to the specified handler fn. For instance, when workers pull jobs from the name queue they'll be processed by the specified handler function. fn can take one of these forms: (*ContextType).func(*Job) error, (ContextType matches the type of ctx specified when creating a pool) func(*Job) error, for the generic handler format.
func (*WorkerPool) JobWithOptions ¶
func (wp *WorkerPool) JobWithOptions(name string, jobOpts JobOptions, fn interface{}) *WorkerPool
JobWithOptions adds a handler for 'name' jobs as per the Job function, but permits you specify additional options such as a job's priority, retry count, and whether to send dead jobs to the dead job queue or trash them.
func (*WorkerPool) Middleware ¶
func (wp *WorkerPool) Middleware(fn interface{}) *WorkerPool
Middleware appends the specified function to the middleware chain. The fn can take one of these forms: (*ContextType).func(*Job, NextMiddlewareFunc) error, (ContextType matches the type of ctx specified when creating a pool) func(*Job, NextMiddlewareFunc) error, for the generic middleware format.
func (*WorkerPool) PeriodicallyEnqueue ¶
func (wp *WorkerPool) PeriodicallyEnqueue(spec string, jobName string) *WorkerPool
PeriodicallyEnqueue will periodically enqueue jobName according to the cron-based spec. The spec format is based on https://godoc.org/github.com/robfig/cron, which is a relatively standard cron format. Note that the first value is the seconds! If you have multiple worker pools on different machines, they'll all coordinate and only enqueue your job once.
func (*WorkerPool) PeriodicallyEnqueueWithArgs ¶
func (wp *WorkerPool) PeriodicallyEnqueueWithArgs(spec string, jobName string, args map[string]interface{}) *WorkerPool
PeriodicallyEnqueueWithArgs works like PeriodicallyEnqueue but also sets the provided args on each enqueued job instance.
func (*WorkerPool) Start ¶
func (wp *WorkerPool) Start()
Start starts the workers and associated processes.
func (*WorkerPool) Stop ¶
func (wp *WorkerPool) Stop()
Stop stops the workers and associated processes.
type WorkerPoolHeartbeat ¶
type WorkerPoolHeartbeat struct {
WorkerPoolID string `json:"worker_pool_id"`
StartedAt int64 `json:"started_at"`
HeartbeatAt int64 `json:"heartbeat_at"`
JobNames []string `json:"job_names"`
Concurrency uint `json:"concurrency"`
Host string `json:"host"`
Pid int `json:"pid"`
WorkerIDs []string `json:"worker_ids"`
}
WorkerPoolHeartbeat represents the heartbeat from a worker pool. WorkerPool's write a heartbeat every 5 seconds so we know they're alive and includes config information.
type WorkerPoolOptions ¶
type WorkerPoolOptions struct {
SleepBackoffs []int64 // Sleep backoffs in milliseconds
}
WorkerPoolOptions can be passed to NewWorkerPoolWithOptions.