ants/README_ZH.md

259 lines
8.0 KiB
Markdown
Raw Normal View History

2018-06-08 09:50:56 +03:00
# ants
2019-01-25 16:25:42 +03:00
<div align="center"><img src="https://user-images.githubusercontent.com/7496278/51748488-8efd2600-20e7-11e9-91f5-1c5b466dcca1.jpg"/></div>
2018-06-08 09:50:56 +03:00
<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:25:25 +03:00
[![codecov][3]][4]
2018-06-29 05:57:03 +03:00
[![goreportcard for panjf2000/ants][5]][6]
2018-07-16 07:25:25 +03:00
[![godoc for panjf2000/ants][7]][8]
[![MIT Licence][9]][10]
2018-06-08 09:50:56 +03:00
2019-01-25 15:59:23 +03:00
[英文](README.md) | [项目介绍文章传送门](http://blog.taohuawu.club/article/goroutine-pool)
2018-06-08 09:50:56 +03:00
`ants`是一个高性能的协程池实现了对大规模goroutine的调度管理、goroutine复用允许使用者在开发并发程序的时候限制协程数量复用资源达到更高效执行任务的效果。
## 功能:
2018-06-08 09:50:56 +03:00
- 实现了自动调度并发的goroutine复用goroutine
2018-07-09 11:36:42 +03:00
- 定时清理过期的goroutine进一步节省资源
2018-06-08 09:50:56 +03:00
- 提供了友好的接口:任务提交、获取运行中的协程数量、动态调整协程池大小
- 优雅处理panic防止程序崩溃
2018-06-08 09:50:56 +03:00
- 资源复用极大节省内存使用量在大规模批量并发任务场景下比原生goroutine并发具有更高的性能
## 目前测试通过的Golang版本
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- master
2018-06-08 09:50:56 +03:00
## 安装
``` 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
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
2018-12-06 19:33:43 +03:00
// Use the common pool
2018-06-08 09:50:56 +03:00
var wg sync.WaitGroup
for i := 0; i < runTimes; i++ {
wg.Add(1)
2018-12-01 14:41:02 +03:00
ants.Submit(func() {
2018-06-08 09:50:56 +03:00
demoFunc()
wg.Done()
})
}
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,
// set 10 to the size 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()
2018-12-06 19:33:43 +03:00
// Submit tasks
2018-06-08 09:50:56 +03:00
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)
}
2018-12-05 19:50:33 +03:00
```
2018-12-02 08:48:44 +03:00
## 与http server集成
```go
package main
import (
"io/ioutil"
"net/http"
"github.com/panjf2000/ants"
)
type Request struct {
Param []byte
Result chan []byte
}
2018-12-02 08:48:44 +03:00
func main() {
pool, _ := ants.NewPoolWithFunc(100, 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 {
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
}(request.Param)
2018-12-02 08:48:44 +03:00
request.Result <- reverseParam
2018-12-02 08:48:44 +03:00
})
defer pool.Release()
http.HandleFunc("/reverse", func(w http.ResponseWriter, r *http.Request) {
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-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.
if err := pool.Serve(request); err != nil {
2018-12-02 08:48:44 +03:00
http.Error(w, "throttle limit error", http.StatusInternalServerError)
}
w.Write(<-request.Result)
2018-12-02 08:48:44 +03:00
})
http.ListenAndServe(":8080", nil)
}
2018-06-08 09:50:56 +03:00
```
## 任务提交
提交任务通过调用 `ants.Submit(func())`方法:
```go
2018-12-02 08:48:44 +03:00
ants.Submit(func(){})
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)
2018-12-06 19:33:43 +03:00
// Submit a task
2018-12-02 08:48:44 +03:00
p.Submit(func(){})
2018-06-08 09:50:56 +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-01-26 19:05:51 +03:00
## 销毁协程池
```go
pool.Release()
```
2018-06-08 09:50:56 +03:00
## 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
Go Version: 1.9
2018-06-08 09:50:56 +03:00
```
<div align="center"><img src="https://user-images.githubusercontent.com/7496278/51515466-c7ce9e00-1e4e-11e9-89c4-bd3785b3c667.png"/></div>
2018-06-08 09:50:56 +03:00
上图中的前两个 benchmark 测试结果是基于100w任务量的条件剩下的几个是基于1000w任务量的测试结果`ants`的默认池容量是5w。
- BenchmarkGoroutine-4 代表原生goroutine
- BenchmarkPoolGroutine-4 代表使用协程池`ants`
### Benchmarks with Pool
![](https://user-images.githubusercontent.com/7496278/51515499-f187c500-1e4e-11e9-80e5-3df8f94fa70f.png)
2018-06-08 09:50:56 +03:00
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
![](https://user-images.githubusercontent.com/7496278/51515565-1e3bdc80-1e4f-11e9-8a08-452ab91d117e.png)
2018-06-08 09:50:56 +03:00
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 任务量
![](https://user-images.githubusercontent.com/7496278/51515590-36abf700-1e4f-11e9-91e4-7bd3dcb5f4a5.png)
2018-06-08 09:50:56 +03:00
#### 100w 任务量
![](https://user-images.githubusercontent.com/7496278/51515596-44617c80-1e4f-11e9-89e3-01e19d2979a1.png)
2018-06-08 09:50:56 +03:00
#### 1000w 任务量
![](https://user-images.githubusercontent.com/7496278/51515615-5e9b5a80-1e4f-11e9-8816-66a935c32b05.png)
2018-06-08 09:50:56 +03:00
1000w任务量的场景下我的电脑已经无法支撑 golang 的原生 goroutine 并发,所以只测出了使用`ants`池的测试结果。
2018-12-05 19:50:33 +03:00
**从该demo测试吞吐性能对比可以看出使用`ants`的吞吐性能相较于原生goroutine可以保持在2-6倍的性能压制而内存消耗则可以达到10-20倍的节省优势。**
2018-06-28 05:52:20 +03:00
[1]: https://travis-ci.com/panjf2000/ants.svg?branch=master
2018-06-29 05:57:03 +03:00
[2]: https://travis-ci.com/panjf2000/ants
[3]: https://codecov.io/gh/panjf2000/ants/branch/master/graph/badge.svg
2018-07-16 07:25:25 +03:00
[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:25:25 +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