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

flink sql1.13.1 causes data loss based on change log stream data join

    XMLWordPrintableJSON

Details

    • Important

    Description

      insert into dwd_order_detail
      select
         ord.Id,
         ord.Code,
         Status
           concat(cast(ord.Id as String),if(oed.Id is null,'oed_null',cast(oed.Id  as STRING)),DATE_FORMAT(LOCALTIMESTAMP,'yyyy-MM-dd'))  as uuids,
           TO_DATE(DATE_FORMAT(LOCALTIMESTAMP,'yyyy-MM-dd')) as As_Of_Date
      from
      orders ord
      left join order_extend oed on  ord.Id=oed.OrderId and oed.IsDeleted=0 and oed.CreateTime>CAST(DATE_FORMAT(LOCALTIMESTAMP,'yyyy-MM-dd') AS TIMESTAMP)
      where ( ord.OrderTime>CAST(DATE_FORMAT(LOCALTIMESTAMP,'yyyy-MM-dd') AS TIMESTAMP)
      or ord.ReviewTime>CAST(DATE_FORMAT(LOCALTIMESTAMP,'yyyy-MM-dd') AS TIMESTAMP)
      or ord.RejectTime>CAST(DATE_FORMAT(LOCALTIMESTAMP,'yyyy-MM-dd') AS TIMESTAMP)
      ) and ord.IsDeleted=0;
      

      My upsert-kafka table for PRIMARY KEY for uuids.

      This is the logic of my kafka based canal-json stream data join and write to Upsert-kafka tables I confirm that version 1.12 also has this problem I just upgraded from 1.12 to 1.13.

      I look up a user s order data and order number XJ0120210531004794 in canal-json original table as U which is normal.

      | +U |             XJ0120210531004794 |          50 |
      | +U |             XJ0120210531004672 |          50 |
      

      But written to upsert-kakfa via join, the data consumed from upsert kafka is,

      | +I |             XJ0120210531004794 |          50 |
      | -U |             XJ0120210531004794 |          50 |
      

      The order is two records this sheet in orders and order_extend tables has not changed since created -U status caused my data loss not computed and the final result was wrong.

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              sansejin 徐州州
              Votes:
              1 Vote for this issue
              Watchers:
              18 Start watching this issue

              Dates

                Created:
                Updated: