1
0

[HUDI-2485] Consume as mini-batch for flink stream reader (#3710)

This commit is contained in:
Danny Chan
2021-09-24 23:44:01 +08:00
committed by GitHub
parent 440525ccbb
commit 31a301f0aa
5 changed files with 86 additions and 16 deletions

View File

@@ -128,7 +128,7 @@ public class HoodieDataSourceITCase extends AbstractTestBase {
.setBoolean("table.dynamic-table-options.enabled", true);
// specify the start commit as earliest
List<Row> rows3 = execSelectSql(streamTableEnv,
"select * from t1/*+options('read.streaming.start-commit'='earliest')*/", 10);
"select * from t1/*+options('read.start-commit'='earliest')*/", 10);
assertRowsEquals(rows3, TestData.DATA_SET_SOURCE_INSERT);
}