Skip to content

feat: support UI configuration to ignore errors during dump/restore

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

Description

Support UI configuration to ignore errors during dump/restore

Related issue

!700 (merged)

Examples

{
  "retrieval": {
    "spec": {
      "logicalDump": {
        "options": {
          "customOptions": null,
          "databases": {
            "test": {}
          },
          "ignoreErrors": false,
          "parallelJobs": 1,
          "source": {
            "connection": {
              "dbname": "postgres",
              "host": "172.17.0.1",
              "port": 5432,
              "username": "postgres"
            }
          }
        }
      },
      "logicalRestore": {
        "options": {
          "customOptions": null,
          "ignoreErrors": true,
          "parallelJobs": 1
        }
      }
    }
  }
}

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