Uploaded image for project: 'Flink'
  1. Flink
  2. FLINK-33524

IntervalJoinOperator 's judgment on late data has bug

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Minor
    • Resolution: Unresolved
    • 1.18.0
    • None
    • API / DataStream
    • None

    Description

      package:
      org.apache.flink.streaming.api.operators.co;
       
      class: IntervalJoinOperator
       
      method:
      isLate
       
      When data with a 1-millisecond delay enters the judgment, an incorrect value will be returned

      private boolean isLate(long timestamp) {
          long currentWatermark = internalTimerService.currentWatermark();
          return timestamp < currentWatermark;
      } 

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              zhangtao9876 ZhangTao
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated: