-
Notifications
You must be signed in to change notification settings - Fork 40
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
Changing autotuner memory error to warning in comments #1418
Changing autotuner memory error to warning in comments #1418
Conversation
Signed-off-by: mattahrens <[email protected]>
…ating unit tests Signed-off-by: mattahrens <[email protected]>
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.
Thanks @mattahrens for making this change. I was also thinking we should change this to warn as it could cause issue with internal testing team as well.
val msg = "This node/worker configuration is not ideal for using the Spark Rapids " + | ||
"Accelerator because it doesn't have enough memory for the executors. " + | ||
val msg = "This node/worker configuration is not ideal for using the Spark Rapids \n" + | ||
"Accelerator because it doesn't have enough memory for the executors. \n" + |
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: trailing space before the \n
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.
updated in latest commit
// in the future it would be nice to enhance the error message with a recommendation of size | ||
val msg = "This node/worker configuration is not ideal for using the Spark Rapids " + | ||
"Accelerator because it doesn't have enough memory for the executors. " + | ||
val msg = "This node/worker configuration is not ideal for using the Spark Rapids \n" + |
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: trailing space before the \n
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.
updated in latest commit
Signed-off-by: mattahrens <[email protected]>
Fixes #1314