-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Closed
Labels
Description
Hi all,
I am developing a pipeline in Django where different workers read/write on a database.
Everything is working fine if I am using only one worker.
Otherwise I get random errors in the tasks like: pop from empty list, EOF detected, database is locked.. depending on the databaes backend.
Yes because I tried with Postgres, MySQL and SQLite..
This is the line where I am configuring the workers:
luigi.build(Workflow(id=session_id)], workers=4)
Any help would be really appreciate since I am stuck with this problem.