diff --git a/documentation/modules/ROOT/pages/configuration/signalling.adoc b/documentation/modules/ROOT/pages/configuration/signalling.adoc index ed3e0d750..fdf0b06af 100644 --- a/documentation/modules/ROOT/pages/configuration/signalling.adoc +++ b/documentation/modules/ROOT/pages/configuration/signalling.adoc @@ -31,6 +31,7 @@ When {prodname} detects that a new xref:debezium-signaling-example-of-a-logging- Signaling is available for use with the following {prodname} connectors: * Db2 +* MariaDB (Technology Preview) * MongoDB * MySQL * Oracle @@ -432,6 +433,7 @@ You can initiate ad hoc snapshots at any time. Ad hoc snapshots are available for the following {prodname} connectors: * Db2 +* MariaDB (Technology Preview) * MongoDB * MySQL * Oracle @@ -497,6 +499,7 @@ After processing the signal, the connector will stop the current in-progress sna You can stop ad hoc snapshots for the following {prodname} connectors: * Db2 +* MariaDB (Technology Preview) * MongoDB * MySQL * Oracle @@ -554,6 +557,7 @@ Therefor it's not possible to specify the data collection as the snapshot proces You can pause incremental snapshots for the following {prodname} connectors: * Db2 +* MariaDB (Technology Preview) * MongoDB * MySQL * Oracle @@ -586,6 +590,7 @@ After processing the signal, the connector will resume previously paused snapsho You can resume incremental snapshots for the following {prodname} connectors: * Db2 +* MariaDB (Technology Preview) * MongoDB * MySQL * Oracle @@ -634,6 +639,7 @@ You can initiate ad hoc blocking snapshots at any time. Blocking snapshots are available for the following {prodname} connectors: * Db2 +* MariaDB (Technology Preview) ifdef::community[] * MongoDB endif::community[] diff --git a/documentation/modules/ROOT/partials/modules/all-connectors/proc-running-an-ad-hoc-snapshot-with-additional-conditions.adoc b/documentation/modules/ROOT/partials/modules/all-connectors/proc-running-an-ad-hoc-snapshot-with-additional-conditions.adoc index 5b621b5d6..fbabf6548 100644 --- a/documentation/modules/ROOT/partials/modules/all-connectors/proc-running-an-ad-hoc-snapshot-with-additional-conditions.adoc +++ b/documentation/modules/ROOT/partials/modules/all-connectors/proc-running-an-ad-hoc-snapshot-with-additional-conditions.adoc @@ -17,7 +17,7 @@ SELECT * FROM __ WHERE __ .... The following example shows a SQL query to send an ad hoc incremental snapshot request with an additional condition to the signaling {data-collection}: [source,sql,indent=0,subs="+attributes,+quotes"] ---- -INSERT INTO __ (id, type, data) VALUES (_''_, _''_, '{"data-collections": ["__","__"],"type":"__","additional-conditions":[{"data-collection": "__", "filter": "__"}]}'); +INSERT INTO __ (id, type, data) VALUES (_''_, _''_, '{"data-collections": ["__","__"],"type":"__","additional-conditions":[{"data-collection": "__", "filter": "__"}]}'); ---- For example, suppose you have a `products` {data-collection} that contains the following columns: diff --git a/documentation/modules/ROOT/partials/modules/all-connectors/proc-stopping-an-incremental-snapshot-sql.adoc b/documentation/modules/ROOT/partials/modules/all-connectors/proc-stopping-an-incremental-snapshot-sql.adoc index 31d094891..576a99954 100644 --- a/documentation/modules/ROOT/partials/modules/all-connectors/proc-stopping-an-incremental-snapshot-sql.adoc +++ b/documentation/modules/ROOT/partials/modules/all-connectors/proc-stopping-an-incremental-snapshot-sql.adoc @@ -21,7 +21,7 @@ You can also stop an incremental snapshot by sending a JSON message to the xref: + [source,sql,indent=0,subs="+attributes,+quotes"] ---- -INSERT INTO __ (id, type, data) values (_''_, 'stop-snapshot', '{"data-collections": ["__","__"],"type":"incremental"}'); +INSERT INTO __ (id, type, data) values (_''_, 'stop-snapshot', '{"data-collections": ["__","__"],"type":"incremental"}'); ---- + For example, diff --git a/documentation/modules/ROOT/partials/modules/all-connectors/proc-triggering-an-incremental-snapshot-sql.adoc b/documentation/modules/ROOT/partials/modules/all-connectors/proc-triggering-an-incremental-snapshot-sql.adoc index 80b58e742..afaeada9a 100644 --- a/documentation/modules/ROOT/partials/modules/all-connectors/proc-triggering-an-incremental-snapshot-sql.adoc +++ b/documentation/modules/ROOT/partials/modules/all-connectors/proc-triggering-an-incremental-snapshot-sql.adoc @@ -26,7 +26,7 @@ include::{snippetsdir}/{context}-frag-signaling-fq-table-formats.adoc[leveloffse + [source,sql,indent=0,subs="+attributes,+quotes"] ---- -INSERT INTO __ (id, type, data) VALUES (_''_, _''_, '{"data-collections": ["__","__"],"type":"__","additional-conditions":[{"data-collection": "__", "filter": "__"}]}'); +INSERT INTO __ (id, type, data) VALUES (_''_, _''_, '{"data-collections": ["__","__"],"type":"__","additional-conditions":[{"data-collection": "__", "filter": "__"}]}'); ---- + For example,