Skip to content

Commit 848dfed

Browse files
author
your proper name
committed
(DOCSP-42962) Spacing.
1 parent 40392a5 commit 848dfed

File tree

6 files changed

+38
-29
lines changed

6 files changed

+38
-29
lines changed

source/sink-connector/configuration-properties/connector-message.txt

+7-6
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ Settings
7575
When set to ``true``, the default value, the
7676
connector writes a batch of records as an ordered bulk write
7777
operation.
78-
| To learn more about bulk write operations, see the :ref:`Write
79-
Model Strategies page <sink-connector-bulk-write-ops>`.
78+
|
79+
| To learn more about bulk write operations, see
80+
:ref:`Bulk Write Operations <sink-connector-bulk-write-ops>`.
8081
|
8182
| **Default**: ``true``
8283
| **Accepted Values**: ``true`` or ``false``
@@ -113,10 +114,10 @@ Settings
113114
cannot handle the level of parallelism you specify.
114115
|
115116
| :gold:`IMPORTANT:` If you specify a value greater than ``1``,
116-
| the connector enables parallel processing of the tasks.
117-
| If your topic has multiple partition logs, which enables
118-
| the connector to read from the topic in parallel,
119-
| the tasks may process the messages out of order.
117+
the connector enables parallel processing of the tasks.
118+
If your topic has multiple partition logs, which enables
119+
the connector to read from the topic in parallel,
120+
the tasks may process the messages out of order.
120121
|
121122
| **Default**: ``1``
122123
| **Accepted Values**: An integer

source/sink-connector/configuration-properties/id-strategy.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@ Settings
7676
|
7777
| **Description:**
7878
| Whether the connector should delete documents when the key value
79-
matches a document in MongoDB and the value field is null. This
80-
setting applies when you specify an id generation strategy that
79+
matches a document in MongoDB and the value field is null.
80+
|
81+
| This setting applies when you specify an id generation strategy that
8182
operates on the key document such as ``FullKeyStrategy``,
8283
``PartialKeyStrategy``, and ``ProvidedInKeyStrategy``.
8384
|

source/sink-connector/configuration-properties/mongodb-connection.txt

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ Settings
6868
| When set to ``true``, if the connector calls a command on your
6969
MongoDB instance that's deprecated in the declared {+stable-api+}
7070
version, it raises an exception.
71+
|
7172
| You can set the API version with the ``server.api.version``
7273
configuration option. For more information on the {+stable-api+}, see
7374
the MongoDB manual entry on the
@@ -83,6 +84,7 @@ Settings
8384
| When set to ``true``, if the connector calls a command on your
8485
MongoDB instance that's not covered in the declared {+stable-api+}
8586
version, it raises an exception.
87+
|
8688
| You can set the API version with the ``server.api.version``
8789
configuration option. For more information on the {+stable-api+}, see
8890
the MongoDB manual entry on the

source/sink-connector/configuration-properties/mongodb-namespace.txt

+8-6
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ Settings
4343
database or collection in which to sink the data. The default
4444
``DefaultNamespaceMapper`` uses values specified in the
4545
``database`` and ``collection`` properties.
46-
47-
The connector includes an alternative class for specifying the
48-
database and collection called ``FieldPathNamespaceMapper``. See
49-
the :ref:`FieldPathNamespaceMapper settings <fieldpathnamespacemapper-settings>`
50-
for more information.
51-
46+
|
47+
| The connector includes an alternative class for specifying the
48+
| database and collection called ``FieldPathNamespaceMapper``. See
49+
| :ref:`FieldPathNamespaceMapper Settings <fieldpathnamespacemapper-settings>`
50+
| for more information.
51+
|
5252
| **Default**:
5353

5454
.. code-block:: none
@@ -147,10 +147,12 @@ You can use the following settings to customize the behavior of the
147147
| **Description**:
148148
| Whether to throw an exception when either the document is missing the
149149
mapped field or it has an invalid BSON type.
150+
|
150151
| When set to ``true``, the connector does not process documents
151152
missing the mapped field or that contain an invalid BSON type.
152153
The connector may halt or skip processing depending on the related
153154
error-handling configuration settings.
155+
|
154156
| When set to ``false``, if a document is missing the mapped field or
155157
if it has an invalid BSON type, the connector defaults to
156158
writing to the specified ``database`` and ``collection`` settings.

