-
Notifications
You must be signed in to change notification settings - Fork 144
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
Generalize error message set in model metadata #184
Generalize error message set in model metadata #184
Conversation
Signed-off-by: John Mazanec <jmazane@amazon.com>
@@ -149,7 +149,7 @@ private void train(TrainingJob trainingJob) { | |||
|
|||
ModelMetadata modelMetadata = trainingJob.getModel().getModelMetadata(); | |||
modelMetadata.setState(ModelState.FAILED); | |||
modelMetadata.setError(ree.getMessage()); | |||
modelMetadata.setError("Training job execution was rejected. Node's training queue is at capacity."); |
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.
It would be great to have node name also printed. But we can take in future PRs.
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.
agree. Will look into in future.
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! Thanks
Signed-off-by: John Mazanec <jmazane@amazon.com>
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! Thanks
Signed-off-by: John Mazanec <jmazane@amazon.com>
Signed-off-by: John Mazanec <jmazane@amazon.com> Signed-off-by: Martin Gaievski <gaievski@amazon.com>
Signed-off-by: John Mazanec <jmazane@amazon.com>
Description
This change generalizes the error message exposed to user when training fails. Before, we just set the message as the exception. However, this can expose internal details of the service. So, this generalizes the messages.
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.