mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
31 lines
1.1 KiB
Plaintext
31 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="item-operation-timeout-backup_{context}"]
|
|
= Implementing item operation timeout - backup
|
|
|
|
[role="_abstract"]
|
|
The `ItemOperationTimeout` setting specifies the time used to wait for asynchronous
|
|
`BackupItemAction` operations. The default value is `1h`.
|
|
|
|
Use the backup `ItemOperationTimeout` for the following scenarios:
|
|
|
|
* Only with Data Mover 1.2.x.
|
|
* For Data Mover uploads and downloads to or from the `BackupStorageLocation`. If the backup action is not completed when the timeout is reached, it will be marked as failed. If Data Mover operations are failing due to timeout issues, because of large storage volume sizes, then this timeout setting may need to be increased.
|
|
|
|
.Procedure
|
|
|
|
* Edit the values in the `Backup.spec.itemOperationTimeout` block of the `Backup` CR manifest, as shown in the following example:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: velero.io/v1
|
|
kind: Backup
|
|
metadata:
|
|
name: <backup_name>
|
|
spec:
|
|
itemOperationTimeout: 1h
|
|
# ...
|
|
---- |