我的一些工作线程存在问题。我在线程的run方法中添加了一个catchall异常语句,如下所示:
try:
"""Runs the worker process, which is a state machine"""
while self._set_exitcode is None :
assert self._state in Worker.STATES
state_methodname = "_state_%s" % self._state
assert hasattr(self, state_methodname)
state_method = getattr(self, state_methodname)
self._state = state_method() # execute method for current state
self._stop_heartbeat()
sys.exit( self._set_exitcode )
except:
self.log.debug(sys.exc_info())
我读到这是捕捉可能导致问题而不是使用Exception, e
的所有内容的事实方法。我找到了一些很好的小错误,这要归功于这种方法,但我的问题是工人们还在死,我不知道如何进一步记录正在发生的事情或排除故障。
任何想法都会非常感激。
谢谢!
答案 0 :(得分:10)
您可以尝试检查execution trace of your program using the trace
module。例如:
% python -m trace -c -t -C ./coverage test_exit.py
来源:
import sys
import threading
class Worker(object):
def run(self):
try:
sys.exit(1)
except:
print sys.exc_info()
threading.Thread(target=Worker().run).start()
它会在执行时转储掉每一行,你应该在coverage
目录中获得一份报道:
...
threading.py(482): try:
threading.py(483): if self.__target:
threading.py(484): self.__target(*self.__args, **self.__kwargs)
--- modulename: test_exit, funcname: run
test_exit.py(7): try:
test_exit.py(8): sys.exit(1)
test_exit.py(9): except:
test_exit.py(10): print sys.exc_info()
(<type 'exceptions.SystemExit'>, SystemExit(1,), <traceback object at 0x7f23098822d8>)
threading.py(488): del self.__target, self.__args, self.__kwargs
...
答案 1 :(得分:1)
是什么让你觉得有些线程过早退出?它们是否有可能干净利落,但您的日志记录方法不是线程安全的?