-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-45257][CORE] Enable spark.eventLog.compress by default
#43036
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
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b2f7c57 to
36c2e63
Compare
mridulm
approved these changes
Sep 21, 2023
Contributor
mridulm
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.
We should have done this long ago !
Member
Author
|
Thank you for review and approval, @mridulm ! 😄 |
yaooqinn
approved these changes
Sep 22, 2023
Member
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, just one minor revison
yaooqinn
reviewed
Sep 22, 2023
ulysses-you
approved these changes
Sep 22, 2023
Co-authored-by: Kent Yao <[email protected]>
Member
Author
viirya
pushed a commit
to viirya/spark-1
that referenced
this pull request
Oct 19, 2023
### What changes were proposed in this pull request? This PR aims to enable `spark.eventLog.compress` by default for Apache Spark 4.0.0. ### Why are the changes needed? - To save the event log storage cost by compressing the logs with ZStandard codec by default ### Does this PR introduce _any_ user-facing change? Although we added a migration guide, the old Spark history servers are able to read the compressed logs. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#43036 from dongjoon-hyun/SPARK-45257. Lead-authored-by: Dongjoon Hyun <[email protected]> Co-authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
dongjoon-hyun
added a commit
to apache/spark-kubernetes-operator
that referenced
this pull request
Jun 14, 2025
### What changes were proposed in this pull request? Add `Spark History Server` example. ### Why are the changes needed? Since Apache Spark 4.0, Spark rolls the event logs by default and compressed them by default. - apache/spark#43638 - apache/spark#43036 However, we still need more configurations to allow SHS manages the event log directories. This PR aims to provide an example of `Spark History Server` with the configuration. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manual review. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #249 from dongjoon-hyun/SPARK-52481. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

What changes were proposed in this pull request?
This PR aims to enable
spark.eventLog.compressby default for Apache Spark 4.0.0.Why are the changes needed?
Does this PR introduce any user-facing change?
Although we added a migration guide, the old Spark history servers are able to read the compressed logs.
How was this patch tested?
Pass the CIs.
Was this patch authored or co-authored using generative AI tooling?
No.