2019-10-13 17:38:15 +03:00
< h1 align = 'center' > ants< / h1 >
2019-07-26 21:25:26 +03:00
< p align = "center" >
2019-10-10 07:24:22 +03:00
< img src = "https://raw.githubusercontent.com/panjf2000/logos/master/ants/logo.png" / >
< b > A goroutine pool for Go< / b >
2019-07-26 21:25:26 +03:00
< br / > < br / >
2019-07-26 20:25:40 +03:00
< a title = "Build Status" target = "_blank" href = "https://travis-ci.com/panjf2000/ants" > < img src = "https://img.shields.io/travis/com/panjf2000/ants?style=flat-square" > < / a >
< a title = "Codecov" target = "_blank" href = "https://codecov.io/gh/panjf2000/ants" > < img src = "https://img.shields.io/codecov/c/github/panjf2000/ants?style=flat-square" > < / a >
2019-08-17 20:19:47 +03:00
< a title = "Go Report Card" target = "_blank" href = "https://goreportcard.com/report/github.com/panjf2000/ants" > < img src = "https://goreportcard.com/badge/github.com/panjf2000/ants?style=flat-square" > < / a >
2019-08-19 16:21:57 +03:00
< a title = "Ants on Sourcegraph" target = "_blank" href = "https://sourcegraph.com/github.com/panjf2000/ants?badge" > < img src = "https://sourcegraph.com/github.com/panjf2000/ants/-/badge.svg?style=flat-square" > < / a >
2019-07-26 20:25:40 +03:00
< br / >
2019-10-14 14:31:25 +03:00
< a title = "GolangCI" target = "_blank" href = "https://golangci.com/r/github.com/panjf2000/ants" > < img src = "https://golangci.com/badges/github.com/panjf2000/ants.svg" > < / a >
2019-10-07 14:31:03 +03:00
< a title = "Doc for ants" target = "_blank" href = "https://gowalker.org/github.com/panjf2000/ants?lang=zh-CN" > < img src = "https://img.shields.io/badge/api-reference-blue.svg?style=flat-square" > < / a >
2019-08-17 20:19:47 +03:00
< a title = "Release" target = "_blank" href = "https://github.com/panjf2000/ants/releases" > < img src = "https://img.shields.io/github/release/panjf2000/ants.svg?style=flat-square" > < / a >
2019-10-04 06:24:13 +03:00
< a title = "Mentioned in Awesome Go" target = "_blank" href = "https://github.com/avelino/awesome-go" > < img src = "https://awesome.re/mentioned-badge-flat.svg" > < / a >
2019-07-26 21:25:26 +03:00
< / p >
2018-06-08 09:50:56 +03:00
2019-10-13 17:38:15 +03:00
[英文 ](README.md ) | 🇨🇳中文
## 📖 简介
2018-06-08 09:50:56 +03:00
2019-08-21 17:07:19 +03:00
`ants` 是一个高性能的协程池,实现了对大规模 goroutine 的调度管理、goroutine 复用,允许使用者在开发并发程序的时候限制协程数量,复用资源,达到更高效执行任务的效果。
2018-06-08 09:50:56 +03:00
2019-10-13 17:38:15 +03:00
## 🚀 功能:
2018-06-08 09:50:56 +03:00
2019-10-09 14:42:32 +03:00
- 自动调度海量的 goroutines, 复用 goroutines
- 定时清理过期的 goroutines, 进一步节省资源
2018-06-08 09:50:56 +03:00
- 提供了友好的接口:任务提交、获取运行中的协程数量、动态调整协程池大小
2019-08-21 17:07:19 +03:00
- 优雅处理 panic, 防止程序崩溃
2019-10-23 16:31:35 +03:00
- 资源复用,极大节省内存使用量;在大规模批量并发任务场景下比原生 goroutine 并发具有[更高的性能](#-性能小结)
2019-09-05 15:31:52 +03:00
- 非阻塞机制
2018-06-08 09:50:56 +03:00
2019-10-13 17:38:15 +03:00
## ⚔️ 目前测试通过的Golang版本:
2019-01-26 21:07:33 +03:00
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
2019-04-08 17:16:59 +03:00
- 1.12.x
2019-09-05 15:31:52 +03:00
- 1.13.x
2019-01-26 21:07:33 +03:00
2019-10-13 17:38:15 +03:00
## 💡 `ants` 运行时的流程图如下
2019-10-07 14:31:03 +03:00
< p align = "center" >
2019-10-08 15:49:47 +03:00
< img width = "845" alt = "ants-flowchart-cn" src = "https://user-images.githubusercontent.com/7496278/66396519-7ed66e00-ea0c-11e9-9c1a-5ca54bbd61eb.png" >
2019-10-07 14:31:03 +03:00
< / p >
2019-10-13 17:38:15 +03:00
## 🧰 安装
2018-06-08 09:50:56 +03:00
2019-10-07 14:50:09 +03:00
### 使用 `ants` v1 版本:
``` powershell
2018-06-08 09:50:56 +03:00
go get -u github.com/panjf2000/ants
```
2019-10-07 14:50:09 +03:00
### 使用 `ants` v2 版本:
```powershell
go get -u github.com/panjf2000/ants/v2
```
2019-10-13 17:38:15 +03:00
## 🛠 使用
2018-06-08 09:50:56 +03:00
写 go 并发程序的时候如果程序会启动大量的 goroutine , 势必会消耗大量的系统资源( 内存, CPU) , 通过使用 `ants` ,可以实例化一个协程池,复用 goroutine ,节省资源,提升性能:
``` go
package main
import (
"fmt"
"sync"
"sync/atomic"
2018-07-02 09:45:25 +03:00
"time"
2018-06-08 09:50:56 +03:00
2019-08-25 09:25:09 +03:00
"github.com/panjf2000/ants/v2"
2018-06-08 09:50:56 +03:00
)
var sum int32
2018-12-03 06:23:37 +03:00
func myFunc(i interface{}) {
2018-07-02 09:45:25 +03:00
n := i.(int32)
atomic.AddInt32(& sum, n)
2018-06-08 09:50:56 +03:00
fmt.Printf("run with %d\n", n)
}
2018-12-03 06:23:37 +03:00
func demoFunc() {
2018-06-08 09:50:56 +03:00
time.Sleep(10 * time.Millisecond)
fmt.Println("Hello World!")
}
func main() {
2018-07-02 09:45:25 +03:00
defer ants.Release()
2018-06-08 09:50:56 +03:00
runTimes := 1000
2019-02-02 05:30:50 +03:00
// Use the common pool.
2018-06-08 09:50:56 +03:00
var wg sync.WaitGroup
2019-02-02 05:30:50 +03:00
syncCalculateSum := func() {
demoFunc()
wg.Done()
}
2018-06-08 09:50:56 +03:00
for i := 0; i < runTimes ; i + + {
wg.Add(1)
2019-08-21 17:07:19 +03:00
_ = ants.Submit(syncCalculateSum)
2018-06-08 09:50:56 +03:00
}
wg.Wait()
fmt.Printf("running goroutines: %d\n", ants.Running())
fmt.Printf("finish all tasks.\n")
2018-12-06 19:33:43 +03:00
// Use the pool with a function,
2019-02-02 05:30:50 +03:00
// set 10 to the capacity of goroutine pool and 1 second for expired duration.
2018-12-01 14:41:02 +03:00
p, _ := ants.NewPoolWithFunc(10, func(i interface{}) {
2018-06-08 09:50:56 +03:00
myFunc(i)
wg.Done()
})
2018-07-02 09:45:25 +03:00
defer p.Release()
2019-02-02 05:30:50 +03:00
// Submit tasks one by one.
2018-06-08 09:50:56 +03:00
for i := 0; i < runTimes ; i + + {
wg.Add(1)
2019-08-21 17:07:19 +03:00
_ = p.Invoke(int32(i))
2018-06-08 09:50:56 +03:00
}
wg.Wait()
fmt.Printf("running goroutines: %d\n", p.Running())
fmt.Printf("finish all tasks, result is %d\n", sum)
}
2018-12-05 19:50:33 +03:00
```
2018-12-02 08:48:44 +03:00
2019-10-13 17:38:15 +03:00
### 与 http server 集成
2018-12-02 08:48:44 +03:00
```go
package main
import (
"io/ioutil"
"net/http"
2019-08-25 09:25:09 +03:00
"github.com/panjf2000/ants/v2"
2018-12-02 08:48:44 +03:00
)
2018-12-02 16:53:43 +03:00
type Request struct {
Param []byte
Result chan []byte
}
2018-12-02 08:48:44 +03:00
func main() {
2019-08-21 17:07:19 +03:00
pool, _ := ants.NewPoolWithFunc(100000, func(payload interface{}) {
2018-12-03 05:13:53 +03:00
request, ok := payload.(*Request)
2018-12-02 08:48:44 +03:00
if !ok {
2018-12-03 09:31:49 +03:00
return
2018-12-02 08:48:44 +03:00
}
reverseParam := func(s []byte) []byte {
for i, j := 0, len(s)-1; i < j ; i , j = i+1, j-1 {
s[i], s[j] = s[j], s[i]
}
return s
2018-12-02 16:53:43 +03:00
}(request.Param)
2018-12-02 08:48:44 +03:00
2018-12-02 16:53:43 +03:00
request.Result < - reverseParam
2019-08-21 17:07:19 +03:00
})
2018-12-02 08:48:44 +03:00
defer pool.Release()
http.HandleFunc("/reverse", func(w http.ResponseWriter, r *http.Request) {
2018-12-02 16:53:43 +03:00
param, err := ioutil.ReadAll(r.Body)
2018-12-02 08:48:44 +03:00
if err != nil {
http.Error(w, "request error", http.StatusInternalServerError)
}
defer r.Body.Close()
2018-12-03 05:13:53 +03:00
request := & Request{Param: param, Result: make(chan []byte)}
2018-12-02 16:53:43 +03:00
2018-12-06 19:33:43 +03:00
// Throttle the requests traffic with ants pool. This process is asynchronous and
2018-12-02 08:48:44 +03:00
// you can receive a result from the channel defined outside.
2019-02-19 15:14:20 +03:00
if err := pool.Invoke(request); err != nil {
2018-12-02 08:48:44 +03:00
http.Error(w, "throttle limit error", http.StatusInternalServerError)
}
2018-12-02 16:53:43 +03:00
w.Write(< -request.Result )
2018-12-02 08:48:44 +03:00
})
http.ListenAndServe(":8080", nil)
}
2018-06-08 09:50:56 +03:00
```
2019-10-13 17:38:15 +03:00
### Pool 配置
2019-08-21 17:07:19 +03:00
2018-06-08 09:50:56 +03:00
```go
2019-10-07 15:53:23 +03:00
// Option represents the optional function.
type Option func(opts *Options)
// Options contains all options which will be applied when instantiating a ants pool.
2019-08-21 17:07:19 +03:00
type Options struct {
// ExpiryDuration set the expired time (second) of every worker.
ExpiryDuration time.Duration
// PreAlloc indicate whether to make memory pre-allocation when initializing Pool.
PreAlloc bool
// Max number of goroutine blocking on pool.Submit.
// 0 (default value) means no such limit.
MaxBlockingTasks int
// When Nonblocking is true, Pool.Submit will never be blocked.
// ErrPoolOverload will be returned when Pool.Submit cannot be done at once.
// When Nonblocking is true, MaxBlockingTasks is inoperative.
Nonblocking bool
// PanicHandler is used to handle panics from each worker goroutine.
// if nil, panics will be thrown out again from worker goroutines.
PanicHandler func(interface{})
}
2019-10-07 15:53:23 +03:00
// WithOptions accepts the whole options config.
2019-08-21 17:07:19 +03:00
func WithOptions(options Options) Option {
return func(opts *Options) {
*opts = options
}
}
2019-10-07 15:53:23 +03:00
// WithExpiryDuration sets up the interval time of cleaning up goroutines.
2019-08-21 17:07:19 +03:00
func WithExpiryDuration(expiryDuration time.Duration) Option {
return func(opts *Options) {
opts.ExpiryDuration = expiryDuration
}
}
2019-10-07 15:53:23 +03:00
// WithPreAlloc indicates whether it should malloc for workers.
2019-08-21 17:07:19 +03:00
func WithPreAlloc(preAlloc bool) Option {
return func(opts *Options) {
opts.PreAlloc = preAlloc
}
}
2019-10-07 15:53:23 +03:00
// WithMaxBlockingTasks sets up the maximum number of goroutines that are blocked when it reaches the capacity of pool.
2019-08-21 17:07:19 +03:00
func WithMaxBlockingTasks(maxBlockingTasks int) Option {
return func(opts *Options) {
opts.MaxBlockingTasks = maxBlockingTasks
}
}
2019-10-07 15:53:23 +03:00
// WithNonblocking indicates that pool will return nil when there is no available workers.
2019-08-21 17:07:19 +03:00
func WithNonblocking(nonblocking bool) Option {
return func(opts *Options) {
opts.Nonblocking = nonblocking
}
}
2019-10-07 15:53:23 +03:00
// WithPanicHandler sets up panic handler.
2019-08-21 17:07:19 +03:00
func WithPanicHandler(panicHandler func(interface{})) Option {
return func(opts *Options) {
opts.PanicHandler = panicHandler
}
}
2018-06-08 09:50:56 +03:00
```
2019-08-21 17:07:19 +03:00
通过在调用`NewPool`/`NewPoolWithFunc`之时使用各种 optional function, 可以设置`ants.Options`中各个配置项的值,然后用它来定制化 goroutine pool.
2019-10-13 17:38:15 +03:00
### 自定义池
2018-06-08 09:50:56 +03:00
`ants` 支持实例化使用者自己的一个 Pool ,指定具体的池容量;通过调用 `NewPool` 方法可以实例化一个新的带有指定容量的 Pool ,如下:
``` go
2018-12-06 19:33:43 +03:00
// Set 10000 the size of goroutine pool
2018-07-24 16:53:34 +03:00
p, _ := ants.NewPool(10000)
2019-08-21 17:07:19 +03:00
```
2019-10-13 17:38:15 +03:00
### 任务提交
2019-08-21 17:07:19 +03:00
提交任务通过调用 `ants.Submit(func())` 方法:
```go
ants.Submit(func(){})
2018-06-08 09:50:56 +03:00
```
2019-10-13 17:38:15 +03:00
### 动态调整协程池容量
2019-01-26 19:05:51 +03:00
需要动态调整协程池容量可以通过调用`Tune(int)`:
2018-06-08 09:50:56 +03:00
``` go
2019-01-26 19:05:51 +03:00
pool.Tune(1000) // Tune its capacity to 1000
pool.Tune(100000) // Tune its capacity to 100000
2018-06-08 09:50:56 +03:00
```
该方法是线程安全的。
2019-10-13 17:38:15 +03:00
### 预先分配 goroutine 队列内存
2019-07-26 21:25:26 +03:00
2019-08-21 17:07:19 +03:00
`ants` 允许你预先把整个池的容量分配内存, 这个功能可以在某些特定的场景下提高协程池的性能。比如, 有一个场景需要一个超大容量的池,而且每个 goroutine 里面的任务都是耗时任务,这种情况下,预先分配 goroutine 队列内存将会减少 re-slice 时的复制内存损耗。
2019-07-26 21:25:26 +03:00
```go
// ants will pre-malloc the whole capacity of pool when you invoke this function
2019-08-21 17:07:19 +03:00
p, _ := ants.NewPool(100000, ants.WithPreAlloc(true))
2019-07-26 21:25:26 +03:00
```
2019-10-13 17:38:15 +03:00
### 销毁协程池
2019-01-26 19:05:51 +03:00
```go
pool.Release()
```
2019-10-13 17:38:15 +03:00
## 🧲 Benchmarks
2018-06-08 09:50:56 +03:00
2019-01-22 09:31:45 +03:00
< div align = "center" > < img src = "https://user-images.githubusercontent.com/7496278/51515466-c7ce9e00-1e4e-11e9-89c4-bd3785b3c667.png" / > < / div >
2019-09-05 15:31:52 +03:00
上图中的前两个 benchmark 测试结果是基于100w 任务量的条件,剩下的几个是基于 1000w 任务量的测试结果,`ants` 的默认池容量是 5w。
2018-06-08 09:50:56 +03:00
2019-08-21 17:07:19 +03:00
- BenchmarkGoroutine-4 代表原生 goroutine
2018-06-08 09:50:56 +03:00
2019-09-05 15:31:52 +03:00
- BenchmarkPoolGroutine-4 代表使用协程池 `ants`
2018-06-08 09:50:56 +03:00
### Benchmarks with Pool
2019-01-22 09:31:45 +03:00
![](https://user-images.githubusercontent.com/7496278/51515499-f187c500-1e4e-11e9-80e5-3df8f94fa70f.png)
2018-06-08 09:50:56 +03:00
2019-08-21 17:07:19 +03:00
**这里为了模拟大规模 goroutine 的场景,两次测试的并发次数分别是 100w 和 1000w, 前两个测试分别是执行 100w 个并发任务不使用 Pool 和使用了`ants`的 Goroutine Pool 的性能,后两个则是 1000w 个任务下的表现,可以直观的看出在执行速度和内存使用上,`ants`的 Pool 都占有明显的优势。100w 的任务量,使用`ants`,执行速度与原生 goroutine 相当甚至略快,但只实际使用了不到 5w 个 goroutine 完成了全部任务,且内存消耗仅为原生并发的 40%;而当任务量达到 1000w, 优势则更加明显了: 用了 70w 左右的 goroutine 完成全部任务,执行速度比原生 goroutine 提高了 100%,且内存消耗依旧保持在不使用 Pool 的 40% 左右。**
2018-06-08 09:50:56 +03:00
### Benchmarks with PoolWithFunc
2019-01-22 09:31:45 +03:00
![](https://user-images.githubusercontent.com/7496278/51515565-1e3bdc80-1e4f-11e9-8a08-452ab91d117e.png)
2018-06-08 09:50:56 +03:00
2019-08-21 17:07:19 +03:00
**因为`PoolWithFunc`这个 Pool 只绑定一个任务函数,也即所有任务都是运行同一个函数,所以相较于`Pool`对原生 goroutine 在执行速度和内存消耗的优势更大,上面的结果可以看出,执行速度可以达到原生 goroutine 的 300%,而内存消耗的优势已经达到了两位数的差距,原生 goroutine 的内存消耗达到了`ants`的35倍且原生 goroutine 的每次执行的内存分配次数也达到了`ants`45倍, 1000w 的任务量,`ants`的初始分配容量是 5w, 因此它完成了所有的任务依旧只使用了 5w 个 goroutine! 事实上, `ants`的 Goroutine Pool 的容量是可以自定义的,也就是说使用者可以根据不同场景对这个参数进行调优直至达到最高性能。**
2018-06-28 05:52:20 +03:00
2018-12-05 19:26:28 +03:00
### 吞吐量测试(适用于那种只管提交异步任务而无须关心结果的场景)
2018-06-08 09:50:56 +03:00
#### 10w 任务量
2019-01-22 09:31:45 +03:00
![](https://user-images.githubusercontent.com/7496278/51515590-36abf700-1e4f-11e9-91e4-7bd3dcb5f4a5.png)
2018-06-08 09:50:56 +03:00
#### 100w 任务量
2019-01-22 09:31:45 +03:00
![](https://user-images.githubusercontent.com/7496278/51515596-44617c80-1e4f-11e9-89e3-01e19d2979a1.png)
2018-06-08 09:50:56 +03:00
#### 1000w 任务量
2019-02-19 06:28:13 +03:00
![](https://user-images.githubusercontent.com/7496278/52987732-537c2000-3437-11e9-86a6-177f00d7a1d6.png)
2018-06-08 09:50:56 +03:00
2019-10-13 17:38:15 +03:00
## 📊 性能小结
2019-02-19 06:28:13 +03:00
2019-08-21 19:26:33 +03:00
![](https://user-images.githubusercontent.com/7496278/63449727-3ae6d400-c473-11e9-81e3-8b3280d8288a.gif)
2018-06-08 09:50:56 +03:00
2019-09-24 08:35:42 +03:00
**从该 demo 测试吞吐性能对比可以看出,使用`ants`的吞吐性能相较于原生 goroutine 可以保持在 2-6 倍的性能压制,而内存消耗则可以达到 10-20 倍的节省优势。**
2019-10-14 14:31:25 +03:00
## 👏 贡献者
请在提 PR 之前仔细阅读 [Contributing Guidelines ](CONTRIBUTING.md ),感谢那些为 `ants` 贡献过代码的开发者!
[![ ](https://opencollective.com/ants/contributors.svg?width=890&button=false )](https://github.com/panjf2000/ants/graphs/contributors)
2019-10-13 17:38:15 +03:00
## 📄 证书
2019-09-24 08:35:42 +03:00
`gnet` 的源码允许用户在遵循 MIT [开源证书 ](/LICENSE ) 规则的前提下使用。
2019-10-13 17:38:15 +03:00
## 📚 相关文章
2019-09-24 08:35:42 +03:00
- [Goroutine 并发调度模型深度解析之手撸一个高性能协程池 ](https://taohuawu.club/high-performance-implementation-of-goroutine-pool )
2019-10-13 17:38:15 +03:00
## 👨👨👧👦 谁在使用 ants( 欢迎补充 ~~)
2019-09-24 08:35:42 +03:00
2019-10-14 14:31:25 +03:00
< a href = "https://github.com/panjf2000/gnet" target = "_blank" > < img src = "https://raw.githubusercontent.com/panjf2000/logos/master/gnet/logo.png" width = "150" align = "middle" / > < / a >
2019-10-21 07:27:37 +03:00
< a href = "https://bytedance.com" > < img src = "https://bytedance.com/static/images/logo@2x.png" width = "300" align = "middle" / > < / a >
< a href = "https://www.tencent.com" > < img src = "https://www.tencent.com/images/2x/global/footer_logo.png" width = "250" align = "middle" / > < / a >
2019-10-14 14:31:25 +03:00
## 💰 支持
如果有意向,可以通过每个月定量的少许捐赠来支持这个项目。
< a href = "https://opencollective.com/ants#backers" target = "_blank" > < img src = "https://opencollective.com/ants/backers.svg" > < / a >
## 💎 赞助
每月定量捐赠 10 刀即可成为本项目的赞助者,届时您的 logo 或者 link 可以展示在本项目的 README 上。
< a href = "https://opencollective.com/ants#sponsors" target = "_blank" > < img src = "https://opencollective.com/ants/sponsors.svg" > < / a >
## ☕️ 打赏
2019-10-14 17:18:20 +03:00
< img src = "https://raw.githubusercontent.com/panjf2000/illustrations/master/payments/WeChatPay.JPG" width = "250" align = "middle" / >
< img src = "https://raw.githubusercontent.com/panjf2000/illustrations/master/payments/AliPay.JPG" width = "250" align = "middle" / >
< a href = "https://www.paypal.me/R136a1X" target = "_blank" > < img src = "https://raw.githubusercontent.com/panjf2000/illustrations/master/payments/PayPal.JPG" width = "250" align = "middle" / > < / a >