-
Notifications
You must be signed in to change notification settings - Fork 4k
MINOR: [Docs] Tweak language in basic_arrow.rst #40006
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
|
@ksuarez1423 Could you review this as the author of the original text? |
pitrou
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.
+1, thank you
|
After merging your PR, Conbench analyzed the 3 benchmarking runs that have been run so far on merge-commit 135b364. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 1 possible false positive for unstable benchmarks that are known to sometimes produce them. |
### Rationale for this change I came across this use of the word "cutely" and thought it might trip people up. I think the author was trying to make a point about CPU cache-friendliness and I don't think cutely is a common enough way to talk about CPU caches to be used here. ### What changes are included in this PR? It might be more specific to say that it's the data that's in buffers of the chunks that is either in the CPU cache or not but I think the simpler language I went with matches the high-level nature of this document. ### Are these changes tested? No ### Are there any user-facing changes? Yes, just to docs. Authored-by: Bryce Mecum <petridish@gmail.com> Signed-off-by: Antoine Pitrou <antoine@python.org>
### What changes are included in this PR? This adds developer tooling to the repo for linting the docs by adding the sphinx-lint tool to archery and our pre-commit hooks. In both locations, only two rules are enabled at the moment (Discussed in #40006): `trailing-whitespace` and `missing-final-newline`. This PR also fixes the individual issues covered by the new tooling. ### Are these changes tested? Yes, though manually. I tested this works by running `archery lint --docs` and `pre-commit` without and without changes that should get caught by the rules. It works as expected. ### Are there any user-facing changes? Yes, 1. Developers that use pre-commit hooks will see a change in behavior when they modify docs 2. Developers using archery will see a new --docs option in `archery lint` 3. Developers working on the docs may see CI failures related to the new checks * Closes: #39990 * GitHub Issue: #39990 Authored-by: Bryce Mecum <petridish@gmail.com> Signed-off-by: Bryce Mecum <petridish@gmail.com>
…0022) ### What changes are included in this PR? This adds developer tooling to the repo for linting the docs by adding the sphinx-lint tool to archery and our pre-commit hooks. In both locations, only two rules are enabled at the moment (Discussed in apache#40006): `trailing-whitespace` and `missing-final-newline`. This PR also fixes the individual issues covered by the new tooling. ### Are these changes tested? Yes, though manually. I tested this works by running `archery lint --docs` and `pre-commit` without and without changes that should get caught by the rules. It works as expected. ### Are there any user-facing changes? Yes, 1. Developers that use pre-commit hooks will see a change in behavior when they modify docs 2. Developers using archery will see a new --docs option in `archery lint` 3. Developers working on the docs may see CI failures related to the new checks * Closes: apache#39990 * GitHub Issue: apache#39990 Authored-by: Bryce Mecum <petridish@gmail.com> Signed-off-by: Bryce Mecum <petridish@gmail.com>
Rationale for this change
I came across this use of the word "cutely" and thought it might trip people up. I think the author was trying to make a point about CPU cache-friendliness and I don't think cutely is a common enough way to talk about CPU caches to be used here.
What changes are included in this PR?
It might be more specific to say that it's the data that's in buffers of the chunks that is either in the CPU cache or not but I think the simpler language I went with matches the high-level nature of this document.
Are these changes tested?
No
Are there any user-facing changes?
Yes, just to docs.