-
-
Notifications
You must be signed in to change notification settings - Fork 61
build: Upgrade ClickHouse version bounds and fix migrations for CH 25.8 compatibility #7800
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
Open
phacops
wants to merge
12
commits into
master
Choose a base branch
from
build/upgrade-clickhouse-versions
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
48c3979
build(deps): Upgrade ClickHouse to 25.3.8 and add 25.8.16 to test matrix
phacops 3c4d465
fix: Lower min CH version to 25.3.6 and alias 'span' in MV migrations
phacops aa91c19
fix: Use max_concurrent_threads on ClickHouse 25.8+ workloads
phacops 53ecf11
fix: Defer CH version check to execution time in migration 0053
phacops 98cd815
fix: Fix wrong table references in migration 0041 backwards_ops
phacops 0710b04
fix: Fix MV column alias mismatches for CH 25.8 strict name matching
phacops 72932a2
fix: Remove raw_timestamp inline alias in gauges MVs for CH 25.8
phacops 86d3898
fix: Use rounded_timestamp alias to match destination table column name
phacops b6250af
fix: Revert count→value alias and fix 0040 meta_table_columns to matc…
phacops b65eb41
fix: Add DEFAULT for nullable→non-nullable column conversions on CH 25.8
phacops df4484a
[getsentry/action-github-commit] Auto commit
getsantry[bot] 6cc7b73
fix: Use toUUID() cast for trace_id DEFAULT expression
phacops File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,2 @@ | ||
| CLICKHOUSE_SERVER_MIN_VERSION = "23.8.11.29" | ||
| # Note: SaaS, self-hosted, and sentry dev | ||
| # environements should all be on 23.8.11.29 | ||
| CLICKHOUSE_SERVER_MAX_VERSION = "25.3.6.10034" | ||
| CLICKHOUSE_SERVER_MIN_VERSION = "25.3.6.10034" | ||
| CLICKHOUSE_SERVER_MAX_VERSION = "25.8.16.10001" | ||
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
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
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
Oops, something went wrong.
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.
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.
Min version set to old value instead of new default
Medium Severity
CLICKHOUSE_SERVER_MIN_VERSIONis set to"25.3.6.10034"(the old default image version) instead of"25.3.8.10041"(the new default). The PR description explicitly states the min bound is25.3.8.10041, and the supported versions doc lists25.3.8.10041as the lowest supported version—yet the version check incheck_clickhousewill accept25.3.6.10034, which is no longer listed as a supported version.