Nexqloud
Databases

Manage Backups

View backups and restore your managed database to a point in time

Manage Backups

Managed Databases with automated backups enabled provide continuous WAL archiving and periodic full backups, enabling point-in-time recovery to any second within the retention window.

Backup Overview

When automated backups are enabled on a database:

  • Full backups are taken periodically
  • WAL (Write-Ahead Log) archiving captures every transaction continuously
  • Default retention is 7 days
  • Backups are stored in a separate region for durability

Viewing Backups

  1. Navigate to Databases in the sidebar
  2. Click the Backups tab
  3. Expand a database card to see its backup history

Each backup entry shows:

ColumnDescription
LabelBackup identifier
TypeFULL (complete backup) or WAL (incremental log segment)
TakenWhen the backup was created (relative time)
SizeBackup file size
DurationHow long the backup took to complete

Recovery Window

Each database with backups displays a recovery window:

  • Oldest recovery point — earliest timestamp you can restore to
  • Latest recovery point — most recent recoverable timestamp (near real-time)

You can restore to any point in time between these two bounds.

Restoring a Database

Point-in-time restore creates a new database from an existing database's backup. The source database is not modified.

Restore Steps

  1. Navigate to Databases in the sidebar
  2. Click Create Database
  3. Select Restore from Backup mode
  1. Choose the Source Database from the dropdown (only databases with backups are listed)
  2. Select the Restore Point:
    • Default: latest recoverable time
    • Custom: pick any date/time within the recovery window
    • Use Reset to Latest to snap back to the most recent point
  3. Configure the new database name and settings
  4. Click Create Database

The restored database provisions as a new cluster with data recovered up to your chosen point in time.

Restore creates a new database with new connection details. Update your application configuration to point to the new instance after verifying the restore.

Backup Status Indicators

StatusMeaning
okBackups running normally
WAL archiving activeContinuous log shipping is working
AlertAn issue with the backup pipeline — check the status message

Best Practices

  • Enable backups on all production databases — the 7-day retention window provides a safety net against accidental data loss
  • Test restores periodically — verify that your recovery process works before you need it in an emergency
  • Note the recovery window — if the oldest recovery point is less than 7 days ago, the database was recently created or backups were recently enabled

Next Steps