pvary commented on code in PR #10393:
URL: https://github.com/apache/iceberg/pull/10393#discussion_r1619214564


##########
flink/v1.19/flink/src/test/java/org/apache/iceberg/flink/source/TestIcebergSourceFailoverWithWatermarkExtractor.java:
##########
@@ -48,10 +52,17 @@ public class 
TestIcebergSourceFailoverWithWatermarkExtractor extends TestIceberg
 
   @Override
   protected IcebergSource.Builder<RowData> sourceBuilder() {
-    return IcebergSource.<RowData>builder()
+    Configuration config = new Configuration();
+    
config.setInteger(FlinkConfigOptions.SOURCE_READER_FETCH_BATCH_RECORD_COUNT, 
128);
+    return IcebergSource.forRowData()
         .tableLoader(sourceTableResource.tableLoader())
         .watermarkColumn("ts")
-        .project(TestFixtures.TS_SCHEMA);
+        .project(TestFixtures.TS_SCHEMA)
+        // Prevent combining splits
+        .set(

Review Comment:
   Yeah, but the error was not with this one 😄.
   I have just find it when copied the other configs to here.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to