python multiprocessing遇到Can’t pickle instancemethod问题

遇到一个坑,Can’t pickle instancemethod …

前言:
今天写了一个小脚本,因为涉及到cpu运算的事件,所以用了多进程. 因为大量复用了以前的类,就遇到了奇怪的问题。 我这里就不暴露我的业务代码,临时写了个小demo供大家测试下。

#blog: xiaorui.cc
 
import time
import multiprocessing
 
class Go():
    def run(self,args):
        print 'end'
        print args
 
pool = multiprocessing.Pool(processes=1)
pool.apply_async(Go().run,(60,))
pool.close()
pool.join()

然后你会遇到下面的报错信息: >

Exception in thread Thread-2:
Traceback (most recent call last):
  File “/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py”, line 810, in __bootstrap_inner
    self.run()
  File “/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py”, line 763, in run
    self.__target(*self.__args, **self.__kwargs)
  File “/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/pool.py”, line 342, in _handle_tasks
    put(task)
PicklingError: Can’t pickle <type ‘instancemethod’>: attribute lookup __builtin__.instancemethod failed

我们看下multiprocessing pool.py的源码,纠结下哪里出的问题.

#blog: xiaorui.cc
 
#入口函数.
def apply_async(self, func, args=(), kwds={}, callback=None):
    assert self._state == RUN
    result = ApplyResult(self._cache, callback)
    self._taskqueue.put(([(result._job, None, func, args, kwds)], None))
    return result
 
def worker(inqueue, outqueue, initializer=None, initargs=(), maxtasks=None):
    put = outqueue.put  #put函数
 
@staticmethod
def _handle_tasks(taskqueue, put, outqueue, pool):
    for taskseq, set_length in iter(taskqueue.get, None):
        i = -1
        for i, task in enumerate(taskseq):
            if thread._state:
                debug('task handler found thread._state != RUN')
                break
            try:
                put(task)        #这里报错....
            except IOError:
                debug('could not put task on queue')

PicklingError: Can’t pickle <type ‘instancemethod’>: attribute lookup builtin.instancemethod failed 这个报错给出的信息很明显… 不知道这算是multiprocessing的坑,还是pickle的坑. 看了些stackoverflow回复,貌似在python3.4解决了这类问题.

我们首先要明白,这问题是怎么引起的?

python的multiprocessing pool进程池隐形的加入了一个任务队列,在你apply_async的时候,他会使用pickle序列化对象,但是python 2.x的pickle应该是不支持这种模式的序列化.

解决的方法有这么几种: >

第一种:

  • 把执行的函数放在外面,这样就避免了把类的实例序列化. 如果不能直接放在外面的化,可以再用一个的函数来包装下.

第二种:

  • 不使用进程池,而使用Process函数解决fork进程,这样也避免了pickle序列化对象.
#blog: xiaorui.cc
 
import multiprocessing
p = multiprocessing.Process(target=Go().run, args=(1, ))
p.start()
p.join()

第三种:

  • 使用copy_reg将MethodType注册为可序列化的方法
#blog: xiaorui.cc
 
import copy_reg
import types
 
def _pickle_method(m):
    if m.im_self is None:
        return getattr, (m.im_class, m.im_func.func_name)
    else:
        return getattr, (m.im_self, m.im_func.func_name)
 
copy_reg.pickle(types.MethodType, _pickle_method)

第四种,

  • 加入一个中间函数,使用getattr自省黑魔法调用真正的函数.
#blog: xiaorui.cc
 
def proxy(instance, *args):
    getattr(instance(),'run')('xiaorui.cc')
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值