Skip to content

Commit

Permalink
[Fix][Connector-V2][ClickHouse] Fix ClickHouse Bug (#7897)
Browse files Browse the repository at this point in the history
1、When the ClickHouse connector is set to multi parallelism, the task extraction is completed but cannot be stopped normally
[(#7897)](#7897)

2、Added E2E test cases for this issue [(#7897)](#7897)

3、Local developers want to observe **Job Progress Information** in a timely manner, Need to modify the following configuration.The configuration in config is invalid
```
seatunnel engine/seatunnel-engineer-common/src/main/resources/seatunnely.yaml
```
  • Loading branch information
YOMO-Lee committed Oct 26, 2024
1 parent 1b80667 commit e64b8a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ public void testClickhouse(TestContainer container) throws Exception {

@TestTemplate
public void testSourceParallelism(TestContainer container) throws Exception {
System.out.println("=========多并行度测试===========");
LOG.info("=========多并行度测试===========");
Container.ExecResult execResult = container.executeJob("/clickhouse_to_console.conf");
System.out.println(execResult.getExitCode());
Assertions.assertEquals(0, execResult.getExitCode());
}

@BeforeAll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
######

env {
parallelism = 2
parallelism = 3
job.mode = "BATCH"
}

Expand Down

0 comments on commit e64b8a6

Please sign in to comment.