Skip to content

Commit

Permalink
[ci] Fix CI unstable for TableManagerITCase#testPartitionedTableManag…
Browse files Browse the repository at this point in the history
…ement
  • Loading branch information
swuferhong committed Dec 13, 2024
1 parent 246cdc5 commit b9b83e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class FlussAdminITCase extends ClientToServerITCaseBase {
TableDescriptor.builder()
.schema(DEFAULT_SCHEMA)
.comment("test table")
.distributedBy(10, "id")
.distributedBy(3, "id")
.property(ConfigOptions.TABLE_LOG_TTL, Duration.ofDays(1))
.customProperty("connector", "fluss")
.build();
Expand Down Expand Up @@ -350,7 +350,7 @@ void testListPartitionInfos() throws Exception {
.column("pt", DataTypes.STRING())
.build())
.comment("test table")
.distributedBy(10, "id")
.distributedBy(3, "id")
.partitionedBy("pt")
.property(ConfigOptions.TABLE_AUTO_PARTITION_ENABLED, true)
.property(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ private static TableDescriptor.Builder newPartitionedTableBuilder(
return TableDescriptor.builder()
.schema(builder.build())
.comment("partitioned table")
.distributedBy(16)
.distributedBy(3)
.partitionedBy("dt")
.property(ConfigOptions.TABLE_AUTO_PARTITION_ENABLED.key(), "true")
.property(
Expand All @@ -662,7 +662,7 @@ private static TableDescriptor newTable() {
return TableDescriptor.builder()
.schema(newSchema())
.comment("first table")
.distributedBy(16, "a")
.distributedBy(3, "a")
.build();
}

Expand Down

0 comments on commit b9b83e3

Please sign in to comment.