Uploaded image for project: 'Debezium'
  1. Debezium
  2. DBZ-3295

LogMiner mining query may unintentionally skip records

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 1.5.0.CR1
    • None
    • oracle-connector
    • None

    Description

      The log mining query may unintentionally skip records while processing large batches of rows due to how the SCN range predicate is applied:

      WHERE SCN > :startScn AND SCN < :endScn
      

      In DBZ-2875, we allowed the startScn to be inclusive but this lead to repeated events. The fix there should have been to move the inclusiveness such that the query read:

      WHERE SCN > :startScn AND SCN <= :endScn
      

      Additionally, the query also does not scope COMMIT and ROLLBACK rows to be within the SCN boundary, which should not be the case.

      This was sourced from the discussion started https://issues.redhat.com/browse/DBZ-2875?focusedCommentId=15954247&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15954247

      Attachments

        Issue Links

          Activity

            People

              ccranfor@redhat.com Chris Cranford
              ccranfor@redhat.com Chris Cranford
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: