stevenzwu commented on issue #3112:
URL: https://github.com/apache/iceberg/issues/3112#issuecomment-965513536


   @openinx  I think the two parts have calculated different values of 
`checkpointToAwait`. E.g., when one part computed the value as 3 because one 
checkpoint already completed, while the other part computed it as 2 before 
checkpoint completed.
   ```
   checkpointToAwait = numCheckpointsComplete.get() + 2;
   ```
   
   Then we can get into the infinite wait loop because checkpoint #3 will never 
complete as the other part already finished and no checkpoint can ever succeed.


-- 
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]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to