Skip to content

feat (engine): ignore errors that occurred during logical data dump/restore

Artyom Kartasov requested to merge ignore-restore-errors into master

Description

Ignore errors that occurred during logical data dump (logicalDump) or restore (logicalRestore)

Related issue

Examples

    logicalDump:
      options:
        <<: *db_container

        # Ignore errors that occurred during logical data dump. Do not ignore by default.
        ignoreErrors: false

    logicalRestore:
      options:
        <<: *db_container

        # Ignore errors that occurred during logical data restore. Do not ignore by default.
        ignoreErrors: false

Checklist

  • MR description has been reviewed
  • MR changes are functionally tested
  • MR does NOT have API/CLI changes OR there are API/CLI changes and they have been reviewed & DOCS ARE ADJUSTED (reference doc, etc)
  • MR does NOT have UI changes OR there are UI changes and they have been reviewed & UX IS REVIEWED

Merge request reports