-
Notifications
You must be signed in to change notification settings - Fork 169
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
docs: changes in documentation #512
docs: changes in documentation #512
Conversation
- Update tuning section about the compatibility of Shuffle and Spark AQE - Add `release-nogit` for building on an isolated environments - Update docs in the section about an installation process On branch docs-tuning-section-update Changes to be committed: modified: Makefile modified: docs/source/user-guide/installation.md modified: docs/source/user-guide/tuning.md
The CI failures with Spark 4 can be fixed by merging latest from main branch |
Please ignore. I found the issue and was my error.
|
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.
LGTM. Thanks @SemyonSinchenko
@@ -39,6 +39,8 @@ It must be set before the Spark context is created. You can enable or disable Co | |||
at runtime by setting `spark.comet.exec.shuffle.enabled` to `true` or `false`. | |||
Once it is disabled, Comet will fallback to the default Spark shuffle manager. | |||
|
|||
> **_NOTE:_** At the moment Comet Shuffle is not compatible with Spark AQE partition coalesce. To disable set `spark.sql.adaptive.coalescePartitions.enabled` to `false`. |
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.
👍
Thank you @SemyonSinchenko @andygrove @viirya merged |
## Which issue does this PR close? Closes apache#503 Closes apache#191 ## Rationale for this change 1. Provide a way to build Comet from the source on an isolated environments with an access to github.com 2. Update documentation in part, related to compatibility of Spark AQE and Comet Shuffle ## What changes are included in this PR? - Update tuning section about the compatibility of Shuffle and Spark AQE - Add `release-nogit` for building on an isolated environments - Update docs in the section about an installation process Changes to be committed: modified: Makefile modified: docs/source/user-guide/installation.md modified: docs/source/user-guide/tuning.md ## How are these changes tested? I run both `make release` and `make release-nogit`. The first one created properties file in `common/target/classes` but the second did not. The flag `-Dmaven.gitcommitid.skip=true` is described in [this comment](git-commit-id/git-commit-id-maven-plugin#392 (comment)).
Which issue does this PR close?
Closes #503
Closes #191
Rationale for this change
What changes are included in this PR?
release-nogit
for building on an isolated environmentsChanges to be committed:
modified: Makefile
modified: docs/source/user-guide/installation.md
modified: docs/source/user-guide/tuning.md
How are these changes tested?
I run both
make release
andmake release-nogit
. The first one created properties file incommon/target/classes
but the second did not. The flag-Dmaven.gitcommitid.skip=true
is described in this comment.