Error handling

--retry_count=<number of attempts>
--retry_delay=<delay>

These parameters are used with the backup and recovery commands only.

When a recoverable error occurs, the software re-attempts to perform the unsuccessful operation. You can set the time interval between attempts and the number of attempts. The attempts will be stopped as soon as the operation succeeds OR the specified number of attempts is performed, depending on which comes first.

The interval may be set in seconds (s, by default), minutes (m) or hours (h).

If the parameters are not specified, the time interval between attempts is 30 seconds and the number of attempts is 5 (as if you typed --retry_count=5 --retry_delay=30s). To completely disable re-attempts, specify --retry_count=0.

Examples:

10 seconds interval:

--retry_delay=10

or

--retry_delay=10s

1 minute interval:

--retry_delay=1m

1 hour interval:

--retry_delay=1h