We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of running ./manage.py import --all in sequence We can use multiprocessing and try to use all CPU power.
./manage.py import --all
suggestions:
we can use Celery and schedule tasks and run easily importers in parallel (another benefit: we can run periodic Tasks and make importers synchronize )
we can make it simple and use some code from scancode.
this could be a solution for #833
The text was updated successfully, but these errors were encountered:
While I was trying to run importers using threads I couldn't notes any improvement ! https://stackoverflow.com/questions/31062124/multiple-db-inserts-with-django-performance-is-not-increased-by-parallel-threads
Sorry, something went wrong.
No branches or pull requests
Instead of running
./manage.py import --all
in sequenceWe can use multiprocessing and try to use all CPU power.
suggestions:
we can use Celery and schedule tasks and run easily importers in parallel
(another benefit: we can run periodic Tasks and make importers synchronize )
we can make it simple and use some code from scancode.
this could be a solution for #833
The text was updated successfully, but these errors were encountered: