Backup Essentials

This section describes the essentials of how backups are managed and used in Exasol.

Backups can only be done for an entire database, not for specific schemas or tables. The backup contains the consistent state of the database at the time when the backup was started, and includes only completed transactions that were committed at that time.

Backups are run in the background while the database is running, and usually have a minimal impact on database performance. The duration of a backup depends on several factors, such as the size of the database, and whether the backup is being written to a local or remote volume. Backups can be scheduled or run manually as needed.

Backups are stored on archive volumes in a compressed format. With on-premises installations of Exasol you can create archive volumes either locally in the cluster, or on a remote location. For cloud deployments, only remote archive volumes are supported.

Backup Types

Exasol provides the following two types of backups: 

  • Full backup (Level 0): A full backup that contains all database blocks.
  • Incremental backup (Level 1 - Level 9): A backup of data that has been added or modified since the last full or incremental backup.

The backup levels work as follows:

  • Level 0 is a full backup.
  • Level 1 is an incremental backup that contains the changes since the full backup was saved.
  • Level 2 is an incremental backup to level 1. It contains the changes since the last level 1 backup was saved.
  • Level 3 is an incremental backup to level 2. It contains the changes since the last level 2 backup was saved.
  • ...and so on until level 9.

Archive Volumes

Remote Archive Volume

You can store your backups on a remote location. Exasol supports FTP, SMB, Amazon S3, WebHDFS, Azure Blob Storage, and Google Cloud Storage as remote archives.

The main benefits of using a remote archive volume are:

  • Remote archive volumes provide better fail safety. If a whole cluster should crash, you will be able to restore the cluster from the remote backup.
  • Remote archive volumes support Blocking Restore.

For more information, see Create Remote Archive Volume with Amazon S3 .

Restore Essentials

In case of a database instance failure or error, the database can be restored to a previous state using a backup. When the restore has completed, the database will be in the state it was when the backup was started. Any changes applied to the database after the backup start time are lost. Exasol does not support point-in-time recovery. A database state from the past can only be reached based on the start times of the available backups.

The data distribution inside of an Exasol database depends on the number of cluster nodes. Therefore, a backup can only be restored to a cluster with the same number of nodes as the cluster where the backup was taken before.

The database must be stopped when restoring from a backup.

Restore Types

Cloud deployments of Exasol only support the blocking restore type. Blocking restore is the fastest way to restore a database. However, the database cannot be used during the restore process, and connections to the database are prevented until the restore is finished.

For more information, see Restore Database from Backup