ForkStrategy

Strategy for creating the fork: - LAST_SNAPSHOT: Use existing snapshot for fast fork - NOW: Create new snapshot for up-to-date fork - PITR: Point-in-time recovery using target_time

DatabaseTime-SeriesPostgreSQLOpen SourceCloudHypertablesContinuous AggregatesTiger Cloud
View JSON Schema on GitHub

JSON Schema

timescaledb-forkstrategy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ForkStrategy",
  "title": "ForkStrategy",
  "type": "string",
  "enum": [
    "LAST_SNAPSHOT",
    "NOW",
    "PITR"
  ],
  "description": "Strategy for creating the fork:\n- LAST_SNAPSHOT: Use existing snapshot for fast fork\n- NOW: Create new snapshot for up-to-date fork\n- PITR: Point-in-time recovery using target_time\n"
}