2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-09-20 19:06:46 +08:00
asynq/README.md

159 lines
4.4 KiB
Markdown
Raw Normal View History

2020-01-06 01:06:23 +08:00
# Asynq
[![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)
2019-12-01 01:38:46 +08:00
2019-12-28 08:26:11 +08:00
Simple, efficent asynchronous task processing library in Go.
## Table of Contents
- [Overview](#overview)
- [Requirements](#requirements)
- [Installation](#installation)
- [Getting Started](#getting-started)
2020-01-06 01:06:23 +08:00
- [Acknowledgements](#acknowledgements)
2019-12-28 08:26:11 +08:00
- [License](#license)
## Overview
Asynq provides a simple interface to asynchronous task processing.
Asynq also ships with a CLI to monitor the queues and take manual actions if needed.
Asynq provides:
- Clear separation of task producer and consumer
- Ability to schedule task processing in the future
- Automatic retry of failed tasks with exponential backoff
- Ability to configure max retry count per task
- Ability to configure max number of worker goroutines to process tasks
- Unix signal handling to safely shutdown background processing
- Enhanced reliability TODO(hibiken): link to wiki page describing this.
- CLI to query and mutate queues state for mointoring and administrative purposes
2019-12-01 01:38:46 +08:00
## Requirements
| Dependency | Version |
| -------------------------------------------------------------- | ------- |
| [Redis](https://redis.io/) | v2.6+ |
| [Go](https://golang.org/) | v1.12+ |
| [github.com/go-redis/redis](https://github.com/go-redis/redis) | v.7.0+ |
2019-12-01 01:38:46 +08:00
## Installation
```
2019-12-28 08:26:11 +08:00
go get github.com/hibiken/asynq
2019-12-01 01:38:46 +08:00
```
## Getting Started
2020-01-06 01:06:23 +08:00
1. Import `asynq` and `redis` in your file.
2019-12-01 01:38:46 +08:00
```go
2020-01-06 01:06:23 +08:00
import (
"github.com/go-redis/redis/v7"
"github.com/hibiken/asynq"
)
2019-12-01 01:38:46 +08:00
```
2. Create a `Client` instance to create tasks.
```go
func main() {
r := redis.NewClient(&redis.Options{
2019-12-01 01:38:46 +08:00
Addr: "localhost:6379",
}
client := asynq.NewClient(r)
2019-12-01 01:38:46 +08:00
// create a task with typename and payload.
t1 := asynq.NewTask(
"send_welcome_email",
map[string]interface{}{"user_id": 42})
2019-12-01 01:38:46 +08:00
t2 := asynq.NewTask(
"send_reminder_email",
map[string]interface{}{"user_id": 42})
2019-12-01 01:38:46 +08:00
2019-12-02 11:03:31 +08:00
// process the task immediately.
err := client.Schedule(t1, time.Now())
2019-12-01 01:38:46 +08:00
2019-12-02 11:03:31 +08:00
// process the task 24 hours later.
err = client.Schedule(t2, time.Now().Add(24 * time.Hour))
2019-12-28 08:26:11 +08:00
// specify the max number of retry (default: 25)
err = client.Schedule(t1, time.Now(), asynq.MaxRetry(1))
2019-12-01 01:38:46 +08:00
}
```
3. Create a `Background` instance to process tasks.
```go
func main() {
r := redis.NewClient(&redis.Options{
2019-12-01 01:38:46 +08:00
Addr: "localhost:6379",
}
bg := asynq.NewBackground(r, &asynq.Config{
Concurrency: 20,
})
2019-12-01 01:38:46 +08:00
2019-12-28 08:26:11 +08:00
// Blocks until signal TERM or INT is received.
// For graceful shutdown, send signal TSTP to stop processing more tasks
// before sending TERM or INT signal.
bg.Run(handler)
2019-12-01 01:38:46 +08:00
}
2019-12-28 08:26:11 +08:00
```
The argument to `(*asynq.Background).Run` is an interface `asynq.Handler` which has one method `ProcessTask`.
2019-12-01 01:38:46 +08:00
2019-12-28 08:26:11 +08:00
```go
// ProcessTask should return nil if the processing of a task
// is successful.
//
// If ProcessTask return a non-nil error or panics, the task
// will be retried.
type Handler interface {
ProcessTask(*Task) error
}
```
The simplest way to implement a handler is to define a function with the same signature and use `asynq.HandlerFunc` adapter type when passing it to `Run`.
```go
2019-12-08 00:47:17 +08:00
func handler(t *asynq.Task) error {
2019-12-01 01:38:46 +08:00
switch t.Type {
2019-12-28 08:26:11 +08:00
case "send_welcome_email":
id, err := t.Payload.GetInt("user_id")
2019-12-28 08:26:11 +08:00
if err != nil {
return err
}
fmt.Printf("Send Welcome Email to %d\n", id)
2019-12-01 01:38:46 +08:00
2019-12-28 08:26:11 +08:00
// ... handle other types ...
2019-12-01 01:38:46 +08:00
2019-12-28 08:26:11 +08:00
default:
return fmt.Errorf("unexpected task type: %s", t.Type)
2019-12-01 01:38:46 +08:00
}
return nil
}
2019-12-28 08:26:11 +08:00
func main() {
r := redis.NewClient(&redis.Options{
2019-12-28 08:26:11 +08:00
Addr: "localhost:6379",
}
bg := asynq.NewBackground(r, &asynq.Config{
Concurrency: 20,
})
2019-12-28 08:26:11 +08:00
// Use asynq.HandlerFunc adapter for a handler function
bg.Run(asynq.HandlerFunc(handler))
}
2019-12-01 01:38:46 +08:00
```
2019-12-28 08:26:11 +08:00
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
- [Cobra](https://github.com/spf13/cobra) : Asynqmon CLI is built with cobra
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).