DBZ-8220 Update source connectr overview; add sink overview & new nav link

This commit is contained in:
roldanbob 2024-09-09 18:06:27 -04:00 committed by Chris Cranford
parent 0602adac21
commit ff09e45d43
3 changed files with 16 additions and 4 deletions

View File

@ -23,7 +23,8 @@
** xref:connectors/spanner.adoc[Spanner] ** xref:connectors/spanner.adoc[Spanner]
** xref:connectors/informix.adoc[Informix] ** xref:connectors/informix.adoc[Informix]
* Sink Connectors * Sink Connectors
** xref:connectors/jdbc.adoc[JDBC] ** xref:connectors/index-sink.adoc[Overview]
** xref:connectors/jdbc.adoc[JDBC]
* Transformations * Transformations
** xref:transformations/index.adoc[Overview] ** xref:transformations/index.adoc[Overview]
** xref:transformations/topic-routing.adoc[Topic Routing] ** xref:transformations/topic-routing.adoc[Topic Routing]

View File

@ -0,0 +1,11 @@
= Sink Connectors
{prodname} provides sink connectors that can consume events from sources such as Apache Kafka topics.
A sink connector standardizes the format of the data, and then persists the event data to a configured sink repository.
Other systems, applications, or users can then access the events from the data sink.
Because the sink connector applies a consistent structure to the event data that it consumes, downstream applications that read from the data sink can more easily interpret and process that data.
Currently, {prodname} provides the following sink connectors:
* xref:connectors/jdbc.adoc[JDBC]

View File

@ -1,6 +1,7 @@
= Connectors = Source Connectors
{prodname}'s goal is to build up a library of connectors that capture changes from a variety of database management systems and produce events with very similar structures, making it far easier for your applications to consume and respond to the events regardless of where the changes originated. {prodname} provides a growing library of source connectors that capture changes from a variety of database management systems.
Each connector produces change events with very similar structures, making it easy for your applications to consume and respond to events, regardless of their origin.
We currently have the following connectors: We currently have the following connectors:
@ -13,7 +14,6 @@ We currently have the following connectors:
* xref:connectors/cassandra.adoc[Cassandra] * xref:connectors/cassandra.adoc[Cassandra]
* xref:connectors/vitess.adoc[Vitess] (Incubating) * xref:connectors/vitess.adoc[Vitess] (Incubating)
* xref:connectors/spanner.adoc[Spanner] * xref:connectors/spanner.adoc[Spanner]
* xref:connectors/jdbc.adoc[JDBC] (Incubating)
* xref:connectors/informix.adoc[Informix] (Incubating) * xref:connectors/informix.adoc[Informix] (Incubating)
[NOTE] [NOTE]