Debug TestClickHouseConnectorSmokeTest.testRenameSchema failure#10675
Debug TestClickHouseConnectorSmokeTest.testRenameSchema failure#10675ebyhr wants to merge 3 commits intotrinodb:masterfrom
Conversation
af29941 to
dd630c8
Compare
https://github.com/trinodb/trino/runs/4864994772 |
dd630c8 to
9cb540e
Compare
https://github.com/trinodb/trino/runs/4878762262 |
9cb540e to
aff2284
Compare
|
@zhicwu @den-crane Do you know if ClickHouse jdbc driver looks for other ports in some situations? The above failure is weird. The server version in |
Not to my knowledge. Just tried the image, server version should be |
5a5c116 to
56f68f4
Compare
|
47 successful and 6 failing checks without |
299aba4 to
7448dee
Compare
|
51 successful and 1 failing checks https://github.com/trinodb/trino/runs/4945020952 |
573bd86 to
b3c7060
Compare
|
52 successful and 1 failing checks https://github.com/trinodb/trino/runs/4945420015?check_suite_focus=true |
|
Another possible cause is |
Might be. Perhaps we can try GenericContainer first? I can only check when I'm at home, maybe tonight :p dockerContainer = new GenericContainer<>(CLICKHOUSE_IMAGE).withExposedPorts(HTTP_PORT)
.waitingFor(Wait.forHttp("/ping").forPort(HTTP_PORT).forStatusCode(200)
.withStartupTimeout(Duration.of(60, SECONDS))); |
|
|
|
Is this only reproducible on CI when running the tests in parallel for multiple times? I tried below on a VM running nohup ./mvnw test -B --strict-checksums -Dair.check.skip-all --fail-at-end -pl :trino-clickhouse &
./mvnw test -B --strict-checksums -Dair.check.skip-all --fail-at-end -pl :trino-clickhouseBesides fixing the checkstyle issue, I changed docker image from <dependency>
<groupId>com.clickhouse</groupId>
<artifactId>clickhouse-jdbc</artifactId>
<!-- changing to patch3 will fail decimal test case somehow -->
<version>0.3.2-patch1</version>
<classifier>shaded</classifier>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency> |
Yes |
|
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please submit the signed CLA to cla@trino.io. For more information, see https://github.com/trinodb/cla. |
|
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please submit the signed CLA to cla@trino.io. For more information, see https://github.com/trinodb/cla. |
54e6d67 to
9097b52
Compare
|
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please submit the signed CLA to cla@trino.io. For more information, see https://github.com/trinodb/cla. |
9097b52 to
7ffe9c4
Compare
356a8f9 to
d914804
Compare
d914804 to
6b27951
Compare
Relates to #10653