-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Improve error handling for exporting large experiments #2852
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
Conversation
…oader. Tested: Adds unit tests for grpc.CANCELLED case.
|
Thanks! By convention, commit headlines are imperative (as with internal |
| del request # unused | ||
| yield export_service_pb2.StreamExperimentsResponse( | ||
| experiment_ids=[experiment_id]) | ||
| experiment_ids = [experiment_id]) |
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.
nit: No spaces around kwargs. The full whitespace rules are here:
https://google.github.io/styleguide/pyguide.html#36-whitespace
Improves error handling for exporting large experiments using the uploader. Tested: Adds unit tests for grpc.CANCELLED case.
Improves error handling for exporting large experiments using the uploader. Tested: Adds unit tests for grpc.CANCELLED case.
Large experiments sometimes fail to export due to grpc timeouts. This change clarifies the situation to the user.
Tested:
Adds unit tests for grpc.CANCELLED case.