2018-06-08 09:50:56 +03:00
|
|
|
|
# ants
|
|
|
|
|
|
|
|
|
|
<div align="center"><img src="ants_logo.png"/></div>
|
|
|
|
|
|
|
|
|
|
<p align="center">A goroutine pool for Go</p>
|
|
|
|
|
|
2018-06-29 05:57:03 +03:00
|
|
|
|
[![Build Status][1]][2]
|
2018-07-16 07:28:21 +03:00
|
|
|
|
[![codecov][3]][4]
|
2018-06-29 05:57:03 +03:00
|
|
|
|
[![goreportcard for panjf2000/ants][5]][6]
|
2018-07-16 07:28:21 +03:00
|
|
|
|
[![godoc for panjf2000/ants][7]][8]
|
|
|
|
|
[![MIT Licence][9]][10]
|
2018-06-08 09:50:56 +03:00
|
|
|
|
|
2018-07-23 17:19:03 +03:00
|
|
|
|
[英文说明页](README.md) | [项目介绍文章传送门](http://blog.taohuawu.club/article/goroutine-pool)
|
2018-06-08 09:50:56 +03:00
|
|
|
|
|
|
|
|
|
`ants`是一个高性能的协程池,实现了对大规模goroutine的调度管理、goroutine复用,允许使用者在开发并发程序的时候限制协程数量,复用资源,达到更高效执行任务的效果。
|
|
|
|
|
|
|
|
|
|
## 功能:
|
|
|
|
|
|
|
|
|
|
- 实现了自动调度并发的goroutine,复用goroutine
|
2018-07-09 11:36:03 +03:00
|
|
|
|
- 定时清理过期的goroutine,进一步节省资源
|
2018-06-08 09:50:56 +03:00
|
|
|
|
- 提供了友好的接口:任务提交、获取运行中的协程数量、动态调整协程池大小
|
|
|
|
|
- 资源复用,极大节省内存使用量;在大规模批量并发任务场景下比原生goroutine并发具有更高的性能
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 安装
|
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
go get -u github.com/panjf2000/ants
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
使用包管理工具 glide 安装:
|
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
glide get github.com/panjf2000/ants
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 使用
|
|
|
|
|
写 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
|
|
|
|
|
|
|
|
|
"github.com/panjf2000/ants"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var sum int32
|
|
|
|
|
|
|
|
|
|
func myFunc(i interface{}) error {
|
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)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func demoFunc() error {
|
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
|
fmt.Println("Hello World!")
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func main() {
|
2018-07-02 09:45:25 +03:00
|
|
|
|
defer ants.Release()
|
|
|
|
|
|
2018-06-08 09:50:56 +03:00
|
|
|
|
runTimes := 1000
|
|
|
|
|
|
|
|
|
|
// use the common pool
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
for i := 0; i < runTimes; i++ {
|
|
|
|
|
wg.Add(1)
|
|
|
|
|
ants.Submit(func() error {
|
|
|
|
|
demoFunc()
|
|
|
|
|
wg.Done()
|
|
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
wg.Wait()
|
|
|
|
|
fmt.Printf("running goroutines: %d\n", ants.Running())
|
|
|
|
|
fmt.Printf("finish all tasks.\n")
|
|
|
|
|
|
|
|
|
|
// use the pool with a function
|
2018-07-06 15:39:23 +03:00
|
|
|
|
// set 10 the size of goroutine pool and 1 second for expired duration
|
2018-07-08 05:29:12 +03:00
|
|
|
|
p, _ := ants.NewPoolWithFunc(10, func(i interface{}) error {
|
2018-06-08 09:50:56 +03:00
|
|
|
|
myFunc(i)
|
|
|
|
|
wg.Done()
|
|
|
|
|
return nil
|
|
|
|
|
})
|
2018-07-02 09:45:25 +03:00
|
|
|
|
defer p.Release()
|
2018-06-08 09:50:56 +03:00
|
|
|
|
// submit tasks
|
|
|
|
|
for i := 0; i < runTimes; i++ {
|
|
|
|
|
wg.Add(1)
|
2018-07-02 09:45:25 +03:00
|
|
|
|
p.Serve(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)
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 任务提交
|
|
|
|
|
提交任务通过调用 `ants.Submit(func())`方法:
|
|
|
|
|
```go
|
2018-07-24 16:53:34 +03:00
|
|
|
|
ants.Submit(func() error {})
|
2018-06-08 09:50:56 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 自定义池
|
|
|
|
|
`ants`支持实例化使用者自己的一个 Pool ,指定具体的池容量;通过调用 `NewPool` 方法可以实例化一个新的带有指定容量的 Pool ,如下:
|
|
|
|
|
|
|
|
|
|
``` go
|
2018-07-24 16:53:34 +03:00
|
|
|
|
// set 10000 the size of goroutine pool
|
|
|
|
|
p, _ := ants.NewPool(10000)
|
2018-06-08 09:50:56 +03:00
|
|
|
|
// submit a task
|
|
|
|
|
p.Submit(func() {})
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 动态调整协程池容量
|
|
|
|
|
需要动态调整协程池容量可以通过调用`ReSize(int)`:
|
|
|
|
|
|
|
|
|
|
``` go
|
|
|
|
|
pool.ReSize(1000) // Readjust its capacity to 1000
|
|
|
|
|
pool.ReSize(100000) // Readjust its capacity to 100000
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
该方法是线程安全的。
|
|
|
|
|
|
|
|
|
|
## Benchmarks
|
|
|
|
|
|
|
|
|
|
系统参数:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
OS : macOS High Sierra
|
|
|
|
|
Processor : 2.7 GHz Intel Core i5
|
|
|
|
|
Memory : 8 GB 1867 MHz DDR3
|
2018-07-06 15:39:23 +03:00
|
|
|
|
|
|
|
|
|
Go1.9
|
2018-06-08 09:50:56 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div align="center"><img src="ants_benchmarks.png"/></div>
|
|
|
|
|
|
|
|
|
|
上图中的前两个 benchmark 测试结果是基于100w任务量的条件,剩下的几个是基于1000w任务量的测试结果,`ants`的默认池容量是5w。
|
|
|
|
|
|
|
|
|
|
- BenchmarkGoroutine-4 代表原生goroutine
|
|
|
|
|
|
|
|
|
|
- BenchmarkPoolGroutine-4 代表使用协程池`ants`
|
|
|
|
|
|
|
|
|
|
### Benchmarks with Pool
|
|
|
|
|
|
|
|
|
|
![](benchmark_pool.png)
|
|
|
|
|
|
2018-06-28 17:27:53 +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
|
|
|
|
|
|
|
|
|
|
![](ants_bench_poolwithfunc.png)
|
|
|
|
|
|
2018-06-28 17:27:53 +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-06-08 09:50:56 +03:00
|
|
|
|
|
|
|
|
|
#### 10w 任务量
|
|
|
|
|
|
|
|
|
|
![](ants_bench_10w.png)
|
|
|
|
|
|
|
|
|
|
#### 100w 任务量
|
|
|
|
|
|
|
|
|
|
![](ants_bench_100w.png)
|
|
|
|
|
|
|
|
|
|
#### 1000w 任务量
|
|
|
|
|
|
|
|
|
|
![](ants_bench_1000w.png)
|
|
|
|
|
|
|
|
|
|
1000w任务量的场景下,我的电脑已经无法支撑 golang 的原生 goroutine 并发,所以只测出了使用`ants`池的测试结果。
|
|
|
|
|
|
2018-06-28 06:11:16 +03:00
|
|
|
|
**从该demo测试吞吐性能对比可以看出,使用ants的吞吐性能相较于原生goroutine可以保持在2-6倍的性能压制,而内存消耗则可以达到10-20倍的节省优势。**
|
2018-06-28 05:52:20 +03:00
|
|
|
|
|
2018-06-29 05:59:02 +03:00
|
|
|
|
[1]: https://travis-ci.com/panjf2000/ants.svg?branch=develop
|
2018-06-29 05:57:03 +03:00
|
|
|
|
[2]: https://travis-ci.com/panjf2000/ants
|
2018-07-16 07:28:21 +03:00
|
|
|
|
[3]: https://codecov.io/gh/panjf2000/ants/branch/develop/graph/badge.svg
|
|
|
|
|
[4]: https://codecov.io/gh/panjf2000/ants
|
2018-06-29 05:57:03 +03:00
|
|
|
|
[5]: https://goreportcard.com/badge/github.com/panjf2000/ants
|
|
|
|
|
[6]: https://goreportcard.com/report/github.com/panjf2000/ants
|
2018-07-16 07:28:21 +03:00
|
|
|
|
[7]: https://godoc.org/github.com/panjf2000/ants?status.svg
|
|
|
|
|
[8]: https://godoc.org/github.com/panjf2000/ants
|
|
|
|
|
[9]: https://badges.frapsoft.com/os/mit/mit.svg?v=103
|
|
|
|
|
[10]: https://opensource.org/licenses/mit-license.php
|