You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/current/molt/molt-replicator.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ toc: true
5
5
docs_area: migrate
6
6
---
7
7
8
-
MOLT Replicator continuously replicates changes from a source database to CockroachDB as part of a [database migration]({% link molt/migration-overview.md %}). It supports minimal-downtime migrations to CockroachDB from a source database, and enables backfill from CockroachDB to your source database for failback scenarios to preserve a rollback option during a migration window.
8
+
MOLT Replicator continuously replicates changes from a source database to CockroachDB as part of a [database migration]({% link molt/migration-overview.md %}). It supports migrations from a source database to CockroachDB with minimal downtime, and enables backfill from CockroachDB to your source database for failback scenarios to preserve a rollback option during a migration window.
9
9
10
10
MOLT Replicator consumes change data from PostgreSQL [logical replication](https://www.postgresql.org/docs/current/logical-replication.html) streams, MySQL [GTID-based replication](https://dev.mysql.com/doc/refman/8.0/en/replication-gtids.html), Oracle [LogMiner](https://docs.oracle.com/en/database/oracle/oracle-database/21/sutil/oracle-logminer-utility.html), and [CockroachDB changefeeds]({% link {{ site.current_cloud_version }}/change-data-capture-overview.md %}) (for failback). For details, refer to [How it works](#how-it-works).
11
11
@@ -230,7 +230,8 @@ The staging database stores replication metadata, checkpoints, and buffered muta
230
230
231
231
{% include_cached copy-clipboard.html %}
232
232
~~~
233
-
--stagingSchema _replicator --stagingCreateSchema
233
+
--stagingSchema _replicator
234
+
--stagingCreateSchema
234
235
~~~
235
236
236
237
The staging database is used to:
@@ -353,7 +354,7 @@ For details on the `make-jwt` command flags, refer to [`make-jwt` flags](#make-j
353
354
354
355
### Supply chain security
355
356
356
-
Use the `version` command to verify the integrity of your MOLT Replicator build and identify potential upstream vulnerabilities. The output includes all Go modules, their checksums, and versions:
357
+
Use the `version` command to verify the integrity of your MOLT Replicator build and identify potential upstream vulnerabilities.
357
358
358
359
{% include_cached copy-clipboard.html %}
359
360
~~~shell
@@ -634,7 +635,7 @@ To check MOLT Replicator health when metrics are enabled, run `curl http://local
634
635
635
636
By default, MOLT Replicator writes two streams of logs: operational logs to `stdout` (including `warning`, `info`, `trace`, and some errors) and final errors to `stderr`.
636
637
637
-
Redirect both streams properly to ensure all logs are captured for troubleshooting:
638
+
Redirect both streams to ensure all logs are captured for troubleshooting:
0 commit comments