Python中的进程池与线程池

  • 引入进程池与线程池

  • 使用ProcessPoolExecutor进程池,使用ThreadPoolExecutor

  • 使用shutdown

  • 使用submit同步调用

  • 使用submit异步调用

  • 异步+回调函数

  • 并发实现套接字通信

引入进程池

在学习线程池之前,我们先看一个例子

 1 # from multiprocessing import Process
 2 # import time
 3 #
 4 # def task(name):
 5 #     print('name',name)
 6 #     time.sleep(1)
 7 # if __name__ == '__main__':
 8 #     start=time.time()
 9 #     p1 = Process(target=task,args=("safly1",))
10 #     p2 = Process(target=task, args=("safly2",))
11 #     p3 = Process(target=task, args=("safly3",))
12 #
13 #     p1.start()
14 #     p2.start()
15 #     p3.start()
16 #
17 #     p1.join()
18 #     p2.join()
19 #     p3.join()
20 #
21 #     print("main")
22 #
23 #     end = time.time()
24 #     print(end- start)

输出如下:

 以上的方式是一个个创建进程,这样的耗费时间才1秒多,虽然高效,但是有什么弊端呢? 
如果并发很大的话,会给服务器带来很大的压力,所以引入了进程池的概念

使用ProcessPoolExecutor进程池

什么时候用池:
池的功能是限制启动的进程数或线程数,
什么时候应该限制???
当并发的任务数远远超过了计算机的承受能力时,即无法一次性开启过多的进程数或线程数时
就应该用池的概念将开启的进程数或线程数限制在计算机可承受的范围内

Python3.2开始,标准库为我们提供了concurrent.futures模块,它提供了ThreadPoolExecutor和ProcessPoolExecutor两个类,实现了对threading和multiprocessing的进一步抽象,对编写线程池/进程池提供了直接的支持。

通过ProcessPoolExecutor 来做示例。 
我们来看一个最简单的进程池

 1 from concurrent.futures import ProcessPoolExecutor
 2 import time
 3 def task(name):
 4     print('name',name)
 5     time.sleep(1)
 6 if __name__ == '__main__':
 7     start=time.time()
 8     p1=ProcessPoolExecutor(2)
 9     for i in range(5):
10         p1.submit(task,i)
11     p1.shutdown(wait=True)
12     print('')
13     end=time.time()
14     print(end-start)

输出如下:

 1 D:\APPS\Python3.7\python.exe "D:/Python/project one/day20180717/进程池与线程池.py"
 2 name 0
 3 name 1
 4 name 2
 5 name 3
 6 name 4
 7  8 3.118098258972168
 9 
10 Process finished with exit code 0

简单解释下: 
ProcessPoolExecutor(2)创建一个进程池,容量为2,循环submit出5个进程,然后就在线程池队列里面,执行多个进程,p1.shutdown(wait=True)意思是进程都执行完毕,在执行主进程的内容

使用shutdown

p1.shutdown(wait=True)是进程池内部的进程都执行完毕,才会关闭,然后执行后续代码 
如果改成false呢?看如下代码

 1 from concurrent.futures import ProcessPoolExecutor
 2 import time
 3 def task(name):
 4     print('name',name)
 5     time.sleep(1)
 6 if __name__ == '__main__':
 7     start=time.time()
 8     p1=ProcessPoolExecutor(2)
 9     for i in range(5):
10         p1.submit(task,i)
11     p1.shutdown(wait=False)
12     print('')
13     end=time.time()
14     print(end-start)

输出如下:

 1 D:\APPS\Python3.7\python.exe "D:/Python/project one/day20180717/进程池与线程池.py"
 2  3 0.008975744247436523
 4 name 0
 5 name 1
 6 name 2
 7 name 3
 8 name 4
 9 
10 Process finished with exit code 0

使用submit同步调用

同步:提交完任务后就在原地等待,直到任务运行完毕并且拿到返回值后,才运行下一行代码

from concurrent.futures import ProcessPoolExecutor
import time, random, os

def piao(name, n):
    print('%s is piaoing %s' % (name, os.getpid()))
    time.sleep(1)
    return n ** 2


if __name__ == '__main__':
    p = ProcessPoolExecutor(2)
    start = time.time()
    for i in range(5):
        res=p.submit(piao,'safly %s' %i,i).result() #同步调用
        print(res)

    p.shutdown(wait=True)
    print('', os.getpid())

    stop = time.time()
    print(stop - start)
 1 D:\APPS\Python3.7\python.exe "D:/Python/project one/day20180717/进程池与线程池.py"
 2 safly 0 is piaoing 11448
 3 0
 4 safly 1 is piaoing 11800
 5 1
 6 safly 2 is piaoing 11448
 7 4
 8 safly 3 is piaoing 11800
 9 9
