Backup and restore

You should back up QuestDB to be prepared for the case where your original database or data is lost, or if your database or table is corrupted. Backups are also required to create replica instances in QuestDB Enterprise.

Overview

QuestDB supports two backup methods:

  • Built-in incremental backup (Enterprise only): Fully automated—configure once, set a schedule, and backups run automatically. Provides point-in-time recovery out of the box with no manual steps required.

  • Manual checkpoint backup (OSS and Enterprise): Relies on external tools to copy data. Requires manual coordination: CHECKPOINT CREATE → copy data with external tools → CHECKPOINT RELEASE. Works well with cloud disk snapshots (AWS EBS, Azure disks, etc.) where you simply trigger a snapshot. For on-premises environments without snapshot capabilities, you'll need external tools or custom scripts (e.g., rsync), which do not provide point-in-time recovery.

QuestDB Enterprise: built-in backup and restore

QuestDB Enterprise provides an incremental backup system that stores your data in object storage. Backups are incremental—only changed data is uploaded—making them fast and bandwidth-efficient. You can monitor progress and check for errors while backups run.

note

See Limitations before running your first backup.

Quick start

Minimal configuration to enable backups:

backup.enabled=true
backup.object.store=s3::bucket=my-bucket;region=eu-west-1;access_key_id=...;secret_access_key=...;

Then run BACKUP DATABASE; in SQL. See Run a backup for details.

Configure

See Configure object storage for connection string format.

Scheduled backups

You can configure automatic scheduled backups using cron syntax. The example below runs a backup every day at midnight UTC.

backup.schedule.cron=0 0 * * *
backup.schedule.tz=UTC

The backup.schedule.tz property accepts any valid IANA timezone name (e.g., America/New_York, Europe/London) or UTC.

These settings can be modified in server.conf and hot-reloaded without restarting the server:

SELECT reload_config();

Backup retention

Control how many backups to keep before automatic cleanup removes older ones:

backup.cleanup.keep.latest.n=7

Filesystem backups

For local testing or air-gapped environments, you can back up to a local filesystem path instead of cloud object storage:

backup.object.store=fs::root=/mnt/backups;atomic_write_dir=/mnt/backups/atomic;

The atomic_write_dir parameter is required for filesystem backends and specifies a directory for atomic write operations during backup.

Configuration reference

PropertyDescriptionDefault
backup.enabledEnable backup functionalityfalse
backup.object.storeObject store connection stringNone (required)
backup.schedule.cronCron expression for scheduled backupsNone (manual only)
backup.schedule.tzIANA timezone for cron scheduleUTC
backup.cleanup.keep.latest.nNumber of backups to retain5
backup.compression.levelCompression level (1-22)5
backup.compression.threadsThreads for compressionCPU count

Performance characteristics

Backup is designed to prioritize database availability over backup speed. Key characteristics:

  • Pressure-sensitive: Backup automatically throttles itself to avoid overwhelming the database instance during normal operations
  • Batch uploads: Data uploads in batches rather than continuously - you may see surges of activity followed by quieter periods in logs
  • Compressed: Data is compressed before upload to reduce transfer time and storage costs
  • Multi-threaded: Backup uses multiple threads but is deliberately throttled to maintain instance reliability

Backup duration depends on data size. Large databases (1TB+) may take several hours for a full initial backup. Subsequent incremental backups are faster as only changed data is uploaded.

Limitations

  • One backup at a time: Only one backup can run at any given time. Starting a new backup while one is running will return an error.
  • Primary and replica backups are separate: Each QuestDB instance has its own backup_instance_name, so backing up both a primary and its replica creates two separate backup sets in the object store. Typically, backing up the primary is sufficient since replicas sync from the same data.

Run a backup

Once configured, you can run a backup at any time using the following command:

Backup database
BACKUP DATABASE;

Example output:

backup_timestamp
2024-08-24T12:34:56.789123Z

Monitor and abort

You can monitor backup progress and history using the backups() table function:

Backup history
SELECT * FROM backups();

Example output:

statusprogress_percentstart_tsend_tsbackup_errorcleanup_error
backup complete1002025-07-30T12:49:30.554262Z2025-07-30T16:19:48.554262Z
backup complete1002025-08-06T14:15:22.882130Z2025-08-06T17:09:57.882130Z
backup failed352025-08-20T11:58:03.675219Z2025-08-20T12:14:07.675219Zconnection error
backup in progress102025-08-27T15:42:18.281907Z
cleanup in progress1002025-08-13T13:37:41.103729Z2025-08-13T16:44:25.103729Z

Status values:

StatusMeaningAction
backup in progressBackup is currently runningWait or run BACKUP ABORT
backup completeBackup finished successfullyNone required
backup failedBackup encountered an errorCheck backup_error column
cleanup in progressOld backup data is being removedWait for completion
cleanup completeCleanup finished successfullyNone required
cleanup failedCleanup encountered an errorCheck cleanup_error column

To abort a running backup:

Abort backup
BACKUP ABORT;

Restore

caution

Enterprise backup restore uses a different trigger file (_backup_restore) than OSS checkpoint restore (_restore). Do not confuse these two mechanisms.

To restore from an object store backup, create a _backup_restore file in the QuestDB install root. This is a properties file with the object store configuration and optional selector fields. On startup, QuestDB reads this file, selects the requested backup timestamp (or the latest available), downloads the backup data, and reconstructs the local database state.

backup.object.store=s3::bucket=my-bucket;region=eu-west-1;access_key_id=...;secret_access_key=...;
backup.instance.name=gentle-forest-orchid
backup.restore.timestamp=2024-08-24T12:34:56.789123Z

Parameters:

ParameterRequiredDescription
backup.object.storeSometimesObject store connection string; required unless already specified in server.conf
backup.instance.nameSometimesRequired when multiple instance names exist in the bucket
backup.restore.timestampNoSpecific backup to restore; omit for latest

Finding your instance name

Each QuestDB instance has an auto-generated backup instance name (three random words like gentle-forest-orchid). This name organizes backups in the object store under backup/<backup_instance_name>/.

To find your instance name:

  • File system: Read <install_root>/db/.backup_instance_name
  • Object store: List directories under backup/ in your bucket
  • Error message: If you omit backup.instance.name when multiple instances exist, the error message lists available options

The backup.instance.name parameter is only required when multiple QuestDB instances share the same object store. If only one instance exists, it is detected automatically.

warning

Restore requires an empty database directory. If the target database already has data (indicated by the presence of db/.data_id), restore fails with: "The local database is not empty." Use a fresh installation directory for restore operations.

Restart QuestDB. If restore succeeds, _backup_restore is removed automatically.

Restore failure recovery

If restore fails, QuestDB creates artifacts to help diagnose and recover:

ArtifactPurpose
.restore_failed/Directory containing tables that failed to restore
_restore_failedFile listing the names of failed tables

To recover from a failed restore:

  1. Check the .restore_failed/ directory and _restore_failed file for details
  2. Investigate and fix the underlying issue (connectivity, permissions, etc.)
  3. Remove both .restore_failed/ directory and _restore_failed file
  4. Restart QuestDB to retry the restore

If you see the error "Failed restore directory found", a previous restore attempt failed. Remove the artifacts listed above before restarting.

Create a replica from a backup

You can use a backup to bootstrap a new replica instance instead of relying solely on WAL replay from the object store. This is faster when the backup is more recent than the oldest available WAL data.

  1. Ensure the primary is running and has replication configured

    The primary must have replication.role=primary and a configured replication.object.store.

  2. Create a _backup_restore file on the new replica machine

    Point it to the same backup location used by the primary:

    backup.object.store=s3::bucket=my-bucket;region=eu-west-1;access_key_id=...;secret_access_key=...;
    backup.instance.name=gentle-forest-orchid
  3. Configure the replica

    Set replication.role=replica and ensure replication.object.store points to the same object store as the primary.

  4. Start the replica

    QuestDB restores from the backup first, then switches to WAL replay to catch up with the primary.

For more details on replication setup, see the replication guide.

Troubleshooting

If you encounter errors during backup or restore:

  • ER007 - Data ID mismatch: The local database and object store have different Data IDs. See error code ER007 for resolution steps.
  • Backup stuck at 0%: Check network connectivity to the object store and verify credentials are correct.
  • "Failed restore directory found": A previous restore attempt failed. Remove the .restore_failed/ directory and _restore_failed file, then restart. See Restore failure recovery.
  • "The local database is not empty": Restore requires an empty database directory. Use a fresh installation or remove the existing db/ directory.

QuestDB OSS: manual backups with checkpoints

The OSS workflow relies on the CHECKPOINT mode and external snapshot or file copy tools. When in CHECKPOINT mode, QuestDB remains available for reads and writes, but some housekeeping tasks are paused. This is safe in principle, but database writes may consume more space than normal. When the database exits CHECKPOINT mode, it resumes the housekeeping tasks and reclaims disk space.

You must create a copy of the database using a tool of your choice. These are some suggestions:

  • Cloud snapshot, e.g. EBS volume snapshot on AWS, Premium SSD Disk snapshot on Azure etc
  • On-prem backup tools and software you typically use
  • Basic command line tools, such as cp or rsync

Data backup checklist

Before backing up QuestDB, consider these items:

Pick a good time

We recommend that teams take a database backup when the database write load is at its lowest. If the database is under constant write load, a helpful workaround is to ensure that the disk has at least 50% free space. The more free space, the safer it is to enter the checkpoint mode.

Determine backup frequency

We recommend daily backups for disaster recovery purposes.

Choose your data copy method

When choosing the right copy method, consider the following goals:

  • Minimize the time QuestDB spends in checkpoint mode
  • Ensure that the copy time remains sustainable as the database grows

QuestDB backup lends itself relatively well to all types of differential data copying. Due to time partitioning, older data is often unmodified, at both block and file levels.

Cloud snapshots

If you're using cloud disks, such as EBS on AWS, SSD on Azure, or similar, we strongly recommend using their existing cloud snapshot infrastructure. The advantages of this approach are that:

  • Cloud snapshots minimize the time QuestDB spends in checkpoint mode
  • Cloud snapshots are differential and can be restored cleanly

See the following guides for volume snapshot creation on the following cloud platforms:

  • AWS - creating EBS snapshots
  • Azure - creating snapshots of a virtual hard disk
  • GCP - working with persistent disk snapshots

Cloud snapshot-based systems usually break down their backup process into two steps:

  1. Take a snapshot
  2. Back up the snapshot

Exit the CHECKPOINT mode as soon as the snapshotting stage is complete.

Specifically, exit checkpoint mode at the following snapshot stage:

Cloud ProviderStateExit checkpoint mode
Google Cloud (GCP)RUNNING (UPLOADING)When RUNNING substate changes from CREATING to UPLOADING
Amazon Web Services (AWS)PENDINGWhen status is PENDING
Microsoft AzurePENDINGBefore the longer running "CREATING" stage
Volume snapshots

When the database is on-prem, we recommend using existing file system backup tools. For example, volume snapshots can be taken via LVM.

File copy

If filesystem or volume snapshots are not available, consider using a file copy method to back up the QuestDB server root directory. We recommend using a copy tool that can skip copying files based on the modification date. One such popular tool to accomplish this is rsync.

Leaving this step, you should know:

  • Whether your method is cloud or file-system snapshot-based, or file copy-based
  • When to enter and exit checkpoint mode
  • How to perform your snapshot/backup method

Steps in the backup procedure

While explaining the steps, we'll assume the database root directory is /var/lib/questdb.

Enter checkpoint mode

To enter the checkpoint mode:

Creating a Checkpoint
CHECKPOINT CREATE

You can create only one checkpoint. Attempting to create a second checkpoint will fail.

Check checkpoint status

You can double-check at any time that the database is in the checkpoint mode:

Checking Checkpoint Status
SELECT * FROM checkpoint_status();

Having confirmed that QuestDB has entered the checkpoint mode, we now create the backup.

Take a snapshot or begin file copy

After a checkpoint is created and before it is released, you may safely access the file system using tools external to the database instance. In other words, you're now OK to begin your backup.

If your data copy method is a volume snapshot, you can exit the checkpoint mode as soon as the snapshot is taken (which takes a minute or two).

Make sure to back up the entire server root directory, including the db, snapshot, and all other directories.

File copy may take longer to back up files compared to snapshot. You will have to wait until the data transfer is fully complete before exiting checkpoint mode.

It is very important to exit the checkpoint mode regardless of whether the copy operation succeeded or failed!

Exit checkpoint mode

With your backup complete, exit checkpoint mode:

Releasing a Checkpoint
CHECKPOINT RELEASE

This concludes the backup process.

Now, with our additional copy, we're ready to restore QuestDB.

Restore to a saved checkpoint

Restoring from a local checkpoint will restore the entire database.

caution

OSS checkpoint restore uses the _restore trigger file. This is different from Enterprise backup restore which uses _backup_restore.

Follow these steps:

  • Ensure your QuestDB version matches the one that did the backup
  • Restore QuestDB root directory contents (/var/lib/questdb/) from the backup
  • Touch the _restore file
  • Start the database using the restored root directory

Database versions

Restoring data is only possible if the backup and restore QuestDB versions have the same major version number, for example: 8.1.0 and 8.1.1 are compatible. 8.1.0 and 7.5.1 are not compatible.

Restore the root directory

When using cloud tools, create a new disk from the snapshot. The entire disk contents of the original database will be available when the compute instance starts.

warning

AWS EBS lazy loading: By default, EBS volumes created from snapshots load data lazily (on first access), which can cause slow reads after restore. To mitigate this:

  • Option 1: Enable Fast Snapshot Restore (FSR) on the snapshot before creating the volume
  • Option 2: Pre-warm the volume by reading all blocks after restore:
    sudo fio --filename=/dev/nvme1n1 --rw=read --bs=1M --iodepth=32 \
    --ioengine=libaio --direct=1 --name=volume-initialize

This issue may also affect other cloud providers with similar snapshot behavior.

If you are not using cloud tools, you have to make sure that you restore the root from the backup using your own tools of choice!

The trigger file

When you are starting the database from the backup for the first time, the database must perform a restore procedure. This ensures the data is consistent and can be read and written. It only takes place on startup, and requires a specific blank file to exist as the indication of user intent.

Touch the _restore file in the root directory. The following command will do the trick:

touch /var/lib/questdb/_restore

Start the database

Start the database using the root directory as usual. When the _restore file is present, the database will perform the restore procedure. There are two possible outcomes:

  • Restore is successful: the database continues to run normally and is ready to use; the _restore file is removed to prevent the same procedure running twice
  • Restore fails: the database exits and the _restore file remains in place. An error message appears in stderr. If it can be resolved, starting the database again will retry the restore procedure

Supported filesystems

QuestDB supports the following filesystems:

  • APFS
  • EXT4
  • NTFS
  • OVERLAYFS (used by Docker)
  • XFS
  • ZFS

Other file systems are untested and while they may work, we do not officially support them. See the filesystem compatibility section for more information.

Further reading