-
Notifications
You must be signed in to change notification settings - Fork 28.7k
[SPARK-4652][DOCS] Add docs about spark-git-repo option #3513
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
[SPARK-4652][DOCS] Add docs about spark-git-repo option #3513
Conversation
There might be some times when WIPS spark version need to be run on EC2 cluster. In order to setup this type of cluster more easily, add --spark-git-repo option description to ec2 documentation.
Can one of the admins verify this patch? |
@@ -85,6 +85,8 @@ another. | |||
specified version of Spark. The `<version>` can be a version number | |||
(e.g. "0.7.3") or a specific git hash. By default, a recent | |||
version will be used. | |||
- `--spark-git-repo=<repository url>` enables you to run your development version on EC2 cluster. You need to set `--spark-version` |
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.
Can you wrap the text here consistent with the rest of the file?
development version on EC2 cluster. You need to set | ||
`--spark-version` as git commit hash such as 317e114 not | ||
original release version number. By default, this repository is | ||
set [apache mirror](https://github.com/apache/spark). |
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.
"Apache" needs to be capitalized here. I'd also swap the order of these sentences so that the default for --spark-git-repo
appears first, followed by the sentence describing how --spark-version
needs to be set when using this option.
This looks good to me. There's one minor sentence-ordering and capitalization issue that I'd like to fix, but I'll do it myself on merge. I'm going to merge this into |
There might be some cases when WIPS spark version need to be run on EC2 cluster. In order to setup this type of cluster more easily, add --spark-git-repo option description to ec2 documentation. Author: lewuathe <[email protected]> Author: Josh Rosen <[email protected]> Closes #3513 from Lewuathe/doc-for-development-spark-cluster and squashes the following commits: 6dae8ee [lewuathe] Wrap consistent with other descriptions cfaf9be [lewuathe] Add docs about spark-git-repo option (Editing / cleanup by Josh Rosen) (cherry picked from commit ab8177d) Signed-off-by: Josh Rosen <[email protected]>
There might be some cases when WIPS spark version need to be run on EC2 cluster. In order to setup this type of cluster more easily, add --spark-git-repo option description to ec2 documentation. Author: lewuathe <[email protected]> Author: Josh Rosen <[email protected]> Closes #3513 from Lewuathe/doc-for-development-spark-cluster and squashes the following commits: 6dae8ee [lewuathe] Wrap consistent with other descriptions cfaf9be [lewuathe] Add docs about spark-git-repo option (Editing / cleanup by Josh Rosen) (cherry picked from commit ab8177d) Signed-off-by: Josh Rosen <[email protected]>
@JoshRosen Thank you for reviewing! |
There might be some cases when WIPS spark version need to be run
on EC2 cluster. In order to setup this type of cluster more easily,
add --spark-git-repo option description to ec2 documentation.