Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCSP-34397: improve desc of kafka topic prefix and suffix #147

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions source/source-connector/configuration-properties/kafka-topic.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
Kafka Topic Properties
======================

.. facet::
:name: genre
:values: reference

.. meta::
:keywords: generated topic, customize topic

.. contents:: On this page
:local:
:backlinks: none
Expand Down Expand Up @@ -38,8 +45,11 @@ Settings
- | **Type:** string
|
| **Description:**
| The prefix to prepend to database and collection names to
generate the name of the Kafka topic on which to publish the data.
| Specifies the first part of the destination Kafka
topic name to which the connector publishes change stream events.
The destination topic name is composed of the ``topic.prefix``
value followed by the database and collection names, separated by the value
specified in the ``topic.separator`` property.

.. seealso::

Expand All @@ -54,8 +64,11 @@ Settings
- | **Type:** string
|
| **Description:**
| The suffix to append to database and collection names to
generate the name of the Kafka topic on which to publish the data.
| Specifies the last part of the destination Kafka
topic name to which the connector publishes change stream events.
The destination topic name is composed of the database and
collection names followed by the ``topic.suffix`` value,
separated by the value specified in the ``topic.separator`` property.

.. seealso::

Expand Down