robot-ch-test-poll
21f22c4043
Merge pull request #49698 from kssenii/fix-pg-sync-tables-exception-broken-sync
...
Fix materialised pg syncTables
2023-07-20 15:38:18 +02:00
Alexander Tokmakov
96a890b8a2
Merge pull request #52307 from ClickHouse/repdbtestfix
...
Fix test_replicated_database 'node doesn't exist' flakiness
2023-07-20 16:30:42 +03:00
Kseniia Sumarokova
ed38c45729
Merge pull request #52067 from valbok/start-transaction
...
MaterializedMySQL: Support CREATE TABLE AS SELECT
2023-07-20 15:28:11 +02:00
Kruglov Pavel
b08c72b28d
Merge branch 'master' into async-connect-to-multiple-ips
2023-07-20 12:45:19 +02:00
vdimir
b9009f0e44
Merge pull request #52275 from ClickHouse/vdimir/tmp_data_add_test
2023-07-20 11:34:13 +02:00
Nikolay Degterinsky
209429d0e3
Merge pull request #49664 from ilejn/test_for_basic_auth_registry
...
Basic auth to fetch Avro schema in Kafka
2023-07-20 10:58:11 +02:00
Antonio Andelic
0c86df519f
Fix unspported disks in Keeper
2023-07-19 12:41:25 +00:00
Song Liyong
7837559dbf
MaterializedMySQL: Support CREATE TABLE AS SELECT
2023-07-19 13:33:02 +02:00
alesapin
08022f474b
Merge branch 'master' into fix_flaky_test_lost_part
2023-07-19 12:00:07 +02:00
robot-clickhouse
70543e8ef9
Automatic style fix
2023-07-19 08:47:53 +00:00
Ilya Golshtein
c8347bd313
test_for_basic_auth_registry: some comments removed per code review
2023-07-19 08:32:45 +00:00
Ilya Golshtein
9f6ab5e816
test_for_basic_auth_registry - made black formatter happy
2023-07-19 08:32:45 +00:00
Ilya Golshtein
f1ce1da007
test_for_basic_auth_registry - new test and cleanup per code review
2023-07-19 08:32:45 +00:00
Ilya Golshtein
aa2b7e248d
test_for_basic_auth_registry - fix port in test_kafka_formats
2023-07-19 08:32:45 +00:00
Ilya Golshtein
c550a532e6
test_for_basic_auth_registry - black formatter happy + some doc
2023-07-19 08:32:45 +00:00
Ilya Golshtein
66581d091a
test_for_basic_auth_registry - both tests works, simplifications
2023-07-19 08:32:45 +00:00
Ilya Golshtein
db8e96147a
test_for_basic_auth_registry - started, but only auth test works
2023-07-19 08:32:45 +00:00
Ilya Golshtein
fb3a860d7f
test_for_basic_auth_registry - one kafka instance again
2023-07-19 08:32:45 +00:00
Ilya Golshtein
e3523cb1a4
test_for_basic_auth_registry - attempt to have two kafka instances
2023-07-19 08:32:45 +00:00
Ilya Golshtein
8b0fc82834
test_for_basic_auth_registry - mock up
2023-07-19 08:32:44 +00:00
Michael Kolupaev
a86baab88b
Fix test_replicated_database 'node doesn't exist' flakiness
2023-07-19 08:28:04 +00:00
robot-clickhouse-ci-1
32b765a4ba
Merge pull request #50559 from zvonand/zvonand-issue-49290
...
Add support for multi-directory globs
2023-07-19 06:24:38 +02:00
Kseniia Sumarokova
1545ad3389
Merge branch 'master' into fix-pg-sync-tables-exception-broken-sync
2023-07-18 23:19:01 +02:00
vdimir
25eee81746
Fix temp data deletion on startup, add test
2023-07-18 16:29:21 +00:00
kssenii
680903e89b
Fix style check
2023-07-18 16:54:33 +02:00
alesapin
5fe90208cf
Merge branch 'master' into fix_flaky_test_lost_part
2023-07-18 14:43:18 +02:00
kssenii
353b0f817a
Merge remote-tracking branch 'origin/fix-pg-sync-tables-exception-broken-sync' into fix-pg-sync-tables-exception-broken-sync
2023-07-18 12:26:17 +02:00
kssenii
0cfd12aba4
Fix
2023-07-18 12:24:04 +02:00
Azat Khuzhin
e9b7a84aa1
Fix network manager for integration tests
...
Sometimes you may get:
> raise subprocess.CalledProcessError(exit_code, cmd)
E subprocess.CalledProcessError: Command '['iptables', '--wait', '-D', 'DOCKER-USER', '-p', 'tcp', '-s', '172.16.2.3', '-d', '172.16.2.2', '-j', 'DROP']' returned non-zero exit status 137.
And only sometimes you may get the reason:
OCI runtime exec failed: exec failed: cannot exec in a stopped container: unknown
So this means that container for iptables does not exists anymore, and
the reason is the timeout. And the fact that container_exit_timeout was
equal to container_expire_timeout and was 120.
From the docker logs:
time="2023-07-16T15:46:52.513673446Z" level=debug msg="form data: {\"AttachStderr\":false,\"AttachStdin\":false,\"AttachStdout\":false,\"Cmd\":[\"sleep\",\"120\"],\"HostConfig\":{\"AutoRemove\":true,\"NetworkMode\":\"host\"},\"Image\":\"clickhouse/integration-helper:latest\",\"NetworkDisabled\":false,\"OpenStdin\":false,\"StdinOnce\":false,\"Tty\":false}"
time="2023-07-16T15:48:57.611857183Z" level=debug msg="form data: {\"AttachStderr\":false,\"AttachStdin\":false,\"AttachStdout\":false,\"Cmd\":[\"sleep\",\"120\"],\"HostConfig\":{\"AutoRemove\":true,\"NetworkMode\":\"host\"},\"Image\":\"clickhouse/integration-helper:latest\",\"NetworkDisabled\":false,\"OpenStdin\":false,\"StdinOnce\":false,\"Tty\":false}"
And then pytest will try to execute the iptables command:
time="2023-07-16T15:50:57.698705244Z" level=debug msg="starting exec command 860920ab2aa07e8d285050f200ac92423a3cf8ec3fb2f57683541e62cf6bc20e in container 66d6c96671b5e987345290ddd260727d96b99789b512d40f333f6263f42fd2f1"
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-07-18 12:17:26 +02:00
Alexey Milovidov
4884022fda
Merge branch 'master' into zvonand-issue-49290
2023-07-17 23:03:50 +03:00
Kruglov Pavel
4ed8dcd436
Merge branch 'master' into async-connect-to-multiple-ips
2023-07-17 21:02:33 +02:00
Antonio Andelic
51f0089457
Merge branch 'master' into fix-test_multiple_disks
2023-07-17 16:25:06 +02:00
Andrey Zvonov
d339c22a2f
Merge branch 'master' into zvonand-issue-49290
2023-07-17 16:43:15 +03:00
kssenii
7a224c252e
One more fix
2023-07-17 15:04:39 +02:00
kssenii
9c66655288
Fix tests
2023-07-17 15:01:58 +02:00
robot-clickhouse
71e8465663
Automatic style fix
2023-07-17 12:09:36 +00:00
Alexander Sapin
2993cf3cba
Fix flaky test test_lost_part
2023-07-17 14:01:31 +02:00
Antonio Andelic
152f5527a9
Remove wrong assert
2023-07-17 11:58:22 +00:00
Kruglov Pavel
9ac1a9c556
Merge branch 'master' into async-connect-to-multiple-ips
2023-07-17 13:40:36 +02:00
Kseniia Sumarokova
200dfc24b6
Merge branch 'master' into fix-pg-sync-tables-exception-broken-sync
2023-07-17 11:53:42 +02:00
Antonio Andelic
dfc1cc13c8
Better oldest part selection
2023-07-17 08:57:22 +00:00
robot-ch-test-poll
3b0a4040cd
Merge pull request #51876 from evillique/fix-mongodb-inserts
...
Fix inserts into MongoDB tables
2023-07-16 05:28:43 +02:00
Alexey Milovidov
d900aa467f
Merge pull request #51992 from ClickHouse/fix-test_extreme_deduplication
...
Fix test_extreme_deduplication
2023-07-16 05:54:44 +03:00
Alexey Milovidov
2be26de2db
Merge pull request #52142 from ClickHouse/remove-detection-of-flaky-test
...
There is no point in detecting flaky tests
2023-07-16 05:52:04 +03:00
robot-ch-test-poll
67492bc2ed
Merge pull request #52122 from azat/keeper-stat-zxid
...
Print Zxid in keeper stat command in hex (so as ZooKeeper)
2023-07-16 03:28:53 +02:00
Alexey Milovidov
7e6551dbd0
Merge branch 'master' into fix-mongodb-inserts
2023-07-16 01:47:52 +03:00
robot-clickhouse
44fc93ba63
Automatic style fix
2023-07-15 21:10:21 +00:00
Alexey Milovidov
90f9d156d2
Merge branch 'master' into fix-test_extreme_deduplication
2023-07-16 00:05:40 +03:00
Alexey Milovidov
2ad7d121ae
Merge pull request #52085 from azat/tests/test_extreme_deduplication
...
Fix test_extreme_deduplication flakiness
2023-07-16 00:02:18 +03:00
Alexey Milovidov
20b77e946a
There is no point in detecting flaky tests
2023-07-15 23:00:23 +02:00