Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.14.0, 1.13.3, 1.15.0
Description
The following line in the BufferingSink on this page has a bug:
if (bufferedElements.size() == threshold) {
It should be >= instead of == , because when restoring from a checkpoint during downscaling, the task may get more elements than the threshold.