线程池(ThreadPool)
2016-07-05
线程池,顾名思义,就是一个像水池一样的数据结构,里面养有一些线程,想用的时候就从里面取,不用的时候再放回去。所以从概念上讲线程池还是比较简单的。
线程池使用场景分析:
首先来分析一个线程的产生与销毁过程。
- T1: 创建线程时间;
- T2: 在线程中执行任务的时间;
- T3: 销毁线程时间。
线程的产生与销毁花费时间为 T1+T3
,真正用来做任务的时间为T2
,如果任务正好需要频繁执行而且单个任务花费时间又较短,那么就需要频繁的产生和销毁线程,总体来看T1+T3
就会比较大,影响执行效率。
而如果采用了线程池,在任务执行之前就保存一批线程,想用的时候就拿过来用,用完放回去,就不需要线程不断的建立和销毁,也就是说节省了T1+T3
的时间。
所以可以看出来线程池比较适合处理一些相互独立而又频繁执行的小任务。
线程池大小
这个还是需要考虑具体场景的任务类型。
如果我们放到线程池的任务属于 I/O-bound
,也就是大部分时间花在I/O
上面,那么我们就可以多开一些固定线程放到线程池,因为大部分时候线程池里的任务都是I/O
等待状态,是不会占用CPU
的。这样,我们就可以实现较高的任务并发;
相反,如果我们的任务都是一些占用计算资源的,也就是CPU-bound
,那么开过多的线程就不好了,因为这样频繁的线程上下文切换带来的花销并不合算。
使用线程池
Python里面的 concurrent.futures 提供了两种并发实现,一种是基于多进程,另一种基于多线程。 我们这里主要关注多线程的实现。多线程的实现使用的就是线程池; 先看一下使用方法:
In [2]: from concurrent.futures import ThreadPoolExecutor
In [3]: with ThreadPoolExecutor(max_workers=1) as executor:
...: future = executor.submit(pow, 323, 1235)
...: print(future.result())
是的,非常简单,只要我们指定max_workers
即线程池的大小,然后向线程池丢任务函数就可以了。至于max_workers
的大小,已经说过了,可以根据具体的使用场景来设定。
实现线程池
上面我们在Python里使用的线程池的官方实现代码: ThreadPoolExecutor
一个完备的线程池至少应该有这4项组成:
- 任务队列: 用于存放没有处理的任务。提供一种缓冲机制。
- 工作线程: 线程池中线程
- 线程池管理器: 用于创建并管理线程池
- 任务接口: 每个任务必须实现的接口,以供工作线程调度任务的执行。
下面我们就来剖析一下它的源码来看看线程池的这几个构成是如何体现的。
这是源码,里面我加了一下一些中文注释:
# Copyright 2009 Brian Quinlan. All Rights Reserved.
# Licensed to PSF under a Contributor Agreement.
"""Implements ThreadPoolExecutor."""
__author__ = 'Brian Quinlan (brian@sweetapp.com)'
import atexit
from concurrent.futures import _base
import queue
import threading
import weakref
import os
_threads_queues = weakref.WeakKeyDictionary()
_shutdown = False
def _python_exit():
global _shutdown
_shutdown = True
items = list(_threads_queues.items())
for t, q in items:
q.put(None)
for t, q in items:
t.join()
atexit.register(_python_exit)
class _WorkItem(object):
"""将 submit 的任务函数进行包装"""
def __init__(self, future, fn, args, kwargs):
self.future = future
self.fn = fn
self.args = args
self.kwargs = kwargs
def run(self):
if not self.future.set_running_or_notify_cancel():
return
try:
result = self.fn(*self.args, **self.kwargs)
except BaseException as e:
self.future.set_exception(e)
else:
self.future.set_result(result)
def _worker(executor_reference, work_queue):
# 每一个工作线程都会不断的从工作队列里面取任务
try:
while True:
work_item = work_queue.get(block=True)
if work_item is not None:
work_item.run()
# Delete references to object. See issue16284
del work_item
continue
executor = executor_reference()
# 工作线程退出 可能原因:
# - Python 解释器退出
# - 线程池被垃圾收集器收集
# - 线程池被关闭
if _shutdown or executor is None or executor._shutdown:
# Notice other workers
work_queue.put(None)
return
del executor
except BaseException:
_base.LOGGER.critical('Exception in worker', exc_info=True)
class ThreadPoolExecutor(_base.Executor):
def __init__(self, max_workers=None):
"""初始化一个新的线程池对象.
参数:
max_workers: 线程池里面最多的工作线程数量.
"""
if max_workers is None:
# 如果不显式指定最大工作线程数量, 则默认会指定核数
# 乘以5的线程数量, 因为线程池执行的任务多是属于I/O
# 密集型而不是 CPU密集型.
max_workers = (os.cpu_count() or 1) * 5
if max_workers <= 0:
raise ValueError("max_workers must be greater than 0")
self._max_workers = max_workers
# 任务队列: 直接使用Python自带的队列
self._work_queue = queue.Queue()
self._threads = set()
self._shutdown = False
self._shutdown_lock = threading.Lock()
def submit(self, fn, *args, **kwargs):
# 使用锁来确保往任务队列里放任务的一系列
# 行为的正确性.
with self._shutdown_lock:
if self._shutdown:
raise RuntimeError('cannot schedule new futures after shutdown')
f = _base.Future()
w = _WorkItem(f, fn, args, kwargs)
# 将包装好的任务放到任务队列
self._work_queue.put(w)
# 增加工作线程的数量,直到达到 max_worker 为止
self._adjust_thread_count()
# submit 成功后会返回 future 对象
return f
submit.__doc__ = _base.Executor.submit.__doc__
def _adjust_thread_count(self):
def weakref_cb(_, q=self._work_queue):
q.put(None)
# TODO: 如果已有的工作线程大部分都在空闲的话应避免
# 再生成新线程.
if len(self._threads) < self._max_workers:
t = threading.Thread(target=_worker,
args=(weakref.ref(self, weakref_cb),
self._work_queue))
t.daemon = True
# 工作线程启动: 执行 _worker 函数
t.start()
self._threads.add(t)
_threads_queues[t] = self._work_queue
def shutdown(self, wait=True):
with self._shutdown_lock:
self._shutdown = True
self._work_queue.put(None)
if wait:
for t in self._threads:
t.join()
shutdown.__doc__ = _base.Executor.shutdown.__doc__
线程池被封装成了一个类: class ThreadPoolExecutor(_base.Executor)
任务队列为: self._work_queue = queue.Queue()
工作线程:即为线程池里的线程,刚开始,每向线程池提交一个任务就会产生一个工作线程,直到工作线程的数量达到指定的线程池大小max_workers
为止。以后再向线程池添加任务会继续放到任务队列里面,但不会开新的线程了。
线程池管理器:应该有这些功能,创建线程池,销毁线程池,添加新任务等;但是在代码里面这些个功能是分布在不同函数里面的.
创建线程池是在 def _adjust_thread_count(self)
这里不断的创建新的线程并放到 _threads_queues
里面;
销毁线程池是在 def shutdown(self, wait=True)
这个函数里面;
添加新任务就是我们最常使用的 def submit(self, fn, *args, **kwargs)
函数。
任务接口: class _WorkItem(object)
提供了对任务函数的包装;def _worker(executor_reference, work_queue)
给工作线程提供了执行入口。