10 safly 4 is piaoing 11448
11 16
12 主 8516
13 5.095325946807861
14 
15 Process finished with exit code 0

使用submit异步调用

异步:提交完任务(绑定一个回调函数)后不原地等待,直接运行下一行代码,等到任务运行有返回值自动触发回调的函数的运行

 1 from concurrent.futures import ThreadPoolExecutor
 2 import time
 3 def task(name):
 4     print('name',name)
 5     time.sleep(1)
 6 if __name__ == '__main__':
 7     start=time.time()
 8     p1=ThreadPoolExecutor(2)
 9     for i in range(5):
10         p1.submit(task,i)
11     p1.shutdown(wait=True)
12     print('')
13     end=time.time()
14     print(end-start)
简单小例子
1 D:\APPS\Python3.7\python.exe "D:/Python/project one/day20180717/进程池与线程池.py"
2 name 0
3 name 1
4 name 2
5 name 3
6 name 4
7 8 3.003053903579712
结果

使用回调函数+异步

进程
# from concurrent.futures import ProcessPoolExecutor,ThreadPoolExecutor
# import os
# import time
# import random
#
# def task(n):
#     print('%s run...' %os.getpid())
#     time.sleep(5)
#     return n**2
#
# def parse(future):
#     time.sleep(1)
#     res=future.result()
#     print('%s 处理了 %s' %(os.getpid(),res))
#
# if __name__ == '__main__':
#     pool=ProcessPoolExecutor(4)
#     # pool.submit(task,1)
#     # pool.submit(task,2)
#     # pool.submit(task,3)
#     # pool.submit(task,4)
#
#     start=time.time()
#     for i in range(1,5):
#         future=pool.submit(task,i)
#         future.add_done_callback(parse) # parse会在futrue有返回值时立刻触发,并且将future当作参数传给parse
#     pool.shutdown(wait=True)
#     stop=time.time()
#     print('主',os.getpid(),(stop - start))

 1 from concurrent.futures import ProcessPoolExecutor,ThreadPoolExecutor
 2 from threading import current_thread
 3 import os
 4 import time
 5 import random
 6 
 7 def task(n):
 8     print('%s run...' %current_thread().name)
 9     time.sleep(5)
10     return n**2
11 
12 def parse(future):
13     time.sleep(1)
14     res=future.result()
15     print('%s 处理了 %s' %(current_thread().name,res))
16 
17 if __name__ == '__main__':
18     pool=ThreadPoolExecutor(4)
19     start=time.time()
20     for i in range(1,5):
21         future=pool.submit(task,i)
22         future.add_done_callback(parse) # parse会在futrue有返回值时立刻触发,并且将future当作参数传给parse
23     pool.shutdown(wait=True)
24     stop=time.time()
25     print('',current_thread().name,(stop - start))
线程

并发实现套接字通信

 1 from socket import *
 2 from threading import Thread
 3 
 4 def talk(conn):
 5     while True:
 6         try:
 7             data=conn.recv(1024)
 8             if len(data) == 0:break
 9             conn.send(data.upper())
10         except ConnectionResetError:
11             break
12     conn.close()
13 
14 def server(ip,port,backlog=5):
15     server = socket(AF_INET, SOCK_STREAM)
16     server.bind((ip, port))
17     server.listen(backlog)
18 
19     print('starting...')
20     while True:
21         conn, addr = server.accept()
22 
23         t = Thread(target=talk, args=(conn,))
24         t.start()
25 
26 if __name__ == '__main__':
27     server('127.0.0.1',8080)
服务端
 1 from socket import *
 2 import os
 3 
 4 client=socket(AF_INET,SOCK_STREAM)
 5 client.connect(('127.0.0.1',8080))
 6 
 7 while True:
 8     msg='%s say hello' %os.getpid()
 9     client.send(msg.encode('utf-8'))
10     data=client.recv(1024)
11     print(data.decode('utf-8'))
客户端

扩展:

回调函数(callback)是什么?

以下均来自知乎:

回调函数(callback)是什么? - no.body的回答 - 知乎 https://www.zhihu.com/question/19801131/answer/27459821

非常经典的回答加举例。

猜你喜欢

转载自www.cnblogs.com/huyingsakai/p/9325713.html