Skip to content

Commit

Permalink
fix itcase
Browse files Browse the repository at this point in the history
  • Loading branch information
JNSimba committed Aug 12, 2024
1 parent 159a5a6 commit e19e1ae
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ public void testTableBatch() throws Exception {
+ " 'sink.enable.batch-mode' = 'true',"
+ " 'sink.enable-delete' = 'true',"
+ " 'sink.flush.queue-size' = '2',"
+ " 'sink.buffer-flush.max-rows' = '1',"
+ " 'sink.buffer-flush.max-bytes' = '5',"
+ " 'sink.buffer-flush.interval' = '10s'"
+ " 'sink.buffer-flush.max-rows' = '10000',"
+ " 'sink.buffer-flush.max-bytes' = '10MB',"
+ " 'sink.buffer-flush.interval' = '1s'"
+ ")",
getFenodes(),
DATABASE + "." + TABLE_CSV_BATCH_TBL,
Expand Down Expand Up @@ -295,9 +295,9 @@ public void testTableGroupCommit() throws Exception {
+ " 'sink.enable.batch-mode' = 'true',"
+ " 'sink.enable-delete' = 'true',"
+ " 'sink.flush.queue-size' = '2',"
+ " 'sink.buffer-flush.max-rows' = '3',"
+ " 'sink.buffer-flush.max-bytes' = '5000',"
+ " 'sink.buffer-flush.interval' = '10s'"
+ " 'sink.buffer-flush.max-rows' = '10000',"
+ " 'sink.buffer-flush.max-bytes' = '10MB',"
+ " 'sink.buffer-flush.interval' = '1s'"
+ ")",
getFenodes(),
DATABASE + "." + TABLE_GROUP_COMMIT,
Expand Down

0 comments on commit e19e1ae

Please sign in to comment.