[2026-09-18 08:56:30] === Setup env script [Build profile diff], workflow [PR] === [2026-09-18 08:56:30] Run command: [. ./ci/tmp/praktika_setup_env.sh] [2026-09-18 08:56:30] Read GH Environment from workflow data [2026-09-18 08:56:30] _Environment(WORKFLOW_NAME='PR', JOB_NAME='Build profile diff', REPOSITORY='ClickHouse/ClickHouse', BRANCH='fix-time-zone-name-allowlist-120188', SHA='b4c2e9feacab32c10b86ff06b8ad8253a9892e9c', PR_NUMBER=120288, EVENT_TYPE='pull_request', EVENT_TIME='2026-09-16T00:08:01Z', JOB_OUTPUT_STREAM='/home/ubuntu/actions-runner/_work/_temp/_runner_file_commands/set_output_e4ca7263-d698-47d3-8056-86c2f3f9e451', EVENT_FILE_PATH='/home/ubuntu/actions-runner/_work/_temp/_github_workflow/event.json', CHANGE_URL='https://github.com/ClickHouse/ClickHouse/pull/120288', COMMIT_URL='https://github.com/ClickHouse/ClickHouse/pull/120288/commits/b4c2e9feacab32c10b86ff06b8ad8253a9892e9c', BASE_BRANCH='master', RUN_ID='35038692601', RUN_URL='https://github.com/ClickHouse/ClickHouse/actions/runs/35038692601', INSTANCE_TYPE='m8g.2xlarge', INSTANCE_ID='i-0cc3993cf4e52328f', INSTANCE_LIFE_CYCLE='on-demand', PR_BODY='Closes: https://github.com/ClickHouse/ClickHouse/issues/120188\nRelated: https://github.com/ClickHouse/ClickHouse/pull/119634\nRelated: https://github.com/ClickHouse/ClickHouse/pull/118286\n\n`isSupportedTimeZoneName` was a deny-list of two prefixes, `libc:` (#119634) and `Fixed/`\n(#118286), so acceptance of every other name was delegated to whatever `cctz`\'s filesystem\nfallback could open. That set is not the time zone database.\n\n`cctz` resolves a name as a path under the time zone database directory, and with a `file:`\nprefix as an arbitrary path, so one zone has unboundedly many names. On `master`:\n\n```\nSELECT toDateTime(0, \'Europe/./Amsterdam\'), toDateTime(0, \'Europe//Amsterdam\'),\n toDateTime(0, \'file:UTC\'), toDateTime(0, \'file:/usr/share/zoneinfo/UTC\');\n\n1970-01-01 01:00:00 1970-01-01 01:00:00 1970-01-01 00:00:00 1970-01-01 00:00:00\n```\n\nNone of those names is in `system.time_zones` (`count() = 0`), the number of spellings of one\nzone is unbounded (`./` repeats, extra `/`, `file:` + any path), and every distinct name that\ngets loaded permanently costs ~4.6 MiB in the `DateLUT` cache, which never evicts anything\nbecause callers keep bare references into it. So the cache that the two previous fixes were\nbounding was still unbounded, reachable through `toDateTime(x, \'\')`, the\n`session_timezone` setting, binary type decoding, or the time zone of an Arrow or ORC timestamp\ncolumn. Peak RSS of one `clickhouse-local` process:\n\n| queries in one process | before | after |\n| --- | --- | --- |\n| 20 uses of `Europe/Amsterdam` | 182 MB | 229 MB |\n| 20 distinct `./`-padded spellings of `Europe/Amsterdam` | 303 MB | rejected |\n| 100 distinct `./`-padded spellings of `Europe/Amsterdam` | 683 MB | rejected |\n| 100 distinct `file:` spellings of `UTC` | 679 MB | rejected |\n| 100 queries that fail for an unrelated reason (reference) | 360 MB | 384 MB |\n\nThe last row is the cost of the exceptions themselves: after the change, the 100 rejected\nspellings cost 400 MB, which is that reference and not `DateLUT` growth.\n\n`file:` was also a way to read a file outside the time zone database directory, which is exactly\nwhat the `CheckTimeZoneName` guard vendored into `contrib/cctz` exists to prevent - it strips\nthe prefix and uses the rest as the path, so the guard\'s check on the beginning of the name\nnever sees the leading `/`. A TZif file copied anywhere on the filesystem loaded and answered as\nthat zone:\n\n```\n$ cp /usr/share/zoneinfo/Asia/Kathmandu tmp/mytz\n$ clickhouse local -q "SELECT toDateTime(0, \'file:$PWD/tmp/mytz\'), toDateTime(0, \'Asia/Kathmandu\')"\n1970-01-01 05:30:00 1970-01-01 05:30:00\n```\n\nThe open happened while `DateLUT::getImplementation` held its global mutex, so a name pointing\nat a FIFO or a hung network mount would have blocked every time zone lookup server-wide.\n\n### The change\n\nMake the check an allow-list: a name is accepted only if it is in the time zone database linked\ninto the binary - which is exactly what `system.time_zones` lists, and what the documentation of\nthe `DateTime` type and of `session_timezone` already tell users to use - or if it is one of the\n114 `Fixed/UTC±HH:MM:SS` names for the offsets a time zone can really have (#118286). So the\ncache holds at most 712 entries. This closes the padded spellings and the `file:` prefix in one\nline, subsumes the `libc:` prefix, and makes the message the check reports true. The `cctz`\nfallback in `custom_factory` is dropped as well, so no name can reach the host\'s filesystem even\nif it gets past the predicate.\n\n**Names that only the host\'s time zone database has are no longer accepted.** This is the\ntrade-off the issue names. ClickHouse ships its own tzdata (currently `2026c`, 598 zones)\nprecisely so that results do not depend on the host; such a name is absent from\n`system.time_zones`, so no user can discover or portably use it; and `timezone()` answering a\nname that `system.time_zones` does not list is itself wrong. The one place where the host chooses\nthe name is the server\'s own local time zone, so `DateLUT` reports that case at startup, naming\nthe zone and how to override it, instead of leaving `DateLUTImpl` to report an unsupported name\nwith no hint that the host, and not a query, chose it.\n\nThis does not make the cache small - the 598 names of the time zone database plus the 114 fixed\noffsets still reach ~3.2 GB if all of them are used - it makes it bounded. Shrinking a\n`DateLUTImpl`, or evicting entries, is a separate matter (#107459).\n\nVerified that all 598 names of `system.time_zones` and all 114 fixed offsets are still accepted.\n\n### Tests\n\nNew: `05218_time_zone_names_from_database`.\n\n`03926_arrow_fixed_offset_timezone`: a misspelled time zone name is now reported as ``Time zone\nX is not supported. Use a name from `system.time_zones`, ...`` instead of `Cannot load time zone\nX`.\n\n`05059_formatDateTime_extralong_timezone` checked the 32-byte limit that\n`formatDateTimeInJodaSyntax` puts on a time zone name, using `\'Etc\' || repeat(\'/\', 26) || \'UTC\'`\nto reach exactly 32 bytes. That spelling is one of the ones this PR rejects, and the longest\nreal name, `America/Argentina/ComodRivadavia`, is exactly 32 bytes, so the test now uses it: the\nname the per-row reservation has to fit is a real one, and nothing longer can be constructed.\n\n### Changelog category (leave one):\n- Bug Fix (user-visible misbehavior in an official stable release)\n\n\n### Changelog entry (a [user-readable short description](https://github.com/ClickHouse/ClickHouse/blob/master/docs/changelog_entry_guidelines.md) of the changes that goes into CHANGELOG.md):\nFix unbounded memory growth from time zone names that were resolved through the host\'s file\nsystem instead of the time zone database: dot segments or repeated separators inside a real name\n(`Europe/./Amsterdam`, `Europe//Amsterdam`), and the `file:` prefix, which took the rest of the\nname as a path and read a file outside the time zone database directory. None of these names is\nlisted in `system.time_zones`, one zone had unboundedly many of them, and every distinct name\npermanently cost ~4.6 MiB that the server never gave back. A time zone name now has to be one\nthat `system.time_zones` lists, or a fixed UTC offset spelled `Fixed/UTC±HH:MM:SS`; a name that\nonly the host\'s time zone database has is no longer accepted.\n\n\n\n---\nWorkflow [[PR](https://s3.amazonaws.com/clickhouse-test-reports/praktika.html?PR=120288&sha=latest&name_0=PR)]\nSync PR [[sync-upstream/pr/120288](https://github.com/search?q=head%3Async-upstream%2Fpr%2F120288+org%3AClickHouse+type%3Apr&type=pullrequests)]\n\n', PR_TITLE='Accept only time zone names that the built-in database has', USER_LOGIN='alexey-milovidov', FORK_NAME='ClickHouse/ClickHouse', COMMIT_MESSAGE='', EVENT_ACTION='synchronize', WORKFLOW_START_TIME=1789517343.039124, LINKED_PR_NUMBER=0, LOCAL_RUN=False, PR_IS_DRAFT=False, PR_LABELS=['pr-bugfix', 'comp-datetime', 'blocker', 'submodule changed'], REPORT_MESSAGES=[], JOB_CONFIG=Build profile diff, TRACEBACKS=[], WORKFLOW_JOB_DATA={'check_run_id': 105540786705, 'workflow_ref': 'ClickHouse/ClickHouse/.github/workflows/pull_request.yml@refs/pull/120288/merge', 'workflow_sha': '87e37a6c8f75bbc0f6e95bdeab3134767ebc8df7', 'workflow_repository': 'ClickHouse/ClickHouse', 'workflow_file_path': '.github/workflows/pull_request.yml', 'status': 'success'}, JOB_KV_DATA={'commit_authors': ['milovidov@clickhouse.com'], 'parent_pr_number': 0, 'changed_files': ['contrib/cctz-cmake/CMakeLists.txt', 'src/Common/DateLUT.cpp', 'src/Common/DateLUTImpl.cpp', 'src/Common/DateLUTImpl.h', 'tests/queries/0_stateless/03926_arrow_fixed_offset_timezone.reference', 'tests/queries/0_stateless/03926_arrow_fixed_offset_timezone.sh', 'tests/queries/0_stateless/05059_formatDateTime_extralong_timezone.reference', 'tests/queries/0_stateless/05059_formatDateTime_extralong_timezone.sql', 'tests/queries/0_stateless/05218_time_zone_names_from_database.reference', 'tests/queries/0_stateless/05218_time_zone_names_from_database.sql'], 'build_digest': '91dcd43ce23ce7f84271', 'master_commits': ['3a43db4d688ffe457304d378c7a83f44f652c1c0', '54c41a45f9ee747a79a09ee6bb4341c26c1772e4', '46509e6b7d433de727ac4c4b55ac1b12b9c86d0a', 'e6c985c411a476adc5279d62b8b2dc56f0ddd592', 'e9789e8f3c890d5bd0307fcc54cd54959a2bb264', '6ef6af76cd3ad25e6f538ade2dece99c668faaa6', '0415c4bf1796db7ae2d24a2da1627c2ec618d3b6', 'f263198756d3da3bab596848351e4cfbcbde041c', 'e5b188555b46580569896c331f70c2f5ff88b1af', '3b6aa4175911f694df3c6130f4f93d41abd75fc0', '08380381b8dc35be2950890153243a9004f9b4b5', 'e58be29d09465e6de8053be1992827976642763c', '2fc7cb4fc5b31b536080563ec3e63806dab047d5', '1abd0229187e2aecd449eb147176817d755ea77b', '19ef773ce1e583fc6897861ef7ddf1af4be79bbf', '8b5ef372f37efa19af0ae4c6b7e536c1e7c64ee7', '049449e1506332dca73bc7f5a61ea8d99721b5b5', '2df63d908d81eb867c49f6230c4b688c549c6509', 'd1e4380ee8dc57aef8e6d8117337c0d8f08b041a', '7dc4a129f21a36dd40fecf2198a51db0001b5ae8', '805cd6d3baaa248db0bdabc49500508e7f61e443', '2ede1f3cd37c951e11abed677e5758189da5d5f1', 'd9c03e66cfa0a7e8a0254a7dc8645862d5fc9e07', '90425018c673e30110e1488144c8105ca8863055', '1e93c0a25f177d3a971668e058745a6e8bfe3e2c', 'b41b780feecc85780bebca041acda03358719a79', '6a95fc386f91546cad0ceeb53f120773bbfa4e3b', 'a1aab05f231660f619b2e00a4642666d9a7af5e3', 'd5ffa6b4beca7ee0a873f14c710b76705d7327cf', '2e1b85ff3729e2aa3fcf839d9c0a31df84860f5b', 'e5b1c3c8317d0e296865c2dd3ffc6dd7663287dd', 'e66b37c29145ec58e7e87f1998b789a352f63816', 'b4a46672acbc67348848f5dc8c5b6f015359737e', 'd5b8370717548ec106da937e88b08a30c673e25a', '5a3730191729bb81399a77632bd421c2fdf6da1f', '29723627506ac27142cac8544f6951b421a31c2b', '7ca827d261b419159b99a330438ccd08a47200d3', '46bf423f9cbd256af244cb0cbd567cec5c562102', 'bb5f16bf60c832f191f441c986d3408e009bd967', 'f8e489fa7847f8cb714f64fcc2439676195f7be8', 'fa79b657c0d99d1d2f4f72fedbb2b0b4066b0020', 'ea45f5612f78a1587252c8b8eba0b24d2fe49515', '9f21615e83a4a5b35bf614bb9c15e9eb69f11e34', '6d94d649b184666ae679fc2154d1bb458c430969', '0bdd78c705fb26944450ecc27b08b3ed5d50c86a', '27e094c82f248845e6d60044b9f7324200ebd26c', '7a54997535ff58c4a22b76917e8a16052dc966c9', '1187b0fa22dfa8fb4bc62f38c44e028f461c08e2', 'c46195915cd5f4e68bd4d4b6a14b94f044ccbecb', '1cd2022236f3b255fe993f4db88cbba90a4b851f'], 'merge_base_commit_sha': 'd9c03e66cfa0a7e8a0254a7dc8645862d5fc9e07', 'master_track_commits_sha': ['3a43db4d688ffe457304d378c7a83f44f652c1c0', '54c41a45f9ee747a79a09ee6bb4341c26c1772e4', '46509e6b7d433de727ac4c4b55ac1b12b9c86d0a', 'e6c985c411a476adc5279d62b8b2dc56f0ddd592', 'e9789e8f3c890d5bd0307fcc54cd54959a2bb264', '6ef6af76cd3ad25e6f538ade2dece99c668faaa6', '0415c4bf1796db7ae2d24a2da1627c2ec618d3b6', 'f263198756d3da3bab596848351e4cfbcbde041c', 'e5b188555b46580569896c331f70c2f5ff88b1af', '3b6aa4175911f694df3c6130f4f93d41abd75fc0', '08380381b8dc35be2950890153243a9004f9b4b5', 'e58be29d09465e6de8053be1992827976642763c', '2fc7cb4fc5b31b536080563ec3e63806dab047d5', '1abd0229187e2aecd449eb147176817d755ea77b', '19ef773ce1e583fc6897861ef7ddf1af4be79bbf', '8b5ef372f37efa19af0ae4c6b7e536c1e7c64ee7', '049449e1506332dca73bc7f5a61ea8d99721b5b5', '2df63d908d81eb867c49f6230c4b688c549c6509', 'd1e4380ee8dc57aef8e6d8117337c0d8f08b041a', '7dc4a129f21a36dd40fecf2198a51db0001b5ae8', 'd9c03e66cfa0a7e8a0254a7dc8645862d5fc9e07', '90425018c673e30110e1488144c8105ca8863055', '1e93c0a25f177d3a971668e058745a6e8bfe3e2c', 'b41b780feecc85780bebca041acda03358719a79', '6a95fc386f91546cad0ceeb53f120773bbfa4e3b', 'd5ffa6b4beca7ee0a873f14c710b76705d7327cf', 'e5b1c3c8317d0e296865c2dd3ffc6dd7663287dd', 'e66b37c29145ec58e7e87f1998b789a352f63816', 'b4a46672acbc67348848f5dc8c5b6f015359737e', 'd5b8370717548ec106da937e88b08a30c673e25a', 'ea45f5612f78a1587252c8b8eba0b24d2fe49515', '6d94d649b184666ae679fc2154d1bb458c430969', '27e094c82f248845e6d60044b9f7324200ebd26c', '1187b0fa22dfa8fb4bc62f38c44e028f461c08e2', '0169614a31a54ebcae74364195ee0c17ae2813e7', '4940259ea788d6ba0473dee3e44c5de850e7bee6', '4a10b4a0a5866e0c620a19b14bfc478c1c5bccb1', '797e1fdc52f4d242eb4426d13a9c0dcae9efdeaf', '2f02f42ed8182792282174a9912388215061ec0c', 'a0a74ce8db4527e904f6f4420639f4fd406b5d9a', '6621515ab836fece07ca628176010902d54fb0f9', 'b023c6e880ab51f4000f7ac9a776bc94b7d5b1e6', '25a638e44500860043a7d8be3f77bee63b4a3399', 'e52381d190c3861fd243839f0728d79f01eab106', '038ade68ab1d51833432f343c93f6bbe6de12331', '775a2917aefd14defee8f263726ca54d86bdaf4b', '70bbc8ad0da22b01316d60a28977e97e3b2a5f3c', 'b9cf1db0d2cb8635b90f6159c8c920f960019c16', 'd82d46c8485b7255e7763c9c2f71f6a318e19a15', 'efe9f7f8a4631895719ee19909ba58e79a3daa81', '36b76e15a7a8b9535bedfd89765fad464864a405', 'f7c5fb3681c16f0ae83e54d2aeace0cee0aee9bc', '933221e9c1f974791e9554ad0a8fcdd9000a4264', '66e52b684a435c6448338e69efd21168e6830628', '22be00763c51edd8c7223e529a1455af380e93e5', '6b8954cd0f368622368be2fa47d2dad5f95f09a5', '2271a69d998bcd21df993dafc9e9cb4a4f30bc75', '45efaa4356741c74fc36db9600569e1a57be0113', '120c7491c4577d225d95a8f8d1d107fae95b29a7', '4f217e751e1cdabb954f6955834835576bb4a93d', '64f327c506a9a0c993938629d6f625b69efaefd1', '8d780d79770bf876593136641ebaf2f77d0c11ab', '2615840f763d510de8449a4f610b765a17002cac', '38170d8c91d2eb0719e65cf31a7a95d2ad28f354', 'bc4d16fc92c4419542139ea80418c8caaa547128', 'b33d0a7f994a4fff080fc962270b2a95bae89bde', 'dc050cf699df9015065b4b782f01cd0c3cc7f8ff', '4be746a6984af3573ccf9c7b9ea85c8143d0d5a0', '3f0acbba0a800513192d663a34f484f888a58c07', '2edc8e8c2a289fa18e6b730777bf776069368a72', 'e05544e98b52a83598fb1e922ef38cd85090d2b7', 'b3684dd4d292c328983a2191785652f174ec0a0a', 'a838b9ba0605426d4307598a19467ba8a8b384ec', '360a086963ab6d785a123288e1209b82e138bb1f', '7d0926edf98af9e95e7e9e7f6a89f95e65f25cb0', '19f2af4d98a14e8f26236d1309a4765d766a0e06', '0271f28620a24fac372d69ad8148910ec3399d23', '11cacf70a58434452836b1ecb7e589b35f6158e5', '3fba61b4895078ed184a939a9012caba51022398', '7fe3295136013873b9fd18e66524972607054066', '8c8f4285f694c313bcfe47297dfebaaa3d2ff306', 'a88f878d7c1350301bc015fc06e7d356ee90e487', '8f68f32a0846fce6ef73c0b769e6a4140fa2df28', '6b982cacb08e586ee7a808e5aedd81a137ab3ebd', 'a8b2372d1494e24dcabb00c482cf05e24c5fc52a', '8b57af10e6b0757ad1253d44eaefd02b3727a954', '22a5218f6bfaa5b72f4f697e86b63f57ccc5424d', 'db6be8a4d95ce20d044400f66470b9d1f3dd82ed', '0642d3da7bc0d1708cc124d20479c23a62c56bdb', '69416846682e7c93d707fea4dae8825a92648f69', 'd90494138c5fe5c7ff13b5d5aa44d4a2df10e643', 'ac1e996472b6dfdad912f2c0f3fa30152a422fc7', '7ae65e6a5961e568f7c6182914de5ab5ebb4a1be', '551bf03d0e432d89cb3aebded4d1f0ea981a2007', '7e5ca74b3ffa255b9502e258f023dd63dc0d07d1', 'de1224b146b3c82a7f471392188ab6641f71125a', '28fd758670f1c04c70f4ed6e6bad131ff93626e5', 'a1b53e235b973c27aa203c8bba421695b3098856', '7f4f875596fbd83ed50d7cbc73864d624041164c', '0013337fc84daa732af430678c1754e971e368f0'], 'changed_integration_tests': [], 'version': {'revision': 54514, 'major': 26, 'minor': 9, 'patch': 1, 'tweak': 1, 'githash': '87e37a6c8f75bbc0f6e95bdeab3134767ebc8df7', 'describe': 'v26.9.1.1-testing', 'string': '26.9.1.1'}}, JOB_KV_DATA_BASE_KEYS=['commit_authors', 'parent_pr_number', 'changed_files', 'build_digest', 'master_commits', 'merge_base_commit_sha', 'master_track_commits_sha', 'changed_integration_tests', 'version'], COMMIT_AUTHORS=['milovidov@clickhouse.com'], WORKFLOW_CONFIG={'name': 'PR', 'digest_jobs': {'Config Workflow': 'ffffffffffffffffffff', 'Dockers Build (amd)': '4daf7fed4242543e151e-242c', 'Dockers Build (arm)': '4daf7fed4242543e151e-997b', 'Dockers Build (multiplatform manifest)': '4daf7fed4242543e151e-242c-997b-6117', 'Style check': 'ffffffffffffffffffff', 'Code Review': 'ffffffffffffffffffff', 'Docs check (Mintlify)': '41cd74b1c3043c629c84-89e5b3a5aa0240e803ca-d668', 'Fast test': '7f52956553ab7004b38d-7314', 'Fast test (arm_darwin)': '91dcd43ce23ce7f84271-111a-eba91247630101f0da6a-7d10', 'Build (arm_tidy)': '91dcd43ce23ce7f84271-5084', 'Build (amd_debug)': '91dcd43ce23ce7f84271-6a7e', 'Build (amd_asan_ubsan)': '91dcd43ce23ce7f84271-2dbb', 'Build (amd_tsan)': '91dcd43ce23ce7f84271-79f5', 'Build (amd_msan)': '91dcd43ce23ce7f84271-338c', 'Build (amd_binary)': '91dcd43ce23ce7f84271-0bfc', 'Build (arm_debug)': '91dcd43ce23ce7f84271-c445', 'Build (arm_asan_ubsan)': '91dcd43ce23ce7f84271-526c', 'Build (arm_tsan)': '91dcd43ce23ce7f84271-9771', 'Build (arm_msan)': '91dcd43ce23ce7f84271-6054', 'Build (arm_binary)': '91dcd43ce23ce7f84271-02b3', 'Build (amd_release)': '91dcd43ce23ce7f84271-13e8', 'Build (arm_release)': '91dcd43ce23ce7f84271-9f10', 'Build (amd_darwin)': '91dcd43ce23ce7f84271-0f28', 'Build (arm_darwin)': '91dcd43ce23ce7f84271-111a', 'Build (arm_v80compat)': '91dcd43ce23ce7f84271-8064', 'Build (amd_freebsd)': '91dcd43ce23ce7f84271-1ab4', 'Build (ppc64le)': '91dcd43ce23ce7f84271-720e', 'Build (amd_compat)': '91dcd43ce23ce7f84271-f237', 'Build (amd_musl)': '91dcd43ce23ce7f84271-65f0', 'Build (riscv64)': '91dcd43ce23ce7f84271-b2a4', 'Build (s390x)': '91dcd43ce23ce7f84271-ab1f', 'Build (loongarch64)': '91dcd43ce23ce7f84271-351e', 'Build (wasm64)': '91dcd43ce23ce7f84271-b912', 'Build (amd_fuzzers)': '91dcd43ce23ce7f84271-4cc7', 'Build (wasm_parser)': '1ad6fbbda50d2743efe1-2301ad7c18e68ced7cb1-6f40', 'Build (llvm_coverage_build)': '91dcd43ce23ce7f84271-1535', 'Quick functional tests': '91dcd43ce23ce7f84271-6a7e-ada0c23201050b2bed50-6a34', 'Stateless tests (arm_asan_ubsan, targeted)': '91dcd43ce23ce7f84271-526c-9bb72241d134b58bb385-9a86', 'Integration tests (amd_asan_ubsan, targeted)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-b368', 'AST fuzzer (amd_debug, targeted)': '91dcd43ce23ce7f84271-6a7e-794c964c43fa41d7ddbe-856d', 'AST fuzzer (amd_debug, targeted, old_compatibility)': '91dcd43ce23ce7f84271-6a7e-794c964c43fa41d7ddbe-7e4f', 'Stateless tests (amd_asan_ubsan, flaky check)': '91dcd43ce23ce7f84271-2dbb-9bb72241d134b58bb385-c095', 'Stateless tests (amd_tsan, flaky check)': '91dcd43ce23ce7f84271-79f5-9bb72241d134b58bb385-b13d', 'Stateless tests (amd_msan, flaky check)': '91dcd43ce23ce7f84271-338c-9bb72241d134b58bb385-2006', 'Stateless tests (amd_debug, flaky check)': '91dcd43ce23ce7f84271-6a7e-9bb72241d134b58bb385-224f', 'Stateless tests (amd_binary, flaky check)': '91dcd43ce23ce7f84271-0bfc-9bb72241d134b58bb385-f100', 'Integration tests (amd_asan_ubsan, flaky)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-1de9', 'Bugfix validation (functional tests, amd64)': 'ffffffffffffffffffff', 'Bugfix validation (functional tests, aarch64)': 'ffffffffffffffffffff', 'Bugfix validation (integration tests, amd64)': 'ffffffffffffffffffff', 'Bugfix validation (integration tests, aarch64)': 'ffffffffffffffffffff', 'Bugfix validation (unit tests)': 'bc0c00400bb9cfaf1576-c0b5', 'Stateless tests (amd_llvm_coverage, s3 storage, DBReplicated, parallel, 1/3)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-5e67', 'Stateless tests (amd_llvm_coverage, s3 storage, DBReplicated, parallel, 2/3)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-6ba1', 'Stateless tests (amd_llvm_coverage, s3 storage, DBReplicated, parallel, 3/3)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-0148', 'Stateless tests (amd_llvm_coverage, s3 storage, DBReplicated, sequential, 1/2)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-1273', 'Stateless tests (amd_llvm_coverage, s3 storage, DBReplicated, sequential, 2/2)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-eea5', 'Stateless tests (amd_llvm_coverage, ParallelReplicas, s3 storage, parallel)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-9778', 'Stateless tests (amd_llvm_coverage, ParallelReplicas, s3 storage, sequential)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-af9f', 'Stateless tests (amd_llvm_coverage, AsyncInsert, s3 storage, parallel)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-9481', 'Stateless tests (amd_llvm_coverage, AsyncInsert, s3 storage, sequential)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-7f3c', 'Stateless tests (amd_debug, parallel)': '91dcd43ce23ce7f84271-6a7e-9bb72241d134b58bb385-d7bc', 'Stateless tests (amd_debug, sequential)': '91dcd43ce23ce7f84271-6a7e-9bb72241d134b58bb385-a7f4', 'Stateless tests (amd_debug, distributed plan, s3 storage, parallel)': '91dcd43ce23ce7f84271-6a7e-9bb72241d134b58bb385-fdef', 'Stateless tests (amd_debug, distributed plan, s3 storage, sequential)': '91dcd43ce23ce7f84271-6a7e-9bb72241d134b58bb385-f741', 'Stateless tests (arm_binary, parallel)': '91dcd43ce23ce7f84271-02b3-9bb72241d134b58bb385-0d3d', 'Stateless tests (arm_binary, sequential)': '91dcd43ce23ce7f84271-02b3-9bb72241d134b58bb385-4420', 'Stateless tests (amd_asan_ubsan, distributed plan, parallel, selected tests)': '91dcd43ce23ce7f84271-2dbb-9bb72241d134b58bb385-3714', 'Stateless tests (amd_asan_ubsan, db disk, distributed plan, sequential, selected tests)': '91dcd43ce23ce7f84271-2dbb-9bb72241d134b58bb385-ab19', 'Stateless tests (amd_tsan, parallel, selected tests)': '91dcd43ce23ce7f84271-79f5-9bb72241d134b58bb385-5dfb', 'Stateless tests (amd_tsan, sequential, selected tests)': '91dcd43ce23ce7f84271-79f5-9bb72241d134b58bb385-8b33', 'Stateless tests (amd_tsan, s3 storage, parallel, selected tests)': '91dcd43ce23ce7f84271-79f5-9bb72241d134b58bb385-b3a7', 'Stateless tests (amd_tsan, s3 storage, sequential, selected tests)': '91dcd43ce23ce7f84271-79f5-9bb72241d134b58bb385-5c98', 'Stateless tests (arm_asan_ubsan, azure, parallel)': '91dcd43ce23ce7f84271-526c-9bb72241d134b58bb385-2632', 'Stateless tests (arm_asan_ubsan, azure, sequential)': '91dcd43ce23ce7f84271-526c-9bb72241d134b58bb385-2d88', 'Stateless tests (amd_llvm_coverage, 1/3)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-f8d6', 'Stateless tests (amd_llvm_coverage, 2/3)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-cb1d', 'Stateless tests (amd_llvm_coverage, 3/3)': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-97f3', 'Stateless tests (amd_binary_excluded_from_llvm)': '91dcd43ce23ce7f84271-0bfc-9bb72241d134b58bb385-3a03', 'Integration tests (amd_asan_ubsan, db disk, 1/8)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-830f', 'Integration tests (amd_asan_ubsan, db disk, 2/8)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-ba80', 'Integration tests (amd_asan_ubsan, db disk, 3/8)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-44cb', 'Integration tests (amd_asan_ubsan, db disk, 4/8)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-d1c3', 'Integration tests (amd_asan_ubsan, db disk, 5/8)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-be4a', 'Integration tests (amd_asan_ubsan, db disk, 6/8)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-57b2', 'Integration tests (amd_asan_ubsan, db disk, 7/8)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-be8c', 'Integration tests (amd_asan_ubsan, db disk, 8/8)': '91dcd43ce23ce7f84271-2dbb-c70473dc7c53fb0f54a1-a274', 'Integration tests (arm_binary, distributed plan, 1/4)': '91dcd43ce23ce7f84271-02b3-c70473dc7c53fb0f54a1-cd29', 'Integration tests (arm_binary, distributed plan, 2/4)': '91dcd43ce23ce7f84271-02b3-c70473dc7c53fb0f54a1-f8be', 'Integration tests (arm_binary, distributed plan, 3/4)': '91dcd43ce23ce7f84271-02b3-c70473dc7c53fb0f54a1-7614', 'Integration tests (arm_binary, distributed plan, 4/4)': '91dcd43ce23ce7f84271-02b3-c70473dc7c53fb0f54a1-6c10', 'Integration tests (amd_tsan, 1/6)': '91dcd43ce23ce7f84271-79f5-c70473dc7c53fb0f54a1-b18c', 'Integration tests (amd_tsan, 2/6)': '91dcd43ce23ce7f84271-79f5-c70473dc7c53fb0f54a1-e661', 'Integration tests (amd_tsan, 3/6)': '91dcd43ce23ce7f84271-79f5-c70473dc7c53fb0f54a1-778d', 'Integration tests (amd_tsan, 4/6)': '91dcd43ce23ce7f84271-79f5-c70473dc7c53fb0f54a1-c83c', 'Integration tests (amd_tsan, 5/6)': '91dcd43ce23ce7f84271-79f5-c70473dc7c53fb0f54a1-2457', 'Integration tests (amd_tsan, 6/6)': '91dcd43ce23ce7f84271-79f5-c70473dc7c53fb0f54a1-c368', 'Integration tests (amd_msan, 1/8)': '91dcd43ce23ce7f84271-338c-c70473dc7c53fb0f54a1-9c33', 'Integration tests (amd_msan, 2/8)': '91dcd43ce23ce7f84271-338c-c70473dc7c53fb0f54a1-7d41', 'Integration tests (amd_msan, 3/8)': '91dcd43ce23ce7f84271-338c-c70473dc7c53fb0f54a1-a449', 'Integration tests (amd_msan, 4/8)': '91dcd43ce23ce7f84271-338c-c70473dc7c53fb0f54a1-a5c4', 'Integration tests (amd_msan, 5/8)': '91dcd43ce23ce7f84271-338c-c70473dc7c53fb0f54a1-c206', 'Integration tests (amd_msan, 6/8)': '91dcd43ce23ce7f84271-338c-c70473dc7c53fb0f54a1-152c', 'Integration tests (amd_msan, 7/8)': '91dcd43ce23ce7f84271-338c-c70473dc7c53fb0f54a1-2747', 'Integration tests (amd_msan, 8/8)': '91dcd43ce23ce7f84271-338c-c70473dc7c53fb0f54a1-b712', 'Integration tests (amd_llvm_coverage, 1/8)': '91dcd43ce23ce7f84271-1535-c70473dc7c53fb0f54a1-7f84', 'Integration tests (amd_llvm_coverage, 2/8)': '91dcd43ce23ce7f84271-1535-c70473dc7c53fb0f54a1-ec0e', 'Integration tests (amd_llvm_coverage, 3/8)': '91dcd43ce23ce7f84271-1535-c70473dc7c53fb0f54a1-4f49', 'Integration tests (amd_llvm_coverage, 4/8)': '91dcd43ce23ce7f84271-1535-c70473dc7c53fb0f54a1-de4d', 'Integration tests (amd_llvm_coverage, 5/8)': '91dcd43ce23ce7f84271-1535-c70473dc7c53fb0f54a1-6ab0', 'Integration tests (amd_llvm_coverage, 6/8)': '91dcd43ce23ce7f84271-1535-c70473dc7c53fb0f54a1-318f', 'Integration tests (amd_llvm_coverage, 7/8)': '91dcd43ce23ce7f84271-1535-c70473dc7c53fb0f54a1-9965', 'Integration tests (amd_llvm_coverage, 8/8)': '91dcd43ce23ce7f84271-1535-c70473dc7c53fb0f54a1-5f6e', 'Integration tests (amd_binary_excluded_from_llvm)': '91dcd43ce23ce7f84271-0bfc-c70473dc7c53fb0f54a1-1585', 'Unit tests (asan_ubsan)': '91dcd43ce23ce7f84271-2dbb-e7543c54772cc1e21ff5-01d3e834c5a399e58e3e-b082', 'Unit tests (tsan)': '91dcd43ce23ce7f84271-79f5-e7543c54772cc1e21ff5-01d3e834c5a399e58e3e-b53a', 'Unit tests (msan)': '91dcd43ce23ce7f84271-338c-e7543c54772cc1e21ff5-01d3e834c5a399e58e3e-625a', 'Unit tests (asan_ubsan, function_prop_fuzzer)': '91dcd43ce23ce7f84271-2dbb-e7543c54772cc1e21ff5-01d3e834c5a399e58e3e-83c8', 'Unit tests (tsan, function_prop_fuzzer)': '91dcd43ce23ce7f84271-79f5-e7543c54772cc1e21ff5-01d3e834c5a399e58e3e-67d4', 'Unit tests (msan, function_prop_fuzzer)': '91dcd43ce23ce7f84271-338c-e7543c54772cc1e21ff5-01d3e834c5a399e58e3e-7cd1', 'Unit tests (amd_llvm_coverage)': '91dcd43ce23ce7f84271-1535-e7543c54772cc1e21ff5-01d3e834c5a399e58e3e-b77f', 'Docker server image': '91dcd43ce23ce7f84271-13e8-9f10-bd901d8e2b344b22f8df-c491', 'Docker keeper image': '91dcd43ce23ce7f84271-13e8-9f10-bd901d8e2b344b22f8df-97f5', 'Install packages (amd_release)': '91dcd43ce23ce7f84271-13e8-16f8ee3759ca0542603e-f9dd', 'Install packages (arm_release)': '91dcd43ce23ce7f84271-9f10-16f8ee3759ca0542603e-fc51', 'Compatibility check (amd_release)': '91dcd43ce23ce7f84271-13e8-74e207664e5e6dcba325-c14d', 'Compatibility check (arm_release)': '91dcd43ce23ce7f84271-9f10-74e207664e5e6dcba325-466b', 'Stress test (amd_debug)': '91dcd43ce23ce7f84271-6a7e-b60b25f439baa7ba9305-87fd', 'Stress test (amd_asan_ubsan)': '91dcd43ce23ce7f84271-2dbb-b60b25f439baa7ba9305-a33b', 'Stress test (amd_tsan)': '91dcd43ce23ce7f84271-79f5-b60b25f439baa7ba9305-0625', 'Stress test (amd_msan)': '91dcd43ce23ce7f84271-338c-b60b25f439baa7ba9305-391d', 'Stress test (arm_release)': '91dcd43ce23ce7f84271-9f10-b60b25f439baa7ba9305-0f7a', 'Stress test (arm_debug)': '91dcd43ce23ce7f84271-c445-b60b25f439baa7ba9305-c1de', 'Stress test (arm_asan_ubsan)': '91dcd43ce23ce7f84271-526c-b60b25f439baa7ba9305-ae16', 'Stress test (arm_asan_ubsan, s3)': '91dcd43ce23ce7f84271-526c-b60b25f439baa7ba9305-df16', 'Stress test (arm_tsan)': '91dcd43ce23ce7f84271-9771-b60b25f439baa7ba9305-f5e8', 'Stress test (arm_msan)': '91dcd43ce23ce7f84271-6054-b60b25f439baa7ba9305-cd06', 'Upgrade check (amd_release)': '91dcd43ce23ce7f84271-13e8-e2eaba6e89a038acbee6-9cde', 'AST fuzzer (amd_debug)': '91dcd43ce23ce7f84271-6a7e-d69e9997f052a11ce6d9-d620', 'AST fuzzer (arm_asan_ubsan)': '91dcd43ce23ce7f84271-526c-d69e9997f052a11ce6d9-6c61', 'AST fuzzer (amd_tsan)': '91dcd43ce23ce7f84271-79f5-d69e9997f052a11ce6d9-881b', 'AST fuzzer (amd_msan)': '91dcd43ce23ce7f84271-338c-d69e9997f052a11ce6d9-15ec', 'AST fuzzer (amd_release, oracle)': '91dcd43ce23ce7f84271-13e8-d69e9997f052a11ce6d9-37f7', 'BuzzHouse (amd_debug)': '91dcd43ce23ce7f84271-6a7e-a96f6834d13418442cf5-9793', 'BuzzHouse (arm_asan_ubsan)': '91dcd43ce23ce7f84271-526c-a96f6834d13418442cf5-c295', 'BuzzHouse (amd_tsan)': '91dcd43ce23ce7f84271-79f5-a96f6834d13418442cf5-28b8', 'BuzzHouse (amd_msan)': '91dcd43ce23ce7f84271-338c-a96f6834d13418442cf5-7777', 'Performance Comparison (amd_release, master_head, 1/6)': '91dcd43ce23ce7f84271-13e8-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-8825', 'Performance Comparison (amd_release, master_head, 2/6)': '91dcd43ce23ce7f84271-13e8-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-357a', 'Performance Comparison (amd_release, master_head, 3/6)': '91dcd43ce23ce7f84271-13e8-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-212d', 'Performance Comparison (amd_release, master_head, 4/6)': '91dcd43ce23ce7f84271-13e8-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-543f', 'Performance Comparison (amd_release, master_head, 5/6)': '91dcd43ce23ce7f84271-13e8-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-0a38', 'Performance Comparison (amd_release, master_head, 6/6)': '91dcd43ce23ce7f84271-13e8-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-941a', 'Performance Comparison (arm_release, master_head, 1/6)': '91dcd43ce23ce7f84271-9f10-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-0cfd', 'Performance Comparison (arm_release, master_head, 2/6)': '91dcd43ce23ce7f84271-9f10-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-569f', 'Performance Comparison (arm_release, master_head, 3/6)': '91dcd43ce23ce7f84271-9f10-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-4465', 'Performance Comparison (arm_release, master_head, 4/6)': '91dcd43ce23ce7f84271-9f10-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-fd3e', 'Performance Comparison (arm_release, master_head, 5/6)': '91dcd43ce23ce7f84271-9f10-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-75d5', 'Performance Comparison (arm_release, master_head, 6/6)': '91dcd43ce23ce7f84271-9f10-8541cc2a318b81845bc8-c8e7bb952d3ec110310f-e1d3', 'Parser memory check': '91dcd43ce23ce7f84271-9f10-e7543c54772cc1e21ff5-ba26c80c67777903bed9-6913', 'ClickBench (amd_release)': '91dcd43ce23ce7f84271-13e8-d736059c64c91e6623f7-10e640717c7277db00d8-36f4', 'ClickBench (arm_release)': '91dcd43ce23ce7f84271-9f10-d736059c64c91e6623f7-10e640717c7277db00d8-12c8', 'LLVM Coverage': '91dcd43ce23ce7f84271-1535-9bb72241d134b58bb385-f8d6-cb1d-97f3-5e67-6ba1-0148-1273-eea5-9778-af9f-9481-7f3c-c70473dc7c53fb0f54a1-7f84-ec0e-4f49-de4d-6ab0-318f-9965-5f6e-e7543c54772cc1e21ff5-01d3e834c5a399e58e3e-b77f-7aa5cce75ba2a1596161-5458', 'PromQL Compliance': 'ffffffffffffffffffff', 'Build profile diff': '91dcd43ce23ce7f84271-9f10-d736059c64c91e6623f7-b912b3da9fba66d95b6d-22d9', 'SQLLogic test': '91dcd43ce23ce7f84271-9f10-d736059c64c91e6623f7-67c9cbd54b65ac25344e-6c71', 'SQLStorm test': '91dcd43ce23ce7f84271-9f10-d736059c64c91e6623f7-5e9d2651dc3188c020cf-76e6', 'Docs examples': '91dcd43ce23ce7f84271-9f10-d736059c64c91e6623f7-e2d27aa87869be23986f-43c3', 'Keeper Stress Tests (PR)': '91dcd43ce23ce7f84271-02b3-ac28890f30d5056d9513-e179', 'Build Toolchain (PGO, BOLT) (amd64)': '5f87b3d74eb6e66856ad-3dec', 'Build Toolchain (PGO, BOLT) (aarch64)': '5f87b3d74eb6e66856ad-ff9c', 'Finish Workflow': 'ffffffffffffffffffff'}, 'digest_dockers': {'clickhouse/style-test': '0657a183ba080a423443', 'clickhouse/fasttest': 'ef6434c209c033deb126', 'clickhouse/binary-builder': '838d05acc2bc3b7320cc', 'clickhouse/wasm-builder': '1ad6fbbda50d2743efe1', 'clickhouse/cctools': 'f150bc35161e65ea5dfa', 'clickhouse/utils': 'de6973a4917e1f8cfbed', 'clickhouse/test-base': 'e7543c54772cc1e21ff5', 'clickhouse/fuzzer': 'dd476269916ce7d0f361', 'clickhouse/performance-comparison': '8541cc2a318b81845bc8', 'clickhouse/keeper-jepsen-test': '414552eb2d42cb724ed0', 'clickhouse/server-jepsen-test': 'fe38110923c3b9571c1e', 'clickhouse/integration-test': 'e3db88f71aa15cb471e4', 'clickhouse/integration-tests-runner': 'b0c0717d44787a938f53', 'clickhouse/integration-test-with-unity-catalog': 'a5c07d45a822510f8171', 'clickhouse/integration-test-with-hms': 'a7718d3ee05e6c1a882c', 'clickhouse/integration-helper': '634724fd9222266fa470', 'clickhouse/kerberos-kdc': '310561e6eb756c8311b1', 'clickhouse/test-mysql80': '4a1cf95c144674c30c4e', 'clickhouse/test-mysql57': '5b5ad2fafb3ab01436a8', 'clickhouse/mysql-golang-client': '0c8e4f20c29df40fa75b', 'clickhouse/mysql-java-client': '96f82598e00024a49347', 'clickhouse/mysql-js-client': '4dfeb405c2378c169e77', 'clickhouse/arrowflight-server-test': '78176d0ff389c8a211f8', 'clickhouse/dotnet-client': '50da1ccb94f49087d3f0', 'clickhouse/mysql-php-client': '141d4046c28f2089dd0d', 'clickhouse/nginx-dav': 'aa33b6ad5665b723c6e4', 'clickhouse/postgresql-java-client': '3582d281bb57b0639530', 'clickhouse/python-bottle': '410fa8ac20949b86e9d8', 'clickhouse/s3-proxy': 'dfb5f038f7b3fbb32266', 'clickhouse/docs-builder': '41cd74b1c3043c629c84', 'clickhouse/install-deb-test': 'ec2879744cacbe7f4957', 'clickhouse/install-rpm-test': '6f408fc7fa9d466a1090', 'clickhouse/sqlancer-test': 'c382433b6fcab5e1262e', 'clickhouse/mysql_dotnet_client': 'f11da9a816d53aa05e78', 'clickhouse/stateless-test': 'd736059c64c91e6623f7', 'clickhouse/stress-test': 'cf9e239130299af5a371'}, 'cache_success': ['Integration tests (amd_asan_ubsan, flaky)', 'Bugfix validation (integration tests, amd64)', 'Bugfix validation (integration tests, aarch64)', 'Bugfix validation (unit tests)', 'Performance Comparison (amd_release, master_head, 1/6)', 'Performance Comparison (amd_release, master_head, 2/6)', 'Performance Comparison (amd_release, master_head, 3/6)', 'Performance Comparison (amd_release, master_head, 4/6)', 'Performance Comparison (amd_release, master_head, 5/6)', 'Performance Comparison (amd_release, master_head, 6/6)', 'PromQL Compliance', 'Keeper Stress Tests (PR)', 'Build Toolchain (PGO, BOLT) (amd64)', 'Build Toolchain (PGO, BOLT) (aarch64)', 'Docs check (Mintlify)', 'Dockers Build (amd)', 'Dockers Build (arm)', 'Dockers Build (multiplatform manifest)'], 'cache_success_base64': ['SW50ZWdyYXRpb24gdGVzdHMgKGFtZF9hc2FuX3Vic2FuLCBmbGFreSk=', 'QnVnZml4IHZhbGlkYXRpb24gKGludGVncmF0aW9uIHRlc3RzLCBhbWQ2NCk=', 'QnVnZml4IHZhbGlkYXRpb24gKGludGVncmF0aW9uIHRlc3RzLCBhYXJjaDY0KQ==', 'QnVnZml4IHZhbGlkYXRpb24gKHVuaXQgdGVzdHMp', 'UGVyZm9ybWFuY2UgQ29tcGFyaXNvbiAoYW1kX3JlbGVhc2UsIG1hc3Rlcl9oZWFkLCAxLzYp', 'UGVyZm9ybWFuY2UgQ29tcGFyaXNvbiAoYW1kX3JlbGVhc2UsIG1hc3Rlcl9oZWFkLCAyLzYp', 'UGVyZm9ybWFuY2UgQ29tcGFyaXNvbiAoYW1kX3JlbGVhc2UsIG1hc3Rlcl9oZWFkLCAzLzYp', 'UGVyZm9ybWFuY2UgQ29tcGFyaXNvbiAoYW1kX3JlbGVhc2UsIG1hc3Rlcl9oZWFkLCA0LzYp', 'UGVyZm9ybWFuY2UgQ29tcGFyaXNvbiAoYW1kX3JlbGVhc2UsIG1hc3Rlcl9oZWFkLCA1LzYp', 'UGVyZm9ybWFuY2UgQ29tcGFyaXNvbiAoYW1kX3JlbGVhc2UsIG1hc3Rlcl9oZWFkLCA2LzYp', 'UHJvbVFMIENvbXBsaWFuY2U=', 'S2VlcGVyIFN0cmVzcyBUZXN0cyAoUFIp', 'QnVpbGQgVG9vbGNoYWluIChQR08sIEJPTFQpIChhbWQ2NCk=', 'QnVpbGQgVG9vbGNoYWluIChQR08sIEJPTFQpIChhYXJjaDY0KQ==', 'RG9jcyBjaGVjayAoTWludGxpZnkp', 'RG9ja2VycyBCdWlsZCAoYW1kKQ==', 'RG9ja2VycyBCdWlsZCAoYXJtKQ==', 'RG9ja2VycyBCdWlsZCAobXVsdGlwbGF0Zm9ybSBtYW5pZmVzdCk='], 'cache_artifacts': {}, 'cache_jobs': {'Dockers Build (amd)': {'type': 'success', 'sha': '78bbd4423ee14a6d65dd88932933007a9e9e9ca6', 'pr_number': 119222, 'branch': 'nullable-tuple-ga', 'workflow': 'PR', 'event': 'pull_request'}, 'Dockers Build (arm)': {'type': 'success', 'sha': '78bbd4423ee14a6d65dd88932933007a9e9e9ca6', 'pr_number': 119222, 'branch': 'nullable-tuple-ga', 'workflow': 'PR', 'event': 'pull_request'}, 'Dockers Build (multiplatform manifest)': {'type': 'success', 'sha': '78bbd4423ee14a6d65dd88932933007a9e9e9ca6', 'pr_number': 119222, 'branch': 'nullable-tuple-ga', 'workflow': 'PR', 'event': 'pull_request'}}, 'filtered_jobs': {'Integration tests (amd_asan_ubsan, flaky)': 'Skipped, no integration tests updates', 'Bugfix validation (integration tests, amd64)': 'Skipped, no integration tests updates', 'Bugfix validation (integration tests, aarch64)': 'Skipped, no integration tests updates', 'Bugfix validation (unit tests)': 'Skipped, the functional/integration bugfix validation owns the verdict', 'Performance Comparison (amd_release, master_head, 1/6)': "Skipped, not labeled with 'pr-performance'", 'Performance Comparison (amd_release, master_head, 2/6)': "Skipped, not labeled with 'pr-performance'", 'Performance Comparison (amd_release, master_head, 3/6)': "Skipped, not labeled with 'pr-performance'", 'Performance Comparison (amd_release, master_head, 4/6)': "Skipped, not labeled with 'pr-performance'", 'Performance Comparison (amd_release, master_head, 5/6)': "Skipped, not labeled with 'pr-performance'", 'Performance Comparison (amd_release, master_head, 6/6)': "Skipped, not labeled with 'pr-performance'", 'PromQL Compliance': "Skipped, PR not labeled 'comp-promql' — PromQL compliance comment job only", 'Keeper Stress Tests (PR)': 'Skipped, no changes in src/Coordination, tests/stress/keeper, or keeper_stress_job.py', 'Build Toolchain (PGO, BOLT) (amd64)': "Skipped, not labeled with 'ci-toolchain'", 'Build Toolchain (PGO, BOLT) (aarch64)': "Skipped, not labeled with 'ci-toolchain'", 'Docs check (Mintlify)': 'Not affected by the changed files and not required'}, 'sha': 'b4c2e9feacab32c10b86ff06b8ad8253a9892e9c', 'submodule_cache_hash': '68d2e17b65f7bf4e', 'custom_data': {}, 'base_sha': '', 'snapshot_sha': '', 'repo_snapshot_key': ''}, RERUN_COUNT=0, ORCHESTRATOR_OWNS_REPORT=False) [2026-09-18 08:56:30] === Setup env finished === [2026-09-18 08:56:30] === Pre run script [Build profile diff], workflow [PR] === [2026-09-18 08:56:31] NOTE: Repo state is clean before job start [2026-09-18 08:56:31] Update Job and Workflow Report [2026-09-18 08:56:31] NOTE: UsageStorage data will be initialized [2026-09-18 08:56:31] Downloaded file from S3 with version 318 [2026-09-18 08:56:31] Uploaded file with version 319 [2026-09-18 08:56:31] Workflow status changed: [FAIL] -> [RUNNING] [2026-09-18 08:56:31] Download required artifacts [2026-09-18 08:56:31] Artifact report for [Build (arm_release)] will be downloaded [2026-09-18 08:56:31] --- Job requires s3 artifacts [[Artifact.Config(name='Build (arm_release)', type='phony', path='artifact_report_build_arm_release.json', compress_zst=False, optional=False, _provided_by='Build (arm_release)', ext={})]] [2026-09-18 08:56:31] === Pre run finished === [2026-09-18 08:56:31] === Run script [Build profile diff], workflow [PR] === [2026-09-18 08:56:31] Mint GitHub token via lambda [clickhouse-gh-token] [2026-09-18 08:56:32] INFO: disk status before running a job: [2026-09-18 08:56:32] Run command: [df -h] [2026-09-18 08:56:32] Filesystem Size Used Avail Use% Mounted on [2026-09-18 08:56:32] /dev/root 146G 8.0G 138G 6% / [2026-09-18 08:56:32] tmpfs 16G 0 16G 0% /dev/shm [2026-09-18 08:56:32] tmpfs 6.2G 1.3M 6.2G 1% /run [2026-09-18 08:56:32] tmpfs 5.0M 0 5.0M 0% /run/lock [2026-09-18 08:56:32] tmpfs 4.0M 0 4.0M 0% /sys/fs/cgroup [2026-09-18 08:56:32] efivarfs 128K 3.3K 125K 3% /sys/firmware/efi/efivars [2026-09-18 08:56:32] /dev/nvme0n1p15 98M 6.3M 92M 7% /boot/efi [2026-09-18 08:56:32] Run command: [docker system df] [2026-09-18 08:56:32] TYPE TOTAL ACTIVE SIZE RECLAIMABLE [2026-09-18 08:56:32] Images 1 0 373MB 373MB (99%) [2026-09-18 08:56:32] Containers 0 0 0B 0B [2026-09-18 08:56:32] Local Volumes 0 0 0B 0B [2026-09-18 08:56:32] Build Cache 0 0 0B 0B [2026-09-18 08:56:32] --- Run command [docker run --rm --name praktika_f706e373af07 --user $(id -u):$(id -g) -e PYTHONUNBUFFERED=1 -e PYTHONSAFEPATH=1 -e PYTHONPATH=/tmp/praktika-docker-packages/site-packages-c9be7df00ed4a27f:/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse --volume ./:/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse --volume /tmp/praktika-docker-packages/site-packages-c9be7df00ed4a27f:/tmp/praktika-docker-packages/site-packages-c9be7df00ed4a27f --volume ~/.config/gh:/ghconfig -e GH_CONFIG_DIR=/ghconfig --workdir=/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse clickhouse/stateless-test:d736059c64c91e6623f7_arm python3 ./ci/jobs/build_profile_diff_job.py] [2026-09-18 08:56:32] Run command: [timeout --verbose 300 docker pull clickhouse/stateless- [2026-09-18 08:56:32] test:d736059c64c91e6623f7_arm] [2026-09-18 08:56:32] d736059c64c91e6623f7_arm: Pulling from clickhouse/stateless-test [2026-09-18 08:56:32] 44136fa355b3: Download complete [2026-09-18 08:56:33] 5564b3c865be: Pulling fs layer [2026-09-18 08:56:33] 68bd4a95d8ec: Pulling fs layer [2026-09-18 08:56:33] e2728785181d: Pulling fs layer [2026-09-18 08:56:33] adfd5e4449a9: Pulling fs layer [2026-09-18 08:56:33] 46b7b60087a1: Pulling fs layer [2026-09-18 08:56:33] f1a6a135cc5c: Pulling fs layer [2026-09-18 08:56:33] cda6147f375b: Pulling fs layer [2026-09-18 08:56:33] c955e316c20c: Pulling fs layer [2026-09-18 08:56:33] e7aeba1c72e4: Pulling fs layer [2026-09-18 08:56:33] 8ca9c219bf87: Pulling fs layer [2026-09-18 08:56:33] 79c0eee852fc: Pulling fs layer [2026-09-18 08:56:33] 6f909d91de44: Pulling fs layer [2026-09-18 08:56:33] e1a87e98f38e: Pulling fs layer [2026-09-18 08:56:33] f2b2cd0c887d: Pulling fs layer [2026-09-18 08:56:33] d96160d33a8b: Pulling fs layer [2026-09-18 08:56:33] 3739a98b7d1a: Pulling fs layer [2026-09-18 08:56:33] 423f9e1111e3: Pulling fs layer [2026-09-18 08:56:33] 27ccc7f77b6d: Pulling fs layer [2026-09-18 08:56:33] d07927b46f10: Pulling fs layer [2026-09-18 08:56:33] 10d1a8896588: Pulling fs layer [2026-09-18 08:56:33] 2c1ce468d9f3: Pulling fs layer [2026-09-18 08:56:33] 456e8e68dcd8: Pulling fs layer [2026-09-18 08:56:33] 25c51aedee44: Pulling fs layer [2026-09-18 08:56:33] 26b666f3274a: Pulling fs layer [2026-09-18 08:56:33] b847e15efbec: Pulling fs layer [2026-09-18 08:56:33] 56da07922b85: Pulling fs layer [2026-09-18 08:56:33] 7dc94682bd3d: Pulling fs layer [2026-09-18 08:56:33] a3ab7468f068: Pulling fs layer [2026-09-18 08:56:33] 6bf6a8ad216c: Pulling fs layer [2026-09-18 08:56:33] 5ac48e077a87: Pulling fs layer [2026-09-18 08:56:33] 6418ad27d6cc: Pulling fs layer [2026-09-18 08:56:33] 957a0bd29090: Pulling fs layer [2026-09-18 08:56:33] af14915e951d: Pulling fs layer [2026-09-18 08:56:33] b853008dd7a1: Pulling fs layer [2026-09-18 08:56:33] 2c1ce468d9f3: Pulling fs layer [2026-09-18 08:56:33] 6340a9887ae1: Pulling fs layer [2026-09-18 08:56:33] 2c1ce468d9f3: Pulling fs layer [2026-09-18 08:56:33] 2c1ce468d9f3: Pulling fs layer [2026-09-18 08:56:33] 383fff7f34d6: Pulling fs layer [2026-09-18 08:56:33] b15c0def6d80: Pulling fs layer [2026-09-18 08:56:33] 51a93be147d8: Pulling fs layer [2026-09-18 08:56:33] e82beab50431: Download complete [2026-09-18 08:56:33] adfd5e4449a9: Download complete [2026-09-18 08:56:33] 68bd4a95d8ec: Download complete [2026-09-18 08:56:33] 891440fa5e93: Download complete [2026-09-18 08:56:33] 6f909d91de44: Download complete [2026-09-18 08:56:33] d96160d33a8b: Download complete [2026-09-18 08:56:33] 46b7b60087a1: Download complete [2026-09-18 08:56:33] e2728785181d: Download complete [2026-09-18 08:56:34] cda6147f375b: Download complete [2026-09-18 08:56:34] 5ac48e077a87: Download complete [2026-09-18 08:56:34] 5564b3c865be: Download complete [2026-09-18 08:56:35] 3739a98b7d1a: Download complete [2026-09-18 08:56:35] 27ccc7f77b6d: Download complete [2026-09-18 08:56:35] 8ca9c219bf87: Download complete [2026-09-18 08:56:35] c955e316c20c: Download complete [2026-09-18 08:56:35] d07927b46f10: Download complete [2026-09-18 08:56:35] 423f9e1111e3: Download complete [2026-09-18 08:56:35] 10d1a8896588: Download complete [2026-09-18 08:56:35] 456e8e68dcd8: Download complete [2026-09-18 08:56:35] f1a6a135cc5c: Download complete [2026-09-18 08:56:36] 7dc94682bd3d: Download complete [2026-09-18 08:56:37] 957a0bd29090: Download complete [2026-09-18 08:56:37] 56da07922b85: Download complete [2026-09-18 08:56:37] 6bf6a8ad216c: Download complete [2026-09-18 08:56:37] 2c1ce468d9f3: Download complete [2026-09-18 08:56:38] a3ab7468f068: Download complete [2026-09-18 08:56:38] 25c51aedee44: Download complete [2026-09-18 08:56:38] b853008dd7a1: Download complete [2026-09-18 08:56:38] 68bd4a95d8ec: Pull complete [2026-09-18 08:56:38] 25c51aedee44: Pull complete [2026-09-18 08:56:38] b847e15efbec: Download complete [2026-09-18 08:56:38] b847e15efbec: Pull complete [2026-09-18 08:56:39] af14915e951d: Download complete [2026-09-18 08:56:39] e1a87e98f38e: Download complete [2026-09-18 08:56:40] f2b2cd0c887d: Download complete [2026-09-18 08:56:40] e7aeba1c72e4: Download complete [2026-09-18 08:56:40] 79c0eee852fc: Download complete [2026-09-18 08:56:42] 383fff7f34d6: Download complete [2026-09-18 08:56:42] 6340a9887ae1: Download complete [2026-09-18 08:56:43] 51a93be147d8: Download complete [2026-09-18 08:56:43] 6418ad27d6cc: Download complete [2026-09-18 08:56:43] b15c0def6d80: Download complete [2026-09-18 08:56:43] 51a93be147d8: Pull complete [2026-09-18 08:56:44] d96160d33a8b: Pull complete [2026-09-18 08:56:44] 2c1ce468d9f3: Pull complete [2026-09-18 08:56:44] a3ab7468f068: Pull complete [2026-09-18 08:56:44] cda6147f375b: Pull complete [2026-09-18 08:56:44] 6f909d91de44: Pull complete [2026-09-18 08:56:44] 8ca9c219bf87: Pull complete [2026-09-18 08:56:45] b15c0def6d80: Pull complete [2026-09-18 08:56:46] 5564b3c865be: Pull complete [2026-09-18 08:56:47] 46b7b60087a1: Pull complete [2026-09-18 08:56:48] adfd5e4449a9: Pull complete [2026-09-18 08:56:50] 26b666f3274a: Download complete [2026-09-18 08:56:53] 26b666f3274a: Pull complete [2026-09-18 08:56:53] d07927b46f10: Pull complete [2026-09-18 08:56:53] 79c0eee852fc: Pull complete [2026-09-18 08:56:53] 3739a98b7d1a: Pull complete [2026-09-18 08:56:53] e1a87e98f38e: Pull complete [2026-09-18 08:56:54] 423f9e1111e3: Pull complete [2026-09-18 08:56:54] f2b2cd0c887d: Pull complete [2026-09-18 08:56:54] 10d1a8896588: Pull complete [2026-09-18 08:56:54] 456e8e68dcd8: Pull complete [2026-09-18 08:56:54] 56da07922b85: Pull complete [2026-09-18 08:56:54] 7dc94682bd3d: Pull complete [2026-09-18 08:56:54] 6bf6a8ad216c: Pull complete [2026-09-18 08:56:58] 6418ad27d6cc: Pull complete [2026-09-18 08:56:59] 6340a9887ae1: Pull complete [2026-09-18 08:56:59] e7aeba1c72e4: Pull complete [2026-09-18 08:56:59] e2728785181d: Pull complete [2026-09-18 08:57:02] 957a0bd29090: Pull complete [2026-09-18 08:57:02] b853008dd7a1: Pull complete [2026-09-18 08:57:03] af14915e951d: Pull complete [2026-09-18 08:57:05] f1a6a135cc5c: Pull complete [2026-09-18 08:57:05] 5ac48e077a87: Pull complete [2026-09-18 08:57:05] 383fff7f34d6: Pull complete [2026-09-18 08:57:06] c955e316c20c: Pull complete [2026-09-18 08:57:08] 27ccc7f77b6d: Pull complete [2026-09-18 08:57:08] Digest: sha256:e79b988e7f24eaf3bec5d8b97b585d7ffdf7adaf543546f9a89af0a95e51abd0 [2026-09-18 08:57:08] Status: Downloaded newer image for clickhouse/stateless-test:d736059c64c91e6623f7_arm [2026-09-18 08:57:08] docker.io/clickhouse/stateless-test:d736059c64c91e6623f7_arm [2026-09-18 08:57:08] NOTE: Host metrics collection started (fine 1.0s, window 5.0s, disk on, psi on, file [./ci/tmp/host_metrics.jsonl]) [2026-09-18 08:57:09] Subprocess started, pid [2332] [2026-09-18 08:58:06] Comparing PR 120288 sha b4c2e9feacab32c10b86ff06b8ad8253a9892e9c against master 3a43db4d688ffe457304d378c7a83f44f652c1c0 (warmup baseline: 3a43db4d688ffe457304d378c7a83f44f652c1c0) [2026-09-18 08:59:20] 716 object files exist only in the warmup baseline (target-set difference) and are not compared [2026-09-18 09:00:20] WARNING: LogCluster select failed with exception [2026-09-18 09:00:20] Traceback (most recent call last): [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 534, in _make_request [2026-09-18 09:00:20] response = conn.getresponse() [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/urllib3/connection.py", line 571, in getresponse [2026-09-18 09:00:20] httplib_response = super().getresponse() [2026-09-18 09:00:20] File "/usr/lib/python3.13/http/client.py", line 1478, in getresponse [2026-09-18 09:00:20] response.begin() [2026-09-18 09:00:20] ~~~~~~~~~~~~~~^^ [2026-09-18 09:00:20] File "/usr/lib/python3.13/http/client.py", line 343, in begin [2026-09-18 09:00:20] version, status, reason = self._read_status() [2026-09-18 09:00:20] ~~~~~~~~~~~~~~~~~^^ [2026-09-18 09:00:20] File "/usr/lib/python3.13/http/client.py", line 304, in _read_status [2026-09-18 09:00:20] line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") [2026-09-18 09:00:20] ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ [2026-09-18 09:00:20] File "/usr/lib/python3.13/socket.py", line 723, in readinto [2026-09-18 09:00:20] return self._sock.recv_into(b) [2026-09-18 09:00:20] ~~~~~~~~~~~~~~~~~~~~^^^ [2026-09-18 09:00:20] File "/usr/lib/python3.13/ssl.py", line 1304, in recv_into [2026-09-18 09:00:20] return self.read(nbytes, buffer) [2026-09-18 09:00:20] ~~~~~~~~~^^^^^^^^^^^^^^^^ [2026-09-18 09:00:20] File "/usr/lib/python3.13/ssl.py", line 1138, in read [2026-09-18 09:00:20] return self._sslobj.read(len, buffer) [2026-09-18 09:00:20] ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ [2026-09-18 09:00:20] TimeoutError: The read operation timed out [2026-09-18 09:00:20] The above exception was the direct cause of the following exception: [2026-09-18 09:00:20] Traceback (most recent call last): [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 645, in send [2026-09-18 09:00:20] resp = conn.urlopen( [2026-09-18 09:00:20] method=request.method, [2026-09-18 09:00:20] ...<9 lines>... [2026-09-18 09:00:20] chunked=chunked, [2026-09-18 09:00:20] ) [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 842, in urlopen [2026-09-18 09:00:20] retries = retries.increment( [2026-09-18 09:00:20] method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] [2026-09-18 09:00:20] ) [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/retry.py", line 498, in increment [2026-09-18 09:00:20] raise reraise(type(error), error, _stacktrace) [2026-09-18 09:00:20] ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/util.py", line 39, in reraise [2026-09-18 09:00:20] raise value [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 788, in urlopen [2026-09-18 09:00:20] response = self._make_request( [2026-09-18 09:00:20] conn, [2026-09-18 09:00:20] ...<10 lines>... [2026-09-18 09:00:20] **response_kw, [2026-09-18 09:00:20] ) [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 536, in _make_request [2026-09-18 09:00:20] self._raise_timeout(err=e, url=url, timeout_value=read_timeout) [2026-09-18 09:00:20] ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 367, in _raise_timeout [2026-09-18 09:00:20] raise ReadTimeoutError( [2026-09-18 09:00:20] self, url, f"Read timed out. (read timeout={timeout_value})" [2026-09-18 09:00:20] ) from err [2026-09-18 09:00:20] urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:00:20] During handling of the above exception, another exception occurred: [2026-09-18 09:00:20] Traceback (most recent call last): [2026-09-18 09:00:20] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/ci/jobs/scripts/log_cluster.py", line 333, in select [2026-09-18 09:00:20] response = self._session.post( [2026-09-18 09:00:20] url=self.url, [2026-09-18 09:00:20] ...<3 lines>... [2026-09-18 09:00:20] timeout=timeout, [2026-09-18 09:00:20] ) [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 640, in post [2026-09-18 09:00:20] return self.request("POST", url, data=data, json=json, **kwargs) [2026-09-18 09:00:20] ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 592, in request [2026-09-18 09:00:20] resp = self.send(prep, **send_kwargs) [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 706, in send [2026-09-18 09:00:20] r = adapter.send(request, **kwargs) [2026-09-18 09:00:20] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 691, in send [2026-09-18 09:00:20] raise ReadTimeout(e, request=request) [2026-09-18 09:00:20] requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:01:25] WARNING: LogCluster select failed with exception [2026-09-18 09:01:25] Traceback (most recent call last): [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 534, in _make_request [2026-09-18 09:01:25] response = conn.getresponse() [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/urllib3/connection.py", line 571, in getresponse [2026-09-18 09:01:25] httplib_response = super().getresponse() [2026-09-18 09:01:25] File "/usr/lib/python3.13/http/client.py", line 1478, in getresponse [2026-09-18 09:01:25] response.begin() [2026-09-18 09:01:25] ~~~~~~~~~~~~~~^^ [2026-09-18 09:01:25] File "/usr/lib/python3.13/http/client.py", line 343, in begin [2026-09-18 09:01:25] version, status, reason = self._read_status() [2026-09-18 09:01:25] ~~~~~~~~~~~~~~~~~^^ [2026-09-18 09:01:25] File "/usr/lib/python3.13/http/client.py", line 304, in _read_status [2026-09-18 09:01:25] line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") [2026-09-18 09:01:25] ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ [2026-09-18 09:01:25] File "/usr/lib/python3.13/socket.py", line 723, in readinto [2026-09-18 09:01:25] return self._sock.recv_into(b) [2026-09-18 09:01:25] ~~~~~~~~~~~~~~~~~~~~^^^ [2026-09-18 09:01:25] File "/usr/lib/python3.13/ssl.py", line 1304, in recv_into [2026-09-18 09:01:25] return self.read(nbytes, buffer) [2026-09-18 09:01:25] ~~~~~~~~~^^^^^^^^^^^^^^^^ [2026-09-18 09:01:25] File "/usr/lib/python3.13/ssl.py", line 1138, in read [2026-09-18 09:01:25] return self._sslobj.read(len, buffer) [2026-09-18 09:01:25] ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ [2026-09-18 09:01:25] TimeoutError: The read operation timed out [2026-09-18 09:01:25] The above exception was the direct cause of the following exception: [2026-09-18 09:01:25] Traceback (most recent call last): [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 645, in send [2026-09-18 09:01:25] resp = conn.urlopen( [2026-09-18 09:01:25] method=request.method, [2026-09-18 09:01:25] ...<9 lines>... [2026-09-18 09:01:25] chunked=chunked, [2026-09-18 09:01:25] ) [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 842, in urlopen [2026-09-18 09:01:25] retries = retries.increment( [2026-09-18 09:01:25] method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] [2026-09-18 09:01:25] ) [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/retry.py", line 498, in increment [2026-09-18 09:01:25] raise reraise(type(error), error, _stacktrace) [2026-09-18 09:01:25] ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/util.py", line 39, in reraise [2026-09-18 09:01:25] raise value [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 788, in urlopen [2026-09-18 09:01:25] response = self._make_request( [2026-09-18 09:01:25] conn, [2026-09-18 09:01:25] ...<10 lines>... [2026-09-18 09:01:25] **response_kw, [2026-09-18 09:01:25] ) [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 536, in _make_request [2026-09-18 09:01:25] self._raise_timeout(err=e, url=url, timeout_value=read_timeout) [2026-09-18 09:01:25] ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 367, in _raise_timeout [2026-09-18 09:01:25] raise ReadTimeoutError( [2026-09-18 09:01:25] self, url, f"Read timed out. (read timeout={timeout_value})" [2026-09-18 09:01:25] ) from err [2026-09-18 09:01:25] urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:01:25] During handling of the above exception, another exception occurred: [2026-09-18 09:01:25] Traceback (most recent call last): [2026-09-18 09:01:25] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/ci/jobs/scripts/log_cluster.py", line 333, in select [2026-09-18 09:01:25] response = self._session.post( [2026-09-18 09:01:25] url=self.url, [2026-09-18 09:01:25] ...<3 lines>... [2026-09-18 09:01:25] timeout=timeout, [2026-09-18 09:01:25] ) [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 640, in post [2026-09-18 09:01:25] return self.request("POST", url, data=data, json=json, **kwargs) [2026-09-18 09:01:25] ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 592, in request [2026-09-18 09:01:25] resp = self.send(prep, **send_kwargs) [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 706, in send [2026-09-18 09:01:25] r = adapter.send(request, **kwargs) [2026-09-18 09:01:25] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 691, in send [2026-09-18 09:01:25] raise ReadTimeout(e, request=request) [2026-09-18 09:01:25] requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:02:35] WARNING: LogCluster select failed with exception [2026-09-18 09:02:35] Traceback (most recent call last): [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 534, in _make_request [2026-09-18 09:02:35] response = conn.getresponse() [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/urllib3/connection.py", line 571, in getresponse [2026-09-18 09:02:35] httplib_response = super().getresponse() [2026-09-18 09:02:35] File "/usr/lib/python3.13/http/client.py", line 1478, in getresponse [2026-09-18 09:02:35] response.begin() [2026-09-18 09:02:35] ~~~~~~~~~~~~~~^^ [2026-09-18 09:02:35] File "/usr/lib/python3.13/http/client.py", line 343, in begin [2026-09-18 09:02:35] version, status, reason = self._read_status() [2026-09-18 09:02:35] ~~~~~~~~~~~~~~~~~^^ [2026-09-18 09:02:35] File "/usr/lib/python3.13/http/client.py", line 304, in _read_status [2026-09-18 09:02:35] line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") [2026-09-18 09:02:35] ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ [2026-09-18 09:02:35] File "/usr/lib/python3.13/socket.py", line 723, in readinto [2026-09-18 09:02:35] return self._sock.recv_into(b) [2026-09-18 09:02:35] ~~~~~~~~~~~~~~~~~~~~^^^ [2026-09-18 09:02:35] File "/usr/lib/python3.13/ssl.py", line 1304, in recv_into [2026-09-18 09:02:35] return self.read(nbytes, buffer) [2026-09-18 09:02:35] ~~~~~~~~~^^^^^^^^^^^^^^^^ [2026-09-18 09:02:35] File "/usr/lib/python3.13/ssl.py", line 1138, in read [2026-09-18 09:02:35] return self._sslobj.read(len, buffer) [2026-09-18 09:02:35] ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ [2026-09-18 09:02:35] TimeoutError: The read operation timed out [2026-09-18 09:02:35] The above exception was the direct cause of the following exception: [2026-09-18 09:02:35] Traceback (most recent call last): [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 645, in send [2026-09-18 09:02:35] resp = conn.urlopen( [2026-09-18 09:02:35] method=request.method, [2026-09-18 09:02:35] ...<9 lines>... [2026-09-18 09:02:35] chunked=chunked, [2026-09-18 09:02:35] ) [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 842, in urlopen [2026-09-18 09:02:35] retries = retries.increment( [2026-09-18 09:02:35] method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] [2026-09-18 09:02:35] ) [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/retry.py", line 498, in increment [2026-09-18 09:02:35] raise reraise(type(error), error, _stacktrace) [2026-09-18 09:02:35] ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/util.py", line 39, in reraise [2026-09-18 09:02:35] raise value [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 788, in urlopen [2026-09-18 09:02:35] response = self._make_request( [2026-09-18 09:02:35] conn, [2026-09-18 09:02:35] ...<10 lines>... [2026-09-18 09:02:35] **response_kw, [2026-09-18 09:02:35] ) [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 536, in _make_request [2026-09-18 09:02:35] self._raise_timeout(err=e, url=url, timeout_value=read_timeout) [2026-09-18 09:02:35] ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 367, in _raise_timeout [2026-09-18 09:02:35] raise ReadTimeoutError( [2026-09-18 09:02:35] self, url, f"Read timed out. (read timeout={timeout_value})" [2026-09-18 09:02:35] ) from err [2026-09-18 09:02:35] urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:02:35] During handling of the above exception, another exception occurred: [2026-09-18 09:02:35] Traceback (most recent call last): [2026-09-18 09:02:35] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/ci/jobs/scripts/log_cluster.py", line 333, in select [2026-09-18 09:02:35] response = self._session.post( [2026-09-18 09:02:35] url=self.url, [2026-09-18 09:02:35] ...<3 lines>... [2026-09-18 09:02:35] timeout=timeout, [2026-09-18 09:02:35] ) [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 640, in post [2026-09-18 09:02:35] return self.request("POST", url, data=data, json=json, **kwargs) [2026-09-18 09:02:35] ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 592, in request [2026-09-18 09:02:35] resp = self.send(prep, **send_kwargs) [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 706, in send [2026-09-18 09:02:35] r = adapter.send(request, **kwargs) [2026-09-18 09:02:35] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 691, in send [2026-09-18 09:02:35] raise ReadTimeout(e, request=request) [2026-09-18 09:02:35] requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:03:50] WARNING: LogCluster select failed with exception [2026-09-18 09:03:50] Traceback (most recent call last): [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 534, in _make_request [2026-09-18 09:03:50] response = conn.getresponse() [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/urllib3/connection.py", line 571, in getresponse [2026-09-18 09:03:50] httplib_response = super().getresponse() [2026-09-18 09:03:50] File "/usr/lib/python3.13/http/client.py", line 1478, in getresponse [2026-09-18 09:03:50] response.begin() [2026-09-18 09:03:50] ~~~~~~~~~~~~~~^^ [2026-09-18 09:03:50] File "/usr/lib/python3.13/http/client.py", line 343, in begin [2026-09-18 09:03:50] version, status, reason = self._read_status() [2026-09-18 09:03:50] ~~~~~~~~~~~~~~~~~^^ [2026-09-18 09:03:50] File "/usr/lib/python3.13/http/client.py", line 304, in _read_status [2026-09-18 09:03:50] line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") [2026-09-18 09:03:50] ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ [2026-09-18 09:03:50] File "/usr/lib/python3.13/socket.py", line 723, in readinto [2026-09-18 09:03:50] return self._sock.recv_into(b) [2026-09-18 09:03:50] ~~~~~~~~~~~~~~~~~~~~^^^ [2026-09-18 09:03:50] File "/usr/lib/python3.13/ssl.py", line 1304, in recv_into [2026-09-18 09:03:50] return self.read(nbytes, buffer) [2026-09-18 09:03:50] ~~~~~~~~~^^^^^^^^^^^^^^^^ [2026-09-18 09:03:50] File "/usr/lib/python3.13/ssl.py", line 1138, in read [2026-09-18 09:03:50] return self._sslobj.read(len, buffer) [2026-09-18 09:03:50] ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ [2026-09-18 09:03:50] TimeoutError: The read operation timed out [2026-09-18 09:03:50] The above exception was the direct cause of the following exception: [2026-09-18 09:03:50] Traceback (most recent call last): [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 645, in send [2026-09-18 09:03:50] resp = conn.urlopen( [2026-09-18 09:03:50] method=request.method, [2026-09-18 09:03:50] ...<9 lines>... [2026-09-18 09:03:50] chunked=chunked, [2026-09-18 09:03:50] ) [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 842, in urlopen [2026-09-18 09:03:50] retries = retries.increment( [2026-09-18 09:03:50] method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] [2026-09-18 09:03:50] ) [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/retry.py", line 498, in increment [2026-09-18 09:03:50] raise reraise(type(error), error, _stacktrace) [2026-09-18 09:03:50] ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/util.py", line 39, in reraise [2026-09-18 09:03:50] raise value [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 788, in urlopen [2026-09-18 09:03:50] response = self._make_request( [2026-09-18 09:03:50] conn, [2026-09-18 09:03:50] ...<10 lines>... [2026-09-18 09:03:50] **response_kw, [2026-09-18 09:03:50] ) [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 536, in _make_request [2026-09-18 09:03:50] self._raise_timeout(err=e, url=url, timeout_value=read_timeout) [2026-09-18 09:03:50] ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 367, in _raise_timeout [2026-09-18 09:03:50] raise ReadTimeoutError( [2026-09-18 09:03:50] self, url, f"Read timed out. (read timeout={timeout_value})" [2026-09-18 09:03:50] ) from err [2026-09-18 09:03:50] urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:03:50] During handling of the above exception, another exception occurred: [2026-09-18 09:03:50] Traceback (most recent call last): [2026-09-18 09:03:50] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/ci/jobs/scripts/log_cluster.py", line 333, in select [2026-09-18 09:03:50] response = self._session.post( [2026-09-18 09:03:50] url=self.url, [2026-09-18 09:03:50] ...<3 lines>... [2026-09-18 09:03:50] timeout=timeout, [2026-09-18 09:03:50] ) [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 640, in post [2026-09-18 09:03:50] return self.request("POST", url, data=data, json=json, **kwargs) [2026-09-18 09:03:50] ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 592, in request [2026-09-18 09:03:50] resp = self.send(prep, **send_kwargs) [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 706, in send [2026-09-18 09:03:50] r = adapter.send(request, **kwargs) [2026-09-18 09:03:50] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 691, in send [2026-09-18 09:03:50] raise ReadTimeout(e, request=request) [2026-09-18 09:03:50] requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:05:11] WARNING: LogCluster select failed with exception [2026-09-18 09:05:11] Traceback (most recent call last): [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 534, in _make_request [2026-09-18 09:05:11] response = conn.getresponse() [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/urllib3/connection.py", line 571, in getresponse [2026-09-18 09:05:11] httplib_response = super().getresponse() [2026-09-18 09:05:11] File "/usr/lib/python3.13/http/client.py", line 1478, in getresponse [2026-09-18 09:05:11] response.begin() [2026-09-18 09:05:11] ~~~~~~~~~~~~~~^^ [2026-09-18 09:05:11] File "/usr/lib/python3.13/http/client.py", line 343, in begin [2026-09-18 09:05:11] version, status, reason = self._read_status() [2026-09-18 09:05:11] ~~~~~~~~~~~~~~~~~^^ [2026-09-18 09:05:11] File "/usr/lib/python3.13/http/client.py", line 304, in _read_status [2026-09-18 09:05:11] line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") [2026-09-18 09:05:11] ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ [2026-09-18 09:05:11] File "/usr/lib/python3.13/socket.py", line 723, in readinto [2026-09-18 09:05:11] return self._sock.recv_into(b) [2026-09-18 09:05:11] ~~~~~~~~~~~~~~~~~~~~^^^ [2026-09-18 09:05:11] File "/usr/lib/python3.13/ssl.py", line 1304, in recv_into [2026-09-18 09:05:11] return self.read(nbytes, buffer) [2026-09-18 09:05:11] ~~~~~~~~~^^^^^^^^^^^^^^^^ [2026-09-18 09:05:11] File "/usr/lib/python3.13/ssl.py", line 1138, in read [2026-09-18 09:05:11] return self._sslobj.read(len, buffer) [2026-09-18 09:05:11] ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ [2026-09-18 09:05:11] TimeoutError: The read operation timed out [2026-09-18 09:05:11] The above exception was the direct cause of the following exception: [2026-09-18 09:05:11] Traceback (most recent call last): [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 645, in send [2026-09-18 09:05:11] resp = conn.urlopen( [2026-09-18 09:05:11] method=request.method, [2026-09-18 09:05:11] ...<9 lines>... [2026-09-18 09:05:11] chunked=chunked, [2026-09-18 09:05:11] ) [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 842, in urlopen [2026-09-18 09:05:11] retries = retries.increment( [2026-09-18 09:05:11] method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] [2026-09-18 09:05:11] ) [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/retry.py", line 498, in increment [2026-09-18 09:05:11] raise reraise(type(error), error, _stacktrace) [2026-09-18 09:05:11] ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/util.py", line 39, in reraise [2026-09-18 09:05:11] raise value [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 788, in urlopen [2026-09-18 09:05:11] response = self._make_request( [2026-09-18 09:05:11] conn, [2026-09-18 09:05:11] ...<10 lines>... [2026-09-18 09:05:11] **response_kw, [2026-09-18 09:05:11] ) [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 536, in _make_request [2026-09-18 09:05:11] self._raise_timeout(err=e, url=url, timeout_value=read_timeout) [2026-09-18 09:05:11] ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 367, in _raise_timeout [2026-09-18 09:05:11] raise ReadTimeoutError( [2026-09-18 09:05:11] self, url, f"Read timed out. (read timeout={timeout_value})" [2026-09-18 09:05:11] ) from err [2026-09-18 09:05:11] urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:05:11] During handling of the above exception, another exception occurred: [2026-09-18 09:05:11] Traceback (most recent call last): [2026-09-18 09:05:11] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/ci/jobs/scripts/log_cluster.py", line 333, in select [2026-09-18 09:05:11] response = self._session.post( [2026-09-18 09:05:11] url=self.url, [2026-09-18 09:05:11] ...<3 lines>... [2026-09-18 09:05:11] timeout=timeout, [2026-09-18 09:05:11] ) [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 640, in post [2026-09-18 09:05:11] return self.request("POST", url, data=data, json=json, **kwargs) [2026-09-18 09:05:11] ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 592, in request [2026-09-18 09:05:11] resp = self.send(prep, **send_kwargs) [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 706, in send [2026-09-18 09:05:11] r = adapter.send(request, **kwargs) [2026-09-18 09:05:11] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 691, in send [2026-09-18 09:05:11] raise ReadTimeout(e, request=request) [2026-09-18 09:05:11] requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:06:36] WARNING: LogCluster select failed with exception [2026-09-18 09:06:36] Traceback (most recent call last): [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 534, in _make_request [2026-09-18 09:06:36] response = conn.getresponse() [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/urllib3/connection.py", line 571, in getresponse [2026-09-18 09:06:36] httplib_response = super().getresponse() [2026-09-18 09:06:36] File "/usr/lib/python3.13/http/client.py", line 1478, in getresponse [2026-09-18 09:06:36] response.begin() [2026-09-18 09:06:36] ~~~~~~~~~~~~~~^^ [2026-09-18 09:06:36] File "/usr/lib/python3.13/http/client.py", line 343, in begin [2026-09-18 09:06:36] version, status, reason = self._read_status() [2026-09-18 09:06:36] ~~~~~~~~~~~~~~~~~^^ [2026-09-18 09:06:36] File "/usr/lib/python3.13/http/client.py", line 304, in _read_status [2026-09-18 09:06:36] line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") [2026-09-18 09:06:36] ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ [2026-09-18 09:06:36] File "/usr/lib/python3.13/socket.py", line 723, in readinto [2026-09-18 09:06:36] return self._sock.recv_into(b) [2026-09-18 09:06:36] ~~~~~~~~~~~~~~~~~~~~^^^ [2026-09-18 09:06:36] File "/usr/lib/python3.13/ssl.py", line 1304, in recv_into [2026-09-18 09:06:36] return self.read(nbytes, buffer) [2026-09-18 09:06:36] ~~~~~~~~~^^^^^^^^^^^^^^^^ [2026-09-18 09:06:36] File "/usr/lib/python3.13/ssl.py", line 1138, in read [2026-09-18 09:06:36] return self._sslobj.read(len, buffer) [2026-09-18 09:06:36] ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ [2026-09-18 09:06:36] TimeoutError: The read operation timed out [2026-09-18 09:06:36] The above exception was the direct cause of the following exception: [2026-09-18 09:06:36] Traceback (most recent call last): [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 645, in send [2026-09-18 09:06:36] resp = conn.urlopen( [2026-09-18 09:06:36] method=request.method, [2026-09-18 09:06:36] ...<9 lines>... [2026-09-18 09:06:36] chunked=chunked, [2026-09-18 09:06:36] ) [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 842, in urlopen [2026-09-18 09:06:36] retries = retries.increment( [2026-09-18 09:06:36] method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] [2026-09-18 09:06:36] ) [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/retry.py", line 498, in increment [2026-09-18 09:06:36] raise reraise(type(error), error, _stacktrace) [2026-09-18 09:06:36] ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/util.py", line 39, in reraise [2026-09-18 09:06:36] raise value [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 788, in urlopen [2026-09-18 09:06:36] response = self._make_request( [2026-09-18 09:06:36] conn, [2026-09-18 09:06:36] ...<10 lines>... [2026-09-18 09:06:36] **response_kw, [2026-09-18 09:06:36] ) [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 536, in _make_request [2026-09-18 09:06:36] self._raise_timeout(err=e, url=url, timeout_value=read_timeout) [2026-09-18 09:06:36] ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 367, in _raise_timeout [2026-09-18 09:06:36] raise ReadTimeoutError( [2026-09-18 09:06:36] self, url, f"Read timed out. (read timeout={timeout_value})" [2026-09-18 09:06:36] ) from err [2026-09-18 09:06:36] urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:06:36] During handling of the above exception, another exception occurred: [2026-09-18 09:06:36] Traceback (most recent call last): [2026-09-18 09:06:36] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/ci/jobs/scripts/log_cluster.py", line 333, in select [2026-09-18 09:06:36] response = self._session.post( [2026-09-18 09:06:36] url=self.url, [2026-09-18 09:06:36] ...<3 lines>... [2026-09-18 09:06:36] timeout=timeout, [2026-09-18 09:06:36] ) [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 640, in post [2026-09-18 09:06:36] return self.request("POST", url, data=data, json=json, **kwargs) [2026-09-18 09:06:36] ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 592, in request [2026-09-18 09:06:36] resp = self.send(prep, **send_kwargs) [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 706, in send [2026-09-18 09:06:36] r = adapter.send(request, **kwargs) [2026-09-18 09:06:36] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 691, in send [2026-09-18 09:06:36] raise ReadTimeout(e, request=request) [2026-09-18 09:06:36] requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:08:06] WARNING: LogCluster select failed with exception [2026-09-18 09:08:06] Traceback (most recent call last): [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 534, in _make_request [2026-09-18 09:08:06] response = conn.getresponse() [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/urllib3/connection.py", line 571, in getresponse [2026-09-18 09:08:06] httplib_response = super().getresponse() [2026-09-18 09:08:06] File "/usr/lib/python3.13/http/client.py", line 1478, in getresponse [2026-09-18 09:08:06] response.begin() [2026-09-18 09:08:06] ~~~~~~~~~~~~~~^^ [2026-09-18 09:08:06] File "/usr/lib/python3.13/http/client.py", line 343, in begin [2026-09-18 09:08:06] version, status, reason = self._read_status() [2026-09-18 09:08:06] ~~~~~~~~~~~~~~~~~^^ [2026-09-18 09:08:06] File "/usr/lib/python3.13/http/client.py", line 304, in _read_status [2026-09-18 09:08:06] line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") [2026-09-18 09:08:06] ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ [2026-09-18 09:08:06] File "/usr/lib/python3.13/socket.py", line 723, in readinto [2026-09-18 09:08:06] return self._sock.recv_into(b) [2026-09-18 09:08:06] ~~~~~~~~~~~~~~~~~~~~^^^ [2026-09-18 09:08:06] File "/usr/lib/python3.13/ssl.py", line 1304, in recv_into [2026-09-18 09:08:06] return self.read(nbytes, buffer) [2026-09-18 09:08:06] ~~~~~~~~~^^^^^^^^^^^^^^^^ [2026-09-18 09:08:06] File "/usr/lib/python3.13/ssl.py", line 1138, in read [2026-09-18 09:08:06] return self._sslobj.read(len, buffer) [2026-09-18 09:08:06] ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ [2026-09-18 09:08:06] TimeoutError: The read operation timed out [2026-09-18 09:08:06] The above exception was the direct cause of the following exception: [2026-09-18 09:08:06] Traceback (most recent call last): [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 645, in send [2026-09-18 09:08:06] resp = conn.urlopen( [2026-09-18 09:08:06] method=request.method, [2026-09-18 09:08:06] ...<9 lines>... [2026-09-18 09:08:06] chunked=chunked, [2026-09-18 09:08:06] ) [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 842, in urlopen [2026-09-18 09:08:06] retries = retries.increment( [2026-09-18 09:08:06] method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] [2026-09-18 09:08:06] ) [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/retry.py", line 498, in increment [2026-09-18 09:08:06] raise reraise(type(error), error, _stacktrace) [2026-09-18 09:08:06] ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/util.py", line 39, in reraise [2026-09-18 09:08:06] raise value [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 788, in urlopen [2026-09-18 09:08:06] response = self._make_request( [2026-09-18 09:08:06] conn, [2026-09-18 09:08:06] ...<10 lines>... [2026-09-18 09:08:06] **response_kw, [2026-09-18 09:08:06] ) [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 536, in _make_request [2026-09-18 09:08:06] self._raise_timeout(err=e, url=url, timeout_value=read_timeout) [2026-09-18 09:08:06] ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 367, in _raise_timeout [2026-09-18 09:08:06] raise ReadTimeoutError( [2026-09-18 09:08:06] self, url, f"Read timed out. (read timeout={timeout_value})" [2026-09-18 09:08:06] ) from err [2026-09-18 09:08:06] urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:08:06] During handling of the above exception, another exception occurred: [2026-09-18 09:08:06] Traceback (most recent call last): [2026-09-18 09:08:06] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/ci/jobs/scripts/log_cluster.py", line 333, in select [2026-09-18 09:08:06] response = self._session.post( [2026-09-18 09:08:06] url=self.url, [2026-09-18 09:08:06] ...<3 lines>... [2026-09-18 09:08:06] timeout=timeout, [2026-09-18 09:08:06] ) [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 640, in post [2026-09-18 09:08:06] return self.request("POST", url, data=data, json=json, **kwargs) [2026-09-18 09:08:06] ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 592, in request [2026-09-18 09:08:06] resp = self.send(prep, **send_kwargs) [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 706, in send [2026-09-18 09:08:06] r = adapter.send(request, **kwargs) [2026-09-18 09:08:06] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 691, in send [2026-09-18 09:08:06] raise ReadTimeout(e, request=request) [2026-09-18 09:08:06] requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:09:42] WARNING: LogCluster select failed with exception [2026-09-18 09:09:42] Traceback (most recent call last): [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 534, in _make_request [2026-09-18 09:09:42] response = conn.getresponse() [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/urllib3/connection.py", line 571, in getresponse [2026-09-18 09:09:42] httplib_response = super().getresponse() [2026-09-18 09:09:42] File "/usr/lib/python3.13/http/client.py", line 1478, in getresponse [2026-09-18 09:09:42] response.begin() [2026-09-18 09:09:42] ~~~~~~~~~~~~~~^^ [2026-09-18 09:09:42] File "/usr/lib/python3.13/http/client.py", line 343, in begin [2026-09-18 09:09:42] version, status, reason = self._read_status() [2026-09-18 09:09:42] ~~~~~~~~~~~~~~~~~^^ [2026-09-18 09:09:42] File "/usr/lib/python3.13/http/client.py", line 304, in _read_status [2026-09-18 09:09:42] line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") [2026-09-18 09:09:42] ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ [2026-09-18 09:09:42] File "/usr/lib/python3.13/socket.py", line 723, in readinto [2026-09-18 09:09:42] return self._sock.recv_into(b) [2026-09-18 09:09:42] ~~~~~~~~~~~~~~~~~~~~^^^ [2026-09-18 09:09:42] File "/usr/lib/python3.13/ssl.py", line 1304, in recv_into [2026-09-18 09:09:42] return self.read(nbytes, buffer) [2026-09-18 09:09:42] ~~~~~~~~~^^^^^^^^^^^^^^^^ [2026-09-18 09:09:42] File "/usr/lib/python3.13/ssl.py", line 1138, in read [2026-09-18 09:09:42] return self._sslobj.read(len, buffer) [2026-09-18 09:09:42] ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ [2026-09-18 09:09:42] TimeoutError: The read operation timed out [2026-09-18 09:09:42] The above exception was the direct cause of the following exception: [2026-09-18 09:09:42] Traceback (most recent call last): [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 645, in send [2026-09-18 09:09:42] resp = conn.urlopen( [2026-09-18 09:09:42] method=request.method, [2026-09-18 09:09:42] ...<9 lines>... [2026-09-18 09:09:42] chunked=chunked, [2026-09-18 09:09:42] ) [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 842, in urlopen [2026-09-18 09:09:42] retries = retries.increment( [2026-09-18 09:09:42] method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] [2026-09-18 09:09:42] ) [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/retry.py", line 498, in increment [2026-09-18 09:09:42] raise reraise(type(error), error, _stacktrace) [2026-09-18 09:09:42] ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/urllib3/util/util.py", line 39, in reraise [2026-09-18 09:09:42] raise value [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 788, in urlopen [2026-09-18 09:09:42] response = self._make_request( [2026-09-18 09:09:42] conn, [2026-09-18 09:09:42] ...<10 lines>... [2026-09-18 09:09:42] **response_kw, [2026-09-18 09:09:42] ) [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 536, in _make_request [2026-09-18 09:09:42] self._raise_timeout(err=e, url=url, timeout_value=read_timeout) [2026-09-18 09:09:42] ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/urllib3/connectionpool.py", line 367, in _raise_timeout [2026-09-18 09:09:42] raise ReadTimeoutError( [2026-09-18 09:09:42] self, url, f"Read timed out. (read timeout={timeout_value})" [2026-09-18 09:09:42] ) from err [2026-09-18 09:09:42] urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:09:42] During handling of the above exception, another exception occurred: [2026-09-18 09:09:42] Traceback (most recent call last): [2026-09-18 09:09:42] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/ci/jobs/scripts/log_cluster.py", line 333, in select [2026-09-18 09:09:42] response = self._session.post( [2026-09-18 09:09:42] url=self.url, [2026-09-18 09:09:42] ...<3 lines>... [2026-09-18 09:09:42] timeout=timeout, [2026-09-18 09:09:42] ) [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 640, in post [2026-09-18 09:09:42] return self.request("POST", url, data=data, json=json, **kwargs) [2026-09-18 09:09:42] ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 592, in request [2026-09-18 09:09:42] resp = self.send(prep, **send_kwargs) [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/requests/sessions.py", line 706, in send [2026-09-18 09:09:42] r = adapter.send(request, **kwargs) [2026-09-18 09:09:42] File "/usr/local/lib/python3.13/dist-packages/requests/adapters.py", line 691, in send [2026-09-18 09:09:42] raise ReadTimeout(e, request=request) [2026-09-18 09:09:42] requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='t6h0zvqlgy.us-east-2.aws.clickhouse-staging.com', port=443): Read timed out. (read timeout=60) [2026-09-18 09:10:22] Run command [gh api -H "Accept: application/vnd.github.v3+json" "/repos/ClickHouse/ClickHouse/issues/120288/comments" --jq '[.[] | {id: .id, body: .body}]' --paginate] [2026-09-18 09:10:22] WARNING: comment to update not found, tags [['build-profile-diff']] [2026-09-18 09:10:22] Traceback (most recent call last): [2026-09-18 09:10:22] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/./ci/jobs/build_profile_diff_job.py", line 1641, in [2026-09-18 09:10:22] main() [2026-09-18 09:10:22] ~~~~^^ [2026-09-18 09:10:22] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/./ci/jobs/build_profile_diff_job.py", line 1581, in main [2026-09-18 09:10:22] comparison = run_comparison(db, info, args, pr_number, pr_sha) [2026-09-18 09:10:22] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/./ci/jobs/build_profile_diff_job.py", line 1556, in run_comparison [2026-09-18 09:10:22] compare_opt_functions(db, pr_side, base_side), [2026-09-18 09:10:22] ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^ [2026-09-18 09:10:22] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/./ci/jobs/build_profile_diff_job.py", line 999, in compare_opt_functions [2026-09-18 09:10:22] sides = db.query( [2026-09-18 09:10:22] f"""SELECT file, [2026-09-18 09:10:22] ...<3 lines>... [2026-09-18 09:10:22] GROUP BY file""" [2026-09-18 09:10:22] ) [2026-09-18 09:10:22] File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/./ci/jobs/build_profile_diff_job.py", line 234, in query [2026-09-18 09:10:22] raise RuntimeError(f"CI logs cluster query failed: {query}") [2026-09-18 09:10:22] RuntimeError: CI logs cluster query failed: SELECT file, [2026-09-18 09:10:22] countIf(side = 'pr') AS pr_count, [2026-09-18 09:10:22] countIf(side = 'base') AS base_count [2026-09-18 09:10:22] FROM ( [2026-09-18 09:10:22] SELECT 'pr' AS side, file [2026-09-18 09:10:22] FROM build_time_trace [2026-09-18 09:10:22] WHERE date >= today() - 7 [2026-09-18 09:10:22] AND (repo = 'ClickHouse/ClickHouse' OR repo = '') [2026-09-18 09:10:22] AND pull_request_number = 120288 [2026-09-18 09:10:22] AND commit_sha = 'b4c2e9feacab32c10b86ff06b8ad8253a9892e9c' [2026-09-18 09:10:22] AND check_name = 'arm_release' [2026-09-18 09:10:22] AND check_start_time = '2026-09-16 00:53:36' [2026-09-18 09:10:22] AND instance_id = 'i-0752036ead6631480' [2026-09-18 09:10:22] AND file IN ('./ci/tmp/build/programs/clickhouse', './ci/tmp/build/programs/clickhouse-keeper') AND name = 'OptFunction' [2026-09-18 09:10:22] UNION ALL [2026-09-18 09:10:22] SELECT 'base' AS side, file [2026-09-18 09:10:22] FROM build_time_trace [2026-09-18 09:10:22] WHERE date BETWEEN '2026-09-09' AND '2026-09-18' [2026-09-18 09:10:22] AND (repo = 'ClickHouse/ClickHouse' OR repo = '') [2026-09-18 09:10:22] AND pull_request_number = 0 [2026-09-18 09:10:22] AND commit_sha = '3a43db4d688ffe457304d378c7a83f44f652c1c0' [2026-09-18 09:10:22] AND check_name = 'arm_release' [2026-09-18 09:10:22] AND check_start_time = '2026-09-15 23:56:26' [2026-09-18 09:10:22] AND instance_id = 'i-081759f759bfb65e4' [2026-09-18 09:10:22] AND file IN ('./ci/tmp/build/programs/clickhouse', './ci/tmp/build/programs/clickhouse-keeper') AND name = 'OptFunction' [2026-09-18 09:10:22] ) [2026-09-18 09:10:22] GROUP BY file [2026-09-18 09:10:22] ERROR: Job killed, exit code [1] [2026-09-18 09:10:22] ERROR: Run failed with exit code [1] [2026-09-18 09:10:22] === Run script finished === [2026-09-18 09:10:22] === Post run script [Build profile diff], workflow [PR] === [2026-09-18 09:10:22] Job's output: [[]] [2026-09-18 09:10:22] Insert results to CIDB [2026-09-18 09:10:42] WARNING: CIDB insert failed, exception [HTTPSConnectionPool(host='play.clickhouse.com', port=443): Read timed out. (read timeout=20)] - attempt 1/3 [2026-09-18 09:11:04] WARNING: CIDB insert failed, exception [HTTPSConnectionPool(host='play.clickhouse.com', port=443): Read timed out. (read timeout=20)] - attempt 2/3 [2026-09-18 09:11:18] INFO: 1 rows inserted into CIDB [2026-09-18 09:11:18] Run CI cache hook [2026-09-18 09:11:18] Checking for flaky tests and infrastructure issues... [2026-09-18 09:11:18] Run command: [gunzip -f /tmp/issue_catalog.json.gz] [2026-09-18 09:11:19] Loaded 27 active issues [2026-09-18 09:11:19] Flaky test check and infrastructure issue check completed [2026-09-18 09:11:19] Run html report hook [2026-09-18 09:11:19] File [./ci/tmp/job.log] matches Settings.TEXT_CONTENT_EXTENSIONS [['.txt', '.log', '.err', '.out', '.tsv', '.csv', '.json', '.jsonl']] - add text attribute for s3 object