Answer the question
In order to leave comments, you need to log in
SQL inside python multiprocessing. How?
Such a problem.
Here is the schematic code:
def processInput(users):
sql_1 = "SELECT * FROM table1"
cursor.execute(sql_1)
res_1 = cursor.fetchall()
print(res_1)
sql_2 = "SELECT * FROM table2"
cursor.execute(sql_2)
res_2 = cursor.fetchall()
print(res_2)
pool = Pool(processes=8)
for _ in tqdm.tqdm(pool.imap_unordered(processInput, users), total=len(users)):
pass
Answer the question
In order to leave comments, you need to log in
In general, I create not only the cursor, but also the connection itself inside and everything is ok
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question