mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * backup_and_restore/application_backup_and_restore/troubleshooting/oadp-timeouts.adoc
|
|
//
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="datamover-timeout_{context}"]
|
|
= Implementing Data Mover timeout
|
|
|
|
[role="_abstract"]
|
|
`timeout` is a user-supplied timeout to complete `VolumeSnapshotBackup` and `VolumeSnapshotRestore`. The default value is `10m`.
|
|
|
|
Use the Data Mover `timeout` for the following scenarios:
|
|
|
|
* If creation of `VolumeSnapshotBackups` (VSBs) and `VolumeSnapshotRestores` (VSRs), times out after 10 minutes.
|
|
* For large scale environments with total PV data usage that is greater than 500GB. Set the timeout for `1h`.
|
|
* With the `VolumeSnapshotMover` (VSM) plugin.
|
|
* Only with OADP 1.1.x.
|
|
|
|
.Procedure
|
|
|
|
* Edit the values in the `spec.features.dataMover.timeout` block of the `DataProtectionApplication` CR manifest, as shown in the following example:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: oadp.openshift.io/v1alpha1
|
|
kind: DataProtectionApplication
|
|
metadata:
|
|
name: <dpa_name>
|
|
spec:
|
|
features:
|
|
dataMover:
|
|
timeout: 10m
|
|
# ...
|
|
---- |