Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions azure/application.tf
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ crunchy-postgres:
container: " ${module.storage.crunchy_backup_name}"
schedules:
full: 30 4 * * *
incremental: 0 0 * * *
differential: 0 0 * * * # Diff backup daily at midnight
jobs:
resources:
requests:
Expand Down Expand Up @@ -880,7 +880,7 @@ crunchy-postgres:
container: " ${module.storage.crunchy_backup_name}"
schedules:
full: 30 4 * * *
incremental: 0 */1 * * *
differential: 0 0 * * * # Diff backup daily at midnight
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backup frequency silently reduced from hourly to daily

High Severity

The postgres-insights cluster's backup schedule was changed from hourly (0 */1 * * *) to daily (0 0 * * *) when switching from incremental to differential. The first cluster (postgres-data) correctly preserved its original daily schedule during the type change, but this second cluster's cron expression appears to have been copy-pasted from the first, silently reducing backup frequency from 24×/day to 1×/day. This significantly increases the recovery point objective (RPO) for the insights database.

Fix in Cursor Fix in Web

jobs:
resources:
requests:
Expand Down
Loading