2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-09-20 11:05:58 +08:00
asynq/README.md

303 lines
11 KiB
Markdown
Raw Normal View History

2020-01-06 01:06:23 +08:00
# Asynq
2020-01-21 07:17:41 +08:00
[![Build Status](https://travis-ci.com/hibiken/asynq.svg?token=paqzfpSkF4p23s5Ux39b&branch=master)](https://travis-ci.com/hibiken/asynq)
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![Go Report Card](https://goreportcard.com/badge/github.com/hibiken/asynq)](https://goreportcard.com/report/github.com/hibiken/asynq)
[![GoDoc](https://godoc.org/github.com/hibiken/asynq?status.svg)](https://godoc.org/github.com/hibiken/asynq)
[![Gitter chat](https://badges.gitter.im/go-asynq/gitter.svg)](https://gitter.im/go-asynq/community)
2020-02-20 13:37:54 +08:00
[![codecov](https://codecov.io/gh/hibiken/asynq/branch/master/graph/badge.svg)](https://codecov.io/gh/hibiken/asynq)
2019-12-01 01:38:46 +08:00
2020-04-12 07:33:35 +08:00
## Overview
2020-04-12 07:33:35 +08:00
Asynq is a Go library for queueing tasks and processing them in the background with workers. It is backed by Redis and it is designed to have a low barrier to entry. It should be integrated in your web stack easily.
Highlevel overview of how Asynq works:
- Client puts task on a queue
- Server pulls task off queues and starts a worker goroutine for each task
2020-04-20 22:39:52 +08:00
- Tasks are processed concurrently by multiple workers
2020-04-12 07:33:35 +08:00
Task queues are used as a mechanism to distribute work across multiple machines.
A system can consist of multiple worker servers and brokers, giving way to high availability and horizontal scaling.
![Task Queue Diagram](/docs/assets/overview.png)
2019-12-01 01:38:46 +08:00
## Stability and Compatibility
2020-04-20 22:39:52 +08:00
**Important Note**: Current major version is zero (v0.x.x) to accomodate rapid development and fast iteration while getting early feedback from users (Feedback on APIs are appreciated!). The public API could change without a major version update before v1.0.0 release.
**Status**: The library is currently undergoing heavy development with frequent, breaking API changes.
2020-03-28 23:37:50 +08:00
## Features
2020-04-20 22:39:52 +08:00
- Guaranteed [at least one execution](https://www.cloudcomputingpatterns.org/at_least_once_delivery/) of a task
2020-03-28 23:37:50 +08:00
- Scheduling of tasks
- Durability since tasks are written to Redis
2020-04-20 22:39:52 +08:00
- [Retries](https://github.com/hibiken/asynq/wiki/Task-Retry) of failed tasks
- Automatic recovery of tasks in the event of a worker crash
2020-04-20 22:39:52 +08:00
- [Weighted priority queues](https://github.com/hibiken/asynq/wiki/Priority-Queues#weighted-priority-queues)
- [Strict priority queues](https://github.com/hibiken/asynq/wiki/Priority-Queues#strict-priority-queues)
2020-03-28 23:37:50 +08:00
- Low latency to add a task since writes are fast in Redis
2020-04-20 22:39:52 +08:00
- De-duplication of tasks using [unique option](https://github.com/hibiken/asynq/wiki/Unique-Tasks)
2020-05-04 07:47:55 +08:00
- Allow [timeout and deadline per task](https://github.com/hibiken/asynq/wiki/Task-Timeout-and-Cancelation)
- [Flexible handler interface with support for middlewares](https://github.com/hibiken/asynq/wiki/Handler-Deep-Dive)
2020-06-08 21:15:45 +08:00
- [Ability to pause queue](/tools/asynq/README.md#pause) to stop processing tasks from the queue
2020-04-20 22:39:52 +08:00
- [Support Redis Sentinels](https://github.com/hibiken/asynq/wiki/Automatic-Failover) for HA
- [CLI](#command-line-tool) to inspect and remote-control queues and tasks
2020-03-28 23:37:50 +08:00
2020-02-06 13:58:05 +08:00
## Quickstart
2020-01-21 07:17:41 +08:00
2020-01-27 11:58:48 +08:00
First, make sure you are running a Redis server locally.
2020-01-23 22:33:34 +08:00
```sh
2020-02-07 22:45:36 +08:00
$ redis-server
2020-01-23 22:33:34 +08:00
```
2020-03-24 01:35:17 +08:00
Next, write a package that encapsulates task creation and task handling.
```go
2020-03-15 06:51:23 +08:00
package tasks
import (
"fmt"
"github.com/hibiken/asynq"
)
2020-04-20 22:39:52 +08:00
// A list of task types.
2020-03-15 06:51:23 +08:00
const (
EmailDelivery = "email:deliver"
ImageProcessing = "image:process"
)
2020-05-17 01:44:39 +08:00
//----------------------------------------------
// Write a function NewXXXTask to create a task.
// A task consists of a type and a payload.
//----------------------------------------------
2020-03-15 06:51:23 +08:00
func NewEmailDeliveryTask(userID int, tmplID string) *asynq.Task {
payload := map[string]interface{}{"user_id": userID, "template_id": tmplID}
return asynq.NewTask(EmailDelivery, payload)
}
func NewImageProcessingTask(src, dst string) *asynq.Task {
payload := map[string]interface{}{"src": src, "dst": dst}
return asynq.NewTask(ImageProcessing, payload)
}
2020-05-17 01:44:39 +08:00
//---------------------------------------------------------------
// Write a function HandleXXXTask to handle the input task.
// Note that it satisfies the asynq.HandlerFunc interface.
2020-04-20 22:39:52 +08:00
//
// Handler doesn't need to be a function. You can define a type
2020-05-17 01:44:39 +08:00
// that satisfies asynq.Handler interface. See examples below.
//---------------------------------------------------------------
2020-03-15 06:51:23 +08:00
func HandleEmailDeliveryTask(ctx context.Context, t *asynq.Task) error {
userID, err := t.Payload.GetInt("user_id")
if err != nil {
return err
}
tmplID, err := t.Payload.GetString("template_id")
if err != nil {
return err
2020-01-27 11:58:48 +08:00
}
2020-03-15 06:51:23 +08:00
fmt.Printf("Send Email to User: user_id = %d, template_id = %s\n", userID, tmplID)
// Email delivery logic ...
return nil
}
2020-05-17 01:44:39 +08:00
// ImageProcessor implements asynq.Handler interface.
2020-04-20 22:39:52 +08:00
type ImageProcesser struct {
// ... fields for struct
}
func (p *ImageProcessor) ProcessTask(ctx context.Context, t *asynq.Task) error {
2020-03-15 06:51:23 +08:00
src, err := t.Payload.GetString("src")
if err != nil {
return err
}
dst, err := t.Payload.GetString("dst")
if err != nil {
return err
}
fmt.Printf("Process image: src = %s, dst = %s\n", src, dst)
// Image processing logic ...
return nil
}
2020-04-20 22:39:52 +08:00
func NewImageProcessor() *ImageProcessor {
// ... return an instance
}
2020-03-15 06:51:23 +08:00
```
2020-04-18 23:03:58 +08:00
In your web application code, import the above package and use [`Client`](https://pkg.go.dev/github.com/hibiken/asynq?tab=doc#Client) to put tasks on the queue.
2020-09-05 22:03:43 +08:00
// TODO: This description needs to be updated.
2020-04-18 23:03:58 +08:00
A task will be processed asynchronously by a background worker as soon as the task gets enqueued.
2020-03-15 06:51:23 +08:00
Scheduled tasks will be stored in Redis and will be enqueued at the specified time.
```go
package main
import (
"time"
"github.com/hibiken/asynq"
"your/app/package/tasks"
)
const redisAddr = "127.0.0.1:6379"
func main() {
2020-04-18 23:03:58 +08:00
r := asynq.RedisClientOpt{Addr: redisAddr}
2020-03-14 05:50:03 +08:00
c := asynq.NewClient(r)
2020-05-08 21:19:48 +08:00
defer c.Close()
2019-12-01 01:38:46 +08:00
2020-05-17 01:44:39 +08:00
// ------------------------------------------------------
2020-03-14 05:50:03 +08:00
// Example 1: Enqueue task to be processed immediately.
2020-04-20 22:39:52 +08:00
// Use (*Client).Enqueue method.
2020-05-17 01:44:39 +08:00
// ------------------------------------------------------
2020-03-14 05:50:03 +08:00
2020-03-15 06:51:23 +08:00
t := tasks.NewEmailDeliveryTask(42, "some:template:id")
res, err := c.Enqueue(t)
2020-03-14 05:50:03 +08:00
if err != nil {
log.Fatal("could not enqueue task: %v", err)
2020-03-15 06:51:23 +08:00
}
fmt.Printf("Enqueued Result: %+v\n", res)
2019-12-01 01:38:46 +08:00
2020-01-23 22:33:34 +08:00
2020-05-17 01:44:39 +08:00
// ------------------------------------------------------------
2020-03-14 05:50:03 +08:00
// Example 2: Schedule task to be processed in the future.
2020-04-20 22:39:52 +08:00
// Use (*Client).EnqueueIn or (*Client).EnqueueAt.
2020-05-17 01:44:39 +08:00
// ------------------------------------------------------------
2020-01-23 22:33:34 +08:00
2020-03-15 06:51:23 +08:00
t = tasks.NewEmailDeliveryTask(42, "other:template:id")
res, err = c.EnqueueIn(24*time.Hour, t)
2020-03-14 05:50:03 +08:00
if err != nil {
log.Fatal("could not schedule task: %v", err)
}
fmt.Printf("Enqueued Result: %+v\n", res)
2020-05-17 01:44:39 +08:00
// ----------------------------------------------------------------------------
2020-04-26 22:48:38 +08:00
// Example 3: Set options to tune task processing behavior.
2020-04-20 22:39:52 +08:00
// Options include MaxRetry, Queue, Timeout, Deadline, Unique etc.
2020-05-17 01:44:39 +08:00
// ----------------------------------------------------------------------------
2020-03-14 05:50:03 +08:00
2020-04-26 22:48:38 +08:00
c.SetDefaultOptions(tasks.ImageProcessing, asynq.MaxRetry(10), asynq.Timeout(time.Minute))
t = tasks.NewImageProcessingTask("some/blobstore/url", "other/blobstore/url")
res, err = c.Enqueue(t)
2020-04-26 22:48:38 +08:00
if err != nil {
log.Fatal("could not enqueue task: %v", err)
}
fmt.Printf("Enqueued Result: %+v\n", res)
2020-04-26 22:48:38 +08:00
2020-05-17 01:44:39 +08:00
// ---------------------------------------------------------------------------
2020-04-26 22:48:38 +08:00
// Example 4: Pass options to tune task processing behavior at enqueue time.
// Options passed at enqueue time override default ones, if any.
2020-05-17 01:44:39 +08:00
// ---------------------------------------------------------------------------
2020-04-26 22:48:38 +08:00
2020-03-15 06:51:23 +08:00
t = tasks.NewImageProcessingTask("some/blobstore/url", "other/blobstore/url")
res, err = c.Enqueue(t, asynq.Queue("critical"), asynq.Timeout(30*time.Second))
2020-03-14 05:50:03 +08:00
if err != nil {
log.Fatal("could not enqueue task: %v", err)
}
fmt.Printf("Enqueued Result: %+v\n", res)
2020-01-23 22:33:34 +08:00
}
```
2020-04-20 22:39:52 +08:00
Next, create a worker server to process these tasks in the background.
2020-04-13 08:16:44 +08:00
To start the background workers, use [`Server`](https://pkg.go.dev/github.com/hibiken/asynq?tab=doc#Server) and provide your [`Handler`](https://pkg.go.dev/github.com/hibiken/asynq?tab=doc#Handler) to process the tasks.
2019-12-01 01:38:46 +08:00
2020-03-15 06:51:23 +08:00
You can optionally use [`ServeMux`](https://pkg.go.dev/github.com/hibiken/asynq?tab=doc#ServeMux) to create a handler, just as you would with [`"net/http"`](https://golang.org/pkg/net/http/) Handler.
```go
2020-03-15 06:51:23 +08:00
package main
2020-03-15 06:51:23 +08:00
import (
2020-04-26 22:48:38 +08:00
"log"
2020-03-15 06:51:23 +08:00
"github.com/hibiken/asynq"
"your/app/package/tasks"
)
const redisAddr = "127.0.0.1:6379"
2019-12-01 01:38:46 +08:00
func main() {
2020-04-18 23:03:58 +08:00
r := asynq.RedisClientOpt{Addr: redisAddr}
2019-12-01 01:38:46 +08:00
2020-04-13 08:16:44 +08:00
srv := asynq.NewServer(r, asynq.Config{
2020-01-27 11:58:48 +08:00
// Specify how many concurrent workers to use
Concurrency: 10,
// Optionally specify multiple queues with different priority.
Queues: map[string]int{
2020-01-27 11:58:48 +08:00
"critical": 6,
"default": 3,
"low": 1,
},
// See the godoc for other configuration options
})
2019-12-01 01:38:46 +08:00
// mux maps a type to a handler
mux := asynq.NewServeMux()
2020-03-15 06:51:23 +08:00
mux.HandleFunc(tasks.EmailDelivery, tasks.HandleEmailDeliveryTask)
2020-04-20 22:39:52 +08:00
mux.Handle(tasks.ImageProcessing, tasks.NewImageProcessor())
// ...register other handlers...
2019-12-28 08:26:11 +08:00
2020-04-13 23:14:55 +08:00
if err := srv.Run(mux); err != nil {
log.Fatalf("could not run server: %v", err)
}
}
2019-12-28 08:26:11 +08:00
```
2020-01-27 11:58:48 +08:00
For a more detailed walk-through of the library, see our [Getting Started Guide](https://github.com/hibiken/asynq/wiki/Getting-Started).
2020-01-23 22:33:34 +08:00
To Learn more about `asynq` features and APIs, see our [Wiki](https://github.com/hibiken/asynq/wiki) and [godoc](https://godoc.org/github.com/hibiken/asynq).
2020-01-21 07:17:41 +08:00
2020-01-23 22:33:34 +08:00
## Command Line Tool
2020-01-23 22:33:34 +08:00
Asynq ships with a command line tool to inspect the state of queues and tasks.
2020-01-19 12:31:22 +08:00
Here's an example of running the `stats` command.
![Gif](/docs/assets/demo.gif)
For details on how to use the tool, refer to the tool's [README](/tools/asynq/README.md).
## Installation
To install `asynq` library, run the following command:
```sh
go get -u github.com/hibiken/asynq
```
To install the CLI tool, run the following command:
2020-01-19 12:31:22 +08:00
2020-02-07 22:45:36 +08:00
```sh
go get -u github.com/hibiken/asynq/tools/asynq
2020-02-07 22:45:36 +08:00
```
2020-01-19 12:31:22 +08:00
## Requirements
| Dependency | Version |
| -------------------------- | ------- |
| [Redis](https://redis.io/) | v2.8+ |
| [Go](https://golang.org/) | v1.13+ |
2020-02-09 01:34:14 +08:00
## Contributing
We are open to, and grateful for, any contributions (Github issues/pull-requests, feedback on Gitter channel, etc) made by the community.
Please see the [Contribution Guide](/CONTRIBUTING.md) before contributing.
2020-01-06 01:06:23 +08:00
## Acknowledgements
- [Sidekiq](https://github.com/mperham/sidekiq) : Many of the design ideas are taken from sidekiq and its Web UI
2020-02-24 12:43:24 +08:00
- [RQ](https://github.com/rq/rq) : Client APIs are inspired by rq library.
- [Cobra](https://github.com/spf13/cobra) : Asynq CLI is built with cobra
2020-01-06 01:06:23 +08:00
2019-12-28 08:26:11 +08:00
## License
Asynq is released under the MIT license. See [LICENSE](https://github.com/hibiken/asynq/blob/master/LICENSE).