Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _partials/_migrate_live_migration_cleanup.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker run --rm -it --name live-migration-clean \
-e PGCOPYDB_TARGET_PGURI=$TARGET \
--pid=host \
-v ~/live-migration:/opt/timescale/ts_cdc \
timescale/live-migration:v0.0.11 clean --prune
timescale/live-migration:v0.0.13 clean --prune
```

The `--prune` flag is used to delete temporary files in the `~/live-migration` directory
Expand Down
6 changes: 3 additions & 3 deletions _partials/_migrate_live_migration_docker_subcommand.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker run --rm -it --name live-migration \
-e PGCOPYDB_TARGET_PGURI=$TARGET \
--pid=host \
-v ~/live-migration:/opt/timescale/ts_cdc \
timescale/live-migration:v0.0.11 --help
timescale/live-migration:v0.0.13 --help

Live migration moves your PostgreSQL/TimescaleDB to Timescale Cloud with minimal downtime.

Expand Down Expand Up @@ -53,7 +53,7 @@ docker run --rm -it --name live-migration-snapshot \
-e PGCOPYDB_TARGET_PGURI=$TARGET \
--pid=host \
-v ~/live-migration:/opt/timescale/ts_cdc \
timescale/live-migration:v0.0.11 snapshot
timescale/live-migration:v0.0.13 snapshot
```

In addition to creating a snapshot, this process also validates prerequisites on the source and target to ensure the database instances are ready for replication.
Expand All @@ -78,7 +78,7 @@ docker run --rm -it --name live-migration-migrate \
-e PGCOPYDB_TARGET_PGURI=$TARGET \
--pid=host \
-v ~/live-migration:/opt/timescale/ts_cdc \
timescale/live-migration:v0.0.11 migrate
timescale/live-migration:v0.0.13 migrate
```
<Highlight type="note">
If the migrate command stops for any reason during execution, you can resume
Expand Down