MINOR: [C++][CI] Bump ccache max size - #51259
Open
pitrou wants to merge 1 commit into
Open
Conversation
When trying to analyze the compilation caching behavior on apache#51255, I realized that our maximum ccache size of 1GB had become too small for some builds. The result is that a single build cannot be cached in its entirety, making identical rebuilds costlier than they should be.
pitrou
force-pushed
the
minor-ccache-size
branch
from
September 9, 2026 13:20
9185f59 to
8c9bd91
Compare
pitrou
marked this pull request as ready for review
September 9, 2026 13:53
pitrou
requested review from
assignUser,
jonkeane,
kou and
raulcd
as code owners
September 9, 2026 13:53
Member
Author
Member
|
Is there any specific log to look for to see this happening in the future? I am unsure I know how to find that this cache size has become too small. |
Member
Author
|
What I did is run a container locally, issued I'm afraid there's no easy way to automate such a hint on CI builds. |
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
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.
Rationale for this change
When trying to analyze the compilation caching behavior on #51255, I realized that our maximum ccache size of 1GB had become too small for some builds. The result is that a single build cannot be cached in its entirety, making identical rebuilds costlier than they should be.
What changes are included in this PR?
Bump ccache max size to 1.5 GB.
Are these changes tested?
Yes, by existing builds.
Are there any user-facing changes?
No.