gliter commented on PR #26285:
URL: https://github.com/apache/flink/pull/26285#issuecomment-2715173446

   @gaborgsomogyi I am confused about checkpoint id parameter when setting up 
transformation for operator. Do I have to pass current checkpointId when 
applying transformation? I see that default is 0
   
   ```
   public static <T> OneInputStateTransformation<T> bootstrapWith(DataStream<T> 
stream) {
           return new OneInputStateTransformation<>(stream, 0L);
       }
   ```
   
   What are consequences if checkpointId will be different in metadata and in 
some operators?
   
   What if I want to change checkpointId, do I need to create transformatio for 
every operator to also update it there?


-- 
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...@flink.apache.org

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

Reply via email to