-
Notifications
You must be signed in to change notification settings - Fork 4
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
fix(upload-files): handle server error, document how to circumvent resource leak (DEV-2528, DEV-2527) #464
Conversation
DEV-2528 upload-files: handle server error
If a file cannot be uploaded due to a server error, the user has no possibility to retry. There is currently no way to upload a failed file to the server at a later point of time. DSP-TOOLS must handle this, and retry, or provide a mechanism that allows the user to upload the failed files at a later point of time. See attached an error message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
DEV-2527 Vij's Mac Pro becomes very slow after 6 days of upload-files
Problem descriptionVij's super powerful Mac Pro (28 double core) becomes very slow and unresponsive after 6 days of uploading files to the (This command calls SIPI's Datadog shows that the DSP-TOOLS' log files show that there are breaks of serveral hours where DSP-TOOLS does nothing:
Mac's Activity Monitor shows that the Python process consumes normal CPU, but 4 GB of Real Memory Size and 40 GB of Virtual Memory Size. The PyCharm process, from where the But there was a process AnalysisThere must be a mysterious resource leak that we cannot find. SolutionInstead of uploading all files at once, it would be better to upload them batch-wise. The previous step ( That means that the command |
No description provided.