-
Notifications
You must be signed in to change notification settings - Fork 29k
[MINOR][DOC] updated some grammar and a missed period in the tuning doc #38499
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
…k completes, as it sounds strange
…roadcasting large variables)
…points of data locality didnt have commas or periods but periods were being used for multiple sentences in a bullet points. I opted for periods but could be commas with last one using and then period
|
Do I need to report test results for a doc change? Also, I am not sure I understand how to do that. Thanks for any feedback. |
|
Can one of the admins verify this patch? |
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 if the screen-capture for generated documentation is attached to the PR description for documentation work, but I think it's not necessary for this case since the change is small.
I can add it. I was reading over this doc which is why I noticed them. Just a render markdown screenshot or the text file? Or side by side? @itholic |
srowen
left a comment
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.
This is fine, but fairly trivial - let's do one big PR with many docs if going to do this
|
Merged to master |
### What changes were proposed in this pull request? I changed some grammatical issues in the documentation. One potential change could be debatable though so please take a look. https://spark.apache.org/docs/latest/tuning.html ### Why are the changes needed? Some grammatical mistakes in the documentation. ### Does this PR introduce _any_ user-facing change? Yes, this corrects some issues in documentation related to Tuning Spark. The following changes were made Check if there are too many garbage collections by collecting GC stats. If a full GC is invoked multiple times ~~for~~ before a task completes, it means that there isn't enough memory available for executing tasks. with `-XX:G1HeapRegionSize`. (added missing period). we can estimate the size of Eden to be `4*3*128MiB`. (added the to estimate the size--this one I guess debatable) ### How was this patch tested? No tests added as this was markdown documentation for the user facing page. Closes apache#38499 from dwsmith1983/master. Lead-authored-by: Dustin William Smith <[email protected]> Co-authored-by: dustin <[email protected]> Signed-off-by: Sean Owen <[email protected]>
What changes were proposed in this pull request?
I changed some grammatical issues in the documentation. One potential change could be debatable though so please take a look.
https://spark.apache.org/docs/latest/tuning.html
Why are the changes needed?
Some grammatical mistakes in the documentation.
Does this PR introduce any user-facing change?
Yes, this corrects some issues in documentation related to Tuning Spark. The following changes were made
Check if there are too many garbage collections by collecting GC stats. If a full GC is invoked multiple times
forbefore a task completes, it means that there isn't enough memory available for executing tasks.
with
-XX:G1HeapRegionSize. (added missing period).we can estimate the size of Eden to be
4*3*128MiB. (added the to estimate the size--this one I guess debatable)How was this patch tested?
No tests added as this was markdown documentation for the user facing page.