2020-01-05 09:06:23 -08:00
# Asynq
2020-01-20 15:17:41 -08:00
[](https://travis-ci.com/hibiken/asynq)
[](https://opensource.org/licenses/MIT)
[](https://goreportcard.com/report/github.com/hibiken/asynq)
[](https://godoc.org/github.com/hibiken/asynq)
[](https://gitter.im/go-asynq/community)
2020-02-19 21:37:54 -08:00
[](https://codecov.io/gh/hibiken/asynq)
2019-11-30 09:38:46 -08:00
2020-01-26 19:58:48 -08:00
Asynq is a simple 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.
2020-01-14 21:19:06 -08:00
2020-01-23 06:33:34 -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. The public API could change without a major version update before v1.0.0 release.
2019-12-27 16:26:11 -08:00
2020-03-02 06:40:53 -08:00

2019-11-30 09:38:46 -08:00
2020-02-05 21:58:05 -08:00
## Quickstart
2020-01-20 15:17:41 -08:00
2020-01-26 19:58:48 -08:00
First, make sure you are running a Redis server locally.
2020-01-23 06:33:34 -08:00
```sh
2020-02-07 06:45:36 -08:00
$ redis-server
2020-01-23 06:33:34 -08:00
```
2020-03-03 21:37:28 -08:00
To create and schedule tasks, use `Client` and provide a task and when to enqueue the task.
A task will be processed by a background worker as soon as the task gets enqueued.
Scheduled tasks will be stored in Redis and will be enqueued at the specified time.
2020-01-14 21:19:06 -08:00
```go
2020-01-26 19:58:48 -08:00
func main() {
r := &asynq.RedisClientOpt{
2020-02-23 15:40:04 -08:00
Addr: "127.0.0.1:6379",
2020-01-26 19:58:48 -08:00
}
2020-01-14 21:19:06 -08:00
2020-01-26 19:58:48 -08:00
client := asynq.NewClient(r)
2019-11-30 09:38:46 -08:00
2020-03-03 21:37:28 -08:00
// Create a task with task type and payload.
2020-03-01 11:08:00 -08:00
t1 := asynq.NewTask("email:signup", map[string]interface{}{"user_id": 42})
2019-11-30 09:38:46 -08:00
2020-03-01 11:08:00 -08:00
t2 := asynq.NewTask("email:reminder", map[string]interface{}{"user_id": 42})
2020-01-23 06:33:34 -08:00
2020-03-03 21:37:28 -08:00
// Enqueue immediately.
2020-02-23 15:40:04 -08:00
err := client.Enqueue(t1)
2020-01-23 06:33:34 -08:00
2020-03-03 21:37:28 -08:00
// Enqueue 24 hrs later.
2020-02-23 15:40:04 -08:00
err = client.EnqueueIn(24*time.Hour, t2)
2020-03-03 21:37:28 -08:00
// Enqueue at specific time.
err = client.EnqueueAt(time.Date(2020, time.March, 6, 10, 0, 0, 0, time.UTC), t2)
2020-02-23 15:40:04 -08:00
2020-03-02 06:40:53 -08:00
// Pass vararg options to specify processing behavior for the given task.
2020-02-23 15:40:04 -08:00
//
2020-03-02 06:40:53 -08:00
// MaxRetry specifies the max number of retry if the task fails (Default is 25).
// Queue specifies which queue to enqueue this task to (Default is "default" queue).
// Timeout specifies the the task timeout (Default is no timeout).
2020-02-23 15:40:04 -08:00
err = client.Enqueue(t1, asynq.MaxRetry(10), asynq.Queue("critical"), asynq.Timeout(time.Minute))
2020-01-23 06:33:34 -08:00
}
```
2020-01-26 19:58:48 -08:00
To start the background workers, use `Background` and provide your `Handler` to process the tasks.
2019-11-30 09:38:46 -08:00
2020-03-01 11:08:00 -08:00
`Handler` is an interface with one method `ProcessTask` with the following signature.
```go
2020-03-02 06:40:53 -08:00
// ProcessTask should return nil if the processing of a task is successful.
2020-03-01 11:08:00 -08:00
//
2020-03-02 06:40:53 -08:00
// If ProcessTask return a non-nil error or panics, the task will be retried after delay.
2020-03-01 11:08:00 -08:00
type Handler interface {
ProcessTask(context.Context, *asynq.Task) error
}
```
You can optionally use `ServeMux` to create a handler, just as you would with `"net/http"` Handler.
2019-11-30 09:38:46 -08:00
```go
func main() {
2020-01-26 19:58:48 -08:00
r := &asynq.RedisClientOpt{
2020-02-23 15:40:04 -08:00
Addr: "127.0.0.1:6379",
2020-01-20 15:17:41 -08:00
}
2019-11-30 09:38:46 -08:00
2020-01-26 19:58:48 -08:00
bg := asynq.NewBackground(r, &asynq.Config{
// Specify how many concurrent workers to use
2020-01-14 21:19:06 -08:00
Concurrency: 10,
2020-02-23 15:40:04 -08:00
// Optionally specify multiple queues with different priority.
2020-02-12 22:23:25 -08:00
Queues: map[string]int{
2020-01-26 19:58:48 -08:00
"critical": 6,
"default": 3,
"low": 1,
},
// See the godoc for other configuration options
2019-12-29 16:55:51 -08:00
})
2019-11-30 09:38:46 -08:00
2020-03-02 06:40:53 -08:00
// mux maps a type to a handler
2020-03-01 11:08:00 -08:00
mux := asynq.NewServeMux()
mux.HandleFunc("email:signup", signupEmailHandler)
mux.HandleFunc("email:reminder", reminderEmailHandler)
// ...register other handlers...
2019-12-27 16:26:11 -08:00
2020-03-01 11:08:00 -08:00
bg.Run(mux)
}
2019-11-30 09:38:46 -08:00
2020-03-01 11:08:00 -08:00
// function with the same signature as the ProcessTask method for the Handler interface.
func signupEmailHandler(ctx context.Context, t *asynq.Task) error {
id, err := t.Payload.GetInt("user_id")
if err != nil {
return err
}
fmt.Printf("Send welcome email to user %d\n", id)
// ...your email sending logic...
return nil
2019-12-27 16:26:11 -08:00
}
```
2020-01-26 19: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 06:33:34 -08:00
2020-03-02 06:40:53 -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-20 15:17:41 -08:00
2020-01-23 06:33:34 -08:00
## Command Line Tool
2020-01-14 21:19:06 -08:00
2020-01-23 06:33:34 -08:00
Asynq ships with a command line tool to inspect the state of queues and tasks.
2020-01-18 20:31:22 -08:00
2020-03-02 06:40:53 -08:00
Here's an example of running the `stats` command.

For details on how to use the tool, refer to the tool's [README ](/tools/asynqmon/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-18 20:31:22 -08:00
2020-02-07 06:45:36 -08:00
```sh
go get -u github.com/hibiken/asynq/tools/asynqmon
```
2020-01-18 20:31:22 -08:00
2020-03-02 06:40:53 -08:00
## Requirements
| Dependency | Version |
| -------------------------- | ------- |
| [Redis ](https://redis.io/ ) | v2.8+ |
| [Go ](https://golang.org/ ) | v1.12+ |
2020-01-14 21:19:06 -08:00
2020-02-08 09: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-05 09: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-23 20:43:24 -08:00
- [RQ ](https://github.com/rq/rq ) : Client APIs are inspired by rq library.
2020-01-05 09:06:23 -08:00
- [Cobra ](https://github.com/spf13/cobra ) : Asynqmon CLI is built with cobra
2019-12-27 16:26:11 -08:00
## License
Asynq is released under the MIT license. See [LICENSE ](https://github.com/hibiken/asynq/blob/master/LICENSE ).