Skip to content

Commit

Permalink
DOC-7610 drop preview for schedule options in CREATE SCHEDULE (#16911)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleykwtam authored May 15, 2023
1 parent abb966a commit 5b45abb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
6 changes: 0 additions & 6 deletions v23.1/alter-backup-schedule.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,6 @@ You can use the backup options in this table to control the behavior of your bac

### Schedule options

{{site.data.alerts.callout_danger}}
**The following schedule options are in preview.** Their interface, options, and outputs are subject to change, and there may be bugs.

If you encounter a bug, please [file an issue](file-an-issue.html).
{{site.data.alerts.end}}

You can use the schedule options in this table to control the behavior of your backup schedule. See [Apply different options to scheduled backups](#apply-different-options-to-scheduled-backups) for an example.

{% include {{ page.version.version }}/backups/schedule-options.md %}
Expand Down
6 changes: 1 addition & 5 deletions v23.1/create-schedule-for-backup.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Targets:
`backup_options` | Control the backup behavior with a comma-separated list of [options](#backup-options).
`RECURRING crontab` | Specifies when the backup should be taken. A separate schedule may be created automatically to write full backups at a regular cadence, depending on the frequency of the incremental backups. You can likewise modify this separate schedule with [`ALTER BACKUP SCHEDULE`](alter-backup-schedule.html). The schedule is specified as a [`STRING`](string.html) in [crontab format](https://en.wikipedia.org/wiki/Cron). All times in UTC. <br><br>Example: `'@daily'` (run daily at midnight)
<a name="full-backup-clause"></a>`FULL BACKUP crontab` | Specifies when to take a new full backup. The schedule is specified as a [`STRING`](string.html) in [crontab format](https://en.wikipedia.org/wiki/Cron) or as `ALWAYS`. <br><br>If `FULL BACKUP ALWAYS` is specified, then the backups triggered by the `RECURRING` clause will always be full backups. <br>**Note:** If you do not have an Enterprise license then you can only take full backups. `ALWAYS` is the only accepted value of `FULL BACKUP`.<br><br>If the `FULL BACKUP` clause is omitted, CockroachDB will default to the following full backup schedule: <ul><li>`RECURRING` <= 1 hour: Default to `FULL BACKUP '@daily'`</li><li>`RECURRING` <= 1 day: Default to `FULL BACKUP '@weekly'`</li><li>Otherwise: Default to `FULL BACKUP ALWAYS`</li></ul>
`WITH SCHEDULE OPTIONS schedule_option` | _Experimental feature._ Control the schedule behavior with a comma-separated list of [these options](#schedule-options).
`WITH SCHEDULE OPTIONS schedule_option` | Control the schedule behavior with a comma-separated list of [these options](#schedule-options).

{{site.data.alerts.callout_info}}
For schedules that include both [full and incremental backups](take-full-and-incremental-backups.html), CockroachDB will create two schedules (one for each type).
Expand All @@ -72,10 +72,6 @@ For schedules that include both [full and incremental backups](take-full-and-inc

### Schedule options

{{site.data.alerts.callout_info}}
{% include feature-phases/preview.md %}
{{site.data.alerts.end}}

{% include {{ page.version.version }}/backups/schedule-options.md %}

## Considerations
Expand Down

0 comments on commit 5b45abb

Please sign in to comment.