-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Improve upload speed #118
Comments
I think that the reason why the add_document call takes a while to return
|
@fccoelho, the |
As @turicas said, this was our first thought, but after some tests we realized creating the document was not our bottleneck. Also, I don't think any operation is going to be faster than just creating the document before returning as we do now. @turicas do you remember if we found any bottlenecks in our tests? |
@flavioamieiro, the bottenecks I've found were related to running the services (broker and pypln-web, basically) in the same machine, so when the workers are consuming 100% CPU, the web process could not answer in a normal time (we need to modify the deployment process to permit it). |
We must either renice the processes to give priority to the frontend or
|
As described in NAMD/mediacloud_backend#65 the upload speed is not enough to have it as part of a regular process. We need to benchmark the upload and see where we can improve speed.
The text was updated successfully, but these errors were encountered: