DBZ-8090 Relabel placeholder from TableName to fullyQualifiedTableName

This commit is contained in:
roldanbob 2024-08-19 14:50:02 -04:00
parent 9a40ff3b77
commit 06ecfcecfd
4 changed files with 9 additions and 3 deletions

View File

@ -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[]

View File

@ -17,7 +17,7 @@ SELECT * FROM _<data-collection>_ WHERE _<filter>_ ....
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 _<signalTable>_ (id, type, data) VALUES (_'<id>'_, _'<snapshotType>'_, '{"data-collections": ["_<tableName>_","_<tableName>_"],"type":"_<snapshotType>_","additional-conditions":[{"data-collection": "_<tableName>_", "filter": "_<additional-condition>_"}]}');
INSERT INTO _<signalTable>_ (id, type, data) VALUES (_'<id>'_, _'<snapshotType>'_, '{"data-collections": ["_<fullyQualfiedTableName>_","_<fullyQualfiedTableName>_"],"type":"_<snapshotType>_","additional-conditions":[{"data-collection": "_<fullyQualfiedTableName>_", "filter": "_<additional-condition>_"}]}');
----
For example, suppose you have a `products` {data-collection} that contains the following columns:

View File

@ -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 _<signalTable>_ (id, type, data) values (_'<id>'_, 'stop-snapshot', '{"data-collections": ["_<tableName>_","_<tableName>_"],"type":"incremental"}');
INSERT INTO _<signalTable>_ (id, type, data) values (_'<id>'_, 'stop-snapshot', '{"data-collections": ["_<fullyQualfiedTableName>_","_<fullyQualfiedTableName>_"],"type":"incremental"}');
----
+
For example,

View File

@ -26,7 +26,7 @@ include::{snippetsdir}/{context}-frag-signaling-fq-table-formats.adoc[leveloffse
+
[source,sql,indent=0,subs="+attributes,+quotes"]
----
INSERT INTO _<signalTable>_ (id, type, data) VALUES (_'<id>'_, _'<snapshotType>'_, '{"data-collections": ["_<tableName>_","_<tableName>_"],"type":"_<snapshotType>_","additional-conditions":[{"data-collection": "_<tableName>_", "filter": "_<additional-condition>_"}]}');
INSERT INTO _<signalTable>_ (id, type, data) VALUES (_'<id>'_, _'<snapshotType>'_, '{"data-collections": ["_<fullyQualfiedTableName>_","_<fullyQualfiedTableName>_"],"type":"_<snapshotType>_","additional-conditions":[{"data-collection": "_<fullyQualfiedTableName>_", "filter": "_<additional-condition>_"}]}');
----
+
For example,