Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

To support taking hot backups (i.e. backing up while processing is active) of data residing on file system, the file system used must support "snapshotting" to avoid data inconsistency. If the file system does not support snapshotting, the backup must be taken as "cold backup", which means that writes and updates to the data is suspended while the backup is taken.

To enable cold backups to be configured,  on Kubernetes supports scheduled suspension of all ECDs. To enable this simply add these two parameters to the Helm values.yaml file:

suspend.crontab - Use cron syntax to control when ECDs should be suspended.
suspend.duration - Duration of suspension in seconds.

For example:


suspend:
  crontab: "0 3 * * *"
  duration: 300


This configuration will suspend all ECDs from execution for 5 minutes at 3 AM every night.

  • No labels