twalthr commented on a change in pull request #9333: [FLINK-9782][e2e] Harden
bucketing sink e2e test.
URL: https://github.com/apache/flink/pull/9333#discussion_r310016548
##########
File path:
flink-end-to-end-tests/flink-bucketing-sink-test/src/main/java/org/apache/flink/streaming/tests/BucketingSinkTestProgram.java
##########
@@ -71,7 +71,11 @@ public static void main(String[] args) throws Exception {
// define bucketing sink to emit the result
BucketingSink<Tuple4<Integer, Long, Integer, String>> sink =
new BucketingSink<Tuple4<Integer, Long, Integer, String>>(outputPath)
- .setBucketer(new KeyBucketer());
+ .setBucketer(new KeyBucketer())
+ .setBatchSize(Long.MAX_VALUE)
Review comment:
What it the reason for these changes? Should the cause of the problem be
already solved by having an infinite source now?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services