Skip to content

Commit

Permalink
ref: Use the same version of Clickhouse as SaaS (#69794)
Browse files Browse the repository at this point in the history
This is the version of Clickhouse that runs internally, so it should be
tested locally as well.

Also checked on the ARM support, and based on this comment:
ClickHouse/ClickHouse#22222 (comment)
it looks like ARM is supported by default now.
  • Loading branch information
evanh committed Apr 29, 2024
1 parent 965c340 commit ae8ec69
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2896,12 +2896,7 @@ def build_cdc_postgres_init_db_volume(settings: Any) -> dict[str, dict[str, str]
"clickhouse": lambda settings, options: (
{
"image": (
"ghcr.io/getsentry/image-mirror-altinity-clickhouse-server:21.8.13.1.altinitystable"
if not ARM64
# altinity provides clickhouse support to other companies
# Official support: https://github.com/ClickHouse/ClickHouse/issues/22222
# This image is build with this script https://gist.github.com/filimonov/5f9732909ff66d5d0a65b8283382590d
else "ghcr.io/getsentry/image-mirror-altinity-clickhouse-server:21.6.1.6734-testing-arm"
"ghcr.io/getsentry/image-mirror-altinity-clickhouse-server:22.8.15.25.altinitystable"
),
"ports": {"9000/tcp": 9000, "9009/tcp": 9009, "8123/tcp": 8123},
"ulimits": [{"name": "nofile", "soft": 262144, "hard": 262144}],
Expand Down

0 comments on commit ae8ec69

Please sign in to comment.