Revert "Fix Docker"

This reverts commit 6955574c4c.
This commit is contained in:
Alexey Milovidov 2024-01-14 05:17:01 +01:00
parent 564a9f0d6c
commit 66d2353851
2 changed files with 3 additions and 3 deletions

View File

@ -241,7 +241,7 @@ ENGINE = MergeTree
PARTITION BY toYYYYMM(EventDate)
ORDER BY (CounterID, EventDate, intHash32(UserID))
SAMPLE BY intHash32(UserID)
SETTINGS disk = disk(type = cache, path = '/dev/shm/clickhouse/', max_size = '2G',
SETTINGS disk = disk(type = cache, path = '/dev/shm/clickhouse/', max_size = '16G',
disk = disk(type = web, endpoint = 'https://clickhouse-datasets-web.s3.us-east-1.amazonaws.com/'));
END
@ -434,7 +434,7 @@ ENGINE = CollapsingMergeTree(Sign)
PARTITION BY toYYYYMM(StartDate)
ORDER BY (CounterID, StartDate, intHash32(UserID), VisitID)
SAMPLE BY intHash32(UserID)
SETTINGS disk = disk(type = cache, path = '/dev/shm/clickhouse/', max_size = '2G',
SETTINGS disk = disk(type = cache, path = '/dev/shm/clickhouse/', max_size = '16G',
disk = disk(type = web, endpoint = 'https://clickhouse-datasets-web.s3.us-east-1.amazonaws.com/'));
END

View File

@ -118,7 +118,7 @@ def get_run_command(
)
return (
f"docker run --shm-size=2g --volume={builds_path}:/package_folder "
f"docker run --volume={builds_path}:/package_folder "
f"{ci_logs_args}"
f"--volume={repo_path}/tests:/usr/share/clickhouse-test "
f"{volume_with_broken_test}"