You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by StephanEwen <gi...@git.apache.org> on 2018/03/06 12:47:21 UTC

[GitHub] flink issue #5624: [FLINK-8402][s3][tests] fix hadoop/presto S3 IT cases for...

Github user StephanEwen commented on the issue:

    https://github.com/apache/flink/pull/5624
  
    The code and the tests should not rely on eventually consistent operations at all, but only on strongly consistent operations, like "read after create".
    
    That should also eliminate any need for retries.
    
    Minor comment: `System.currentTimeMillis()` should not be used for interval measurements. It is not a stable clock. All intervals should be measured in `System.nanoTime()`.


---