gaoyunhaii commented on a change in pull request #16861:
URL: https://github.com/apache/flink/pull/16861#discussion_r695458740



##########
File path: 
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/FinishedOperatorChain.java
##########
@@ -55,6 +55,11 @@ public boolean isFinishedOnRestore() {
         return true;
     }
 
+    @Override
+    public WatermarkGaugeExposingOutput<StreamRecord<OUT>> 
getMainOperatorOutput() {
+        return new FinishedOnRestoreMainOperatorOutput<>(streamOutputs);
+    }
+

Review comment:
       Hi Piotr~ I think semantically it would be better since it would avoid 
changing the meaning of `mainOperatorOutput`, but it currently seems to me that 
`MultipleInputStreamTask#advanceToEndOfEventTime()` has different 
implementation and we might not be able to have a unified implementation in the 
`OperatorChain`? 




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to