【发布时间】:2018-02-06 04:20:24
【问题描述】:
我在 python 的程序中使用了多线程。我有3个队列。在其中之一中,我将数据插入到 postgres 数据库中。但在此之前,我需要检查数据库中是否已经存在具有特定域名的行。所以我有:
class AnotherThread(threading.Thread):
def __init__(self, another_queue):
threading.Thread.__init__(self)
self.another_queue = another_queue
def run(self):
while True:
chunk = self.another_queue.get()
if chunk is not '':
dane = chunk[0].split(',',2)
cur.execute("SELECT exists(SELECT 1 FROM global where domain = %s ) ", (domena,))
jest = cur.fetchone()
print(jest)
这是我的第三个队列代码的一部分。我在这里连接到数据库(在 main() 函数中):
queue = Queue.Queue()
out_queue = Queue.Queue()
another_queue = Queue.Queue()
for i in range(50):
t = ThreadUrl(queue, out_queue)
t.setDaemon(True)
t.start()
for host in hosts:
queue.put(host)
for i in range(50):
dt = DatamineThread(out_queue,another_queue)
dt.setDaemon(True)
dt.start()
conn_str = "dbname='{db}' user='user' host='localhost' password='pass'"
conn = psycopg2.connect(conn_str.format(db='test'))
conn.autocommit = True
cur = conn.cursor()
for i in range(50):
dt = AnotherThread(another_queue)
dt.setDaemon(True)
dt.start()
queue.join()
out_queue.join()
another_queue.join()
cur.close()
conn.close()
当我运行我的脚本时,我得到了:
(False,)
(False,)
(False,)
(False,)
(False,)
(False,)
(False,)
(False,)
(False,)
Exception in thread Thread-128:
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "domains.py", line 242, in run
jest = cur.fetchone()
ProgrammingError: no results to fetch
Exception in thread Thread-127:
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "domains.py", line 242, in run
jest = cur.fetchone()
ProgrammingError: no results to fetch
(False,)
(False,)
(False,)
为什么其中一些我收到错误消息?
【问题讨论】:
标签: python multithreading postgresql psycopg2