V
V
Vyacheslav Grachunov2017-10-12 13:25:34
MySQL
Vyacheslav Grachunov, 2017-10-12 13:25:34

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

So, res_2 is identical to res_1.
Why is that and how to fix it?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vyacheslav Grachunov, 2017-10-14
@Qwentor

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 question

Ask a Question

731 491 924 answers to any question