source/sink-connector/configuration-properties/post-processors.txt

-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ Settings
130130
| To learn more about how to create your own strategy, see
131131
| :ref:`<kafka-sink-write-model-create-custom-strategy>`.
132132
|
133-
|
134133
| **Default**:
135134

136135
.. code-block:: none

source/sink-connector/configuration-properties/time-series.txt

+18-14
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,11 @@ Settings
5757
| The date format pattern the connector should use to convert the
5858
source data contained in the field specified by the
5959
``timeseries.timefield`` setting.
60-
The connector passes the date format pattern to the Java
60+
|
61+
| The connector passes the date format pattern to the Java
6162
`DateTimeFormatter.ofPattern(pattern, locale) <https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html#ofPattern-java.lang.String-java.util.Locale->`__
6263
method to perform date and time conversions on the time field.
63-
64+
|
6465
| If the date value from the source data only contains date information,
6566
the connector sets the time information to the start of the specified
6667
day. If the date value does not contain the timezone offset, the
@@ -80,7 +81,7 @@ Settings
8081
| **Description:**
8182
| Whether to convert the data in the field into the BSON ``Date``
8283
format.
83-
84+
|
8485
| When set to ``true``, the connector uses the milliseconds
8586
after epoch and discards fractional parts if the value is
8687
a number. If the value is a string, the connector uses the
@@ -101,8 +102,9 @@ Settings
101102
|
102103
| **Description:**
103104
| Which ``DateTimeFormatter`` locale language tag to use with the date
104-
format pattern (e.g. ``"en-US"``). For more information on
105-
locales, see the Java SE documentation of `Locale <https://docs.oracle.com/javase/8/docs/api/java/util/Locale.html>`__.
105+
format pattern (e.g. ``"en-US"``).
106+
|
107+
| To learn more about locales, see the Java SE documentation of `Locale <https://docs.oracle.com/javase/8/docs/api/java/util/Locale.html>`__.
106108
|
107109
| **Default**: ``ROOT``
108110
| **Accepted Values**: A valid ``Locale`` language tag format
@@ -113,10 +115,10 @@ Settings
113115
| **Description:**
114116
| Which top-level field to read from the source data to describe
115117
a group of related time series documents.
116-
117-
:gold:`IMPORTANT:` This field must not be the ``_id`` field nor the field you specified
118-
in the ``timeseries.timefield`` setting.
119-
118+
|
119+
| :gold:`IMPORTANT:` This field must not be the ``_id`` field nor the field you specified
120+
in the ``timeseries.timefield`` setting.
121+
|
120122
| **Default**: ``""``
121123
| **Accepted Values**: An empty string or the name of a field
122124
that contains any BSON type except ``BsonArray``.
@@ -128,8 +130,9 @@ Settings
128130
| The number of seconds MongoDB should wait before automatically
129131
removing the time series collection data. The connector disables
130132
timed expiry when the setting value is less than ``1``.
131-
For more information on this collection setting, see the MongoDB
132-
Server Manual page on :manual:`Automatic Removal for Time Series Collections </core/timeseries/timeseries-automatic-removal/>`.
133+
|
134+
| To learn more, see :manual:`Set up Automatic Removal for Time Series Collections </core/timeseries/timeseries-automatic-removal/>`
135+
in the MongoDB manual.
133136
|
134137
| **Default**: ``0``
135138
| **Accepted Values**: An integer
@@ -140,9 +143,10 @@ Settings
140143
|
141144
| **Description:**
142145
| The expected interval between subsequent measurements of your
143-
source data. For more information on this setting, see the
144-
MongoDB server manual page on :manual:`Granularity for Time
145-
Series Data </core/timeseries/timeseries-granularity/>`.
146+
source data.
147+
|
148+
| To learn more, see :manual:`Set Granularity for Time Series Data
149+
</core/timeseries/timeseries-granularity/>` in the MongoDB manual.
146150
|
147151
| *Optional*
148152
| **Default**: ``""``

0 commit comments

Comments
 (0)