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
The issue occurs here: https://github.com/allegroai/clearml/blob/master/clearml/backend_api/session/session.py#L561 If any line in req_data exceeds the max_req_size, a MaxRequestSizeError is raised, and the following lines are not sent. Moreover, the error message from the exception does not appear in the logs because raise_on_errors=False is set here: https://github.com/allegroai/clearml/blob/master/clearml/backend_interface/metrics/interface.py#L244
Simultaneously send several plots, one of which exceeds the max_req_size.
The ClearML SDK should not lose events that do not exceed the max_req_size, and it should log the loss of events that are larger than max_req_size.
The text was updated successfully, but these errors were encountered:
Thanks for reporting @Legyan - We'll try to address in a near release.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The issue occurs here:
https://github.com/allegroai/clearml/blob/master/clearml/backend_api/session/session.py#L561
If any line in req_data exceeds the max_req_size, a MaxRequestSizeError is raised, and the following lines are not sent.
Moreover, the error message from the exception does not appear in the logs because raise_on_errors=False is set here:
https://github.com/allegroai/clearml/blob/master/clearml/backend_interface/metrics/interface.py#L244
To reproduce
Simultaneously send several plots, one of which exceeds the max_req_size.
Expected behaviour
The ClearML SDK should not lose events that do not exceed the max_req_size, and it should log the loss of events that are larger than max_req_size.
Environment
The text was updated successfully, but these errors were encountered: