diff --git a/documentation/modules/ROOT/nav.adoc b/documentation/modules/ROOT/nav.adoc index 7bff903b5..0d85adbdf 100644 --- a/documentation/modules/ROOT/nav.adoc +++ b/documentation/modules/ROOT/nav.adoc @@ -23,7 +23,8 @@ ** xref:connectors/spanner.adoc[Spanner] ** xref:connectors/informix.adoc[Informix] * Sink Connectors -** xref:connectors/jdbc.adoc[JDBC] +** xref:connectors/index-sink.adoc[Overview] +** xref:connectors/jdbc.adoc[JDBC] * Transformations ** xref:transformations/index.adoc[Overview] ** xref:transformations/topic-routing.adoc[Topic Routing] diff --git a/documentation/modules/ROOT/pages/connectors/index-sink.adoc b/documentation/modules/ROOT/pages/connectors/index-sink.adoc new file mode 100644 index 000000000..220a408aa --- /dev/null +++ b/documentation/modules/ROOT/pages/connectors/index-sink.adoc @@ -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] diff --git a/documentation/modules/ROOT/pages/connectors/index.adoc b/documentation/modules/ROOT/pages/connectors/index.adoc index 498e73625..be05c296e 100644 --- a/documentation/modules/ROOT/pages/connectors/index.adoc +++ b/documentation/modules/ROOT/pages/connectors/index.adoc @@ -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: @@ -13,7 +14,6 @@ We currently have the following connectors: * xref:connectors/cassandra.adoc[Cassandra] * xref:connectors/vitess.adoc[Vitess] (Incubating) * xref:connectors/spanner.adoc[Spanner] -* xref:connectors/jdbc.adoc[JDBC] (Incubating) * xref:connectors/informix.adoc[Informix] (Incubating) [NOTE]