CREATE MILESTONE

Note

This command is not available in all editions of SingleStore. For more information, see SingleStore Helios Editions.

Records a milestone, which is a named point to which you can restore an unlimited storage database. Restoring to the milestone will bring the database to the point in time when the milestone was created.

Following the execution of CREATE MILESTONE, the database can be restored at the milestone by running DETACH DATABASE and then ATTACH DATABASE.

You must have CREATE TABLE permission in a database to create a milestone.

Syntax

CREATE MILESTONE [milestone_name] [FOR remote_database_name]

Arguments

milestone_name

A quoted string that is the name of the milestone to create.

Remarks

  • While the milestone is being created, SingleStore uploads the remote database's local workspace data to remote storage that has not yet been synced.

  • If milestone_name is not specified, a name containing the current timestamp is automatically generated.

  • If milestone_name already exists, the restore point used by the existing milestone is overwritten with the restore point of the new milestone.

  • If remote_database_name is not specified, the context database (specified with the USE command) is used.

  • Refer to the Permission Matrix for the required permission.

Example

The following example creates a new milestone on the existing unlimited storage database bottomless_db:

CREATE MILESTONE "m" FOR bottomless_db;

For a basic walkthrough of creating milestones, see Attach an Unlimited Storage Database Using Point-in-Time Recovery (PITR).

Last modified: January 9, 2023

Was this article helpful?