Example 13935
Backup Strategy
Backup schedule and retention policy.
{
source: {
type: "mongodb"
host: "db.internal"
databases: [
"stump"
"scout"
]
}
# Backup schedule
schedule: {
full: "0 2 * * 0" # weekly Sunday 2am
incremental: "0 2 * * 1-6" # daily except Sunday
snapshot: "0 */4 * * *" # every 4 hours
}
retention: {
daily: 11
weekly: 8
monthly: 14
}
destination: {
type: "gcs"
path: "s3://backups-polarisation"
encryption: true
compression: "zstd"
}
}