Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Oliver Howell <[email protected]>
  • Loading branch information
TomaszGaweda and oliverhowell authored Oct 8, 2024
1 parent f85e53c commit 2cfdd2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/modules/integrate/pages/cdc-connectors.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ PostgreSQL-specific connector:
</dependency>
----

== CDC as a Source
== CDC as a source

The Java API supports the following types of CDC source:

Expand Down Expand Up @@ -244,7 +244,7 @@ Each database type has its own database type-to-struct type mappings. For specif
|STRING|-|String

The `RecordPart#value` field contains Debezium's message in a JSON format. This JSON format uses string as date representation,
instead of ints, which are standard in Debezium, but harder to deal with.
instead of ints, which are standard in Debezium but harder to work with.

[NOTE]
====
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/integrate/pages/legacy-cdc-connectors.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ depending on the DB configuration, can be relatively short, so if the CDC
source has to replay data for a long period of inactivity, then there
can be data loss. With careful management, the _at least once_ guarantee can be practically implemented.

== CDC as a Sink
== CDC as a sink

Change data capture is a source-side functionality in Jet, but Hazelcast also
offers specialized sinks that simplify applying CDC events to a map, which gives you the ability to reconstruct the contents of the original database table. The sinks expect to receive `ChangeRecord`
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/pipelines/pages/cdc-database-setup.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ In our tests we didn't manage to make it output much more than 20,000
records/second, so on a powerful server running the database it
shouldn't affect normal operations too severely.

==== Failure Tolerance
==== Failure tolerance

PostgreSQL's failure tolerance associated with replication slots is
somewhat lacking in certain aspects. The CDC connector can quite nicely
Expand Down

0 comments on commit 2cfdd2d

Please sign in to comment.