From bb4ff3556d75e241fd0a587980299e84748c6f86 Mon Sep 17 00:00:00 2001
From: Rea Rustagi <85902999+rustagir@users.noreply.github.com>
Date: Tue, 14 Nov 2023 10:32:07 -0500
Subject: [PATCH] DOCSP-34397: improve desc of kafka topic prefix and suffix
 (#147)

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

* CC suggestion

(cherry picked from commit 35555908e3e0dd2d3649757c9aff1d4403259bb3)
---
 .../configuration-properties/kafka-topic.txt  | 21 +++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/source/source-connector/configuration-properties/kafka-topic.txt b/source/source-connector/configuration-properties/kafka-topic.txt
index 599c7cd8..05367c5c 100644
--- a/source/source-connector/configuration-properties/kafka-topic.txt
+++ b/source/source-connector/configuration-properties/kafka-topic.txt
@@ -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
@@ -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::
 
@@ -53,8 +63,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::