-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-22574] [Mesos] [Submit] Check submission request parameters #19793
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,10 +77,16 @@ private[mesos] class MesosSubmitRequestServlet( | |
| private def buildDriverDescription(request: CreateSubmissionRequest): MesosDriverDescription = { | ||
| // Required fields, including the main class because python is not yet supported | ||
| val appResource = Option(request.appResource).getOrElse { | ||
| throw new SubmitRestMissingFieldException("Application jar is missing.") | ||
| throw new SubmitRestMissingFieldException("Application jar 'appResource' is missing.") | ||
| } | ||
| val mainClass = Option(request.mainClass).getOrElse { | ||
| throw new SubmitRestMissingFieldException("Main class is missing.") | ||
| throw new SubmitRestMissingFieldException("Main class 'mainClass' is missing.") | ||
| } | ||
| val appArgs = Option(request.appArgs).getOrElse { | ||
| throw new SubmitRestMissingFieldException("Application arguments 'appArgs' are missing.") | ||
| } | ||
| val environmentVariables = Option(request.environmentVariables).getOrElse { | ||
| throw new SubmitRestMissingFieldException("Environment variables 'environmentVariables' are missing.") | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so this is API changes - new required arguments for the request. (edit: it looks like previously-missing validation for a required arguments)
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, the arguments were assumed to be there, but validation was missing. |
||
| } | ||
|
|
||
| // Optional fields | ||
|
|
@@ -91,8 +97,6 @@ private[mesos] class MesosSubmitRequestServlet( | |
| val superviseDriver = sparkProperties.get("spark.driver.supervise") | ||
| val driverMemory = sparkProperties.get("spark.driver.memory") | ||
| val driverCores = sparkProperties.get("spark.driver.cores") | ||
| val appArgs = request.appArgs | ||
| val environmentVariables = request.environmentVariables | ||
| val name = request.sparkProperties.getOrElse("spark.app.name", mainClass) | ||
|
|
||
| // Construct driver description | ||
|
|
||
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.
What if there are no args or environment variables for a particular job? Is the caller expected to pass in an empty array?
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.
Actually If the caller wouldn't set "appArgs" or "environmentVariables" was causing a null pointer and leaving the Dispatcher inactive. So now I think the caller should pass an empty array, I could add a test for that case @susanxhuynh .