Приношу свои извинения за длительный пост.Надеюсь, это даст достаточно контекста для решения.Я попытался создать служебную функцию, которая будет принимать любое количество старых classmethod
s и помещать их в многопоточную очередь:
class QueuedCall(threading.Thread):
def __init__(self, name, queue, fn, args, cb):
threading.Thread.__init__(self)
self.name = name
self._cb = cb
self._fn = fn
self._queue = queue
self._args = args
self.daemon = True
self.start()
def run(self):
r = self._fn(*self._args) if self._args is not None \
else self._fn()
if self._cb is not None:
self._cb(self.name, r)
self._queue.task_done()
Вот как выглядит мой вызывающий код (внутри класса)
data = {}
def __op_complete(name, r):
data[name] = r
q = Queue.Queue()
socket.setdefaulttimeout(5)
q.put(QueuedCall('twitter', q, Twitter.get_status, [5,], __op_complete))
q.put(QueuedCall('so_answers', q, StackExchange.get_answers,
['api.stackoverflow.com', 534476, 5], __op_complete))
q.put(QueuedCall('so_user', q, StackExchange.get_user_info,
['api.stackoverflow.com', 534476], __op_complete))
q.put(QueuedCall('p_answers', q, StackExchange.get_answers,
['api.programmers.stackexchange.com', 23901, 5], __op_complete))
q.put(QueuedCall('p_user', q, StackExchange.get_user_info,
['api.programmers.stackexchange.com', 23901], __op_complete))
q.put(QueuedCall('fb_image', q, Facebook.get_latest_picture, None, __op_complete))
q.join()
return data
Проблема, с которой я здесь сталкиваюсь, заключается в том, что она, похоже, работает каждый раз при новом перезапуске сервера, но завершается ошибкой каждый второй или третий запрос с ошибкой:
ValueError: task_done() called too many times
Эта ошибка проявляется в случайном потоке каждую секунду или третий запрос, поэтому довольно трудно определить точно в чем проблема.
У кого-нибудь есть идеи и / или предложения?
Спасибо.
Редактировать:
Я добавил print
s в попытке отладить это (быстро и грязно, а не ведение журнала).Один оператор печати (print 'running thread: %s' % self.name
) в первой строке run
, а другой прямо перед вызовом task_done()
(print 'thread done: %s' % self.name
).
Вывод успешного запроса:
running thread: twitter
running thread: so_answers
running thread: so_user
running thread: p_answers
thread done: twitter
thread done: so_user
running thread: p_user
thread done: so_answers
running thread: fb_image
thread done: p_answers
thread done: p_user
thread done: fb_image
Вывод неудачного запроса:
running thread: twitter
running thread: so_answers
thread done: twitter
thread done: so_answers
running thread: so_user
thread done: so_user
running thread: p_answers
thread done: p_answers
Exception in thread p_answers:
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 552, in __bootstrap_inner
self.run()
File "/home/demian/src/www/projects/demianbrecht/demianbrecht/demianbrecht/helpers.py", line 37, in run
self._queue.task_done()
File "/usr/lib/python2.7/Queue.py", line 64, in task_done
raise ValueError('task_done() called too many times')
ValueError: task_done() called too many times
running thread: p_user
thread done: p_user
running thread: fb_image
thread done: fb_image