File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
source/sink-connector/configuration-properties Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,25 @@ Settings
3838 | **Description:**
3939 | Maximum number of sink records to batch together for processing.
4040 |
41+ | Consider the batch that contains the following records:
42+
43+ .. code-block:: none
44+ :copyable: false
45+
46+ [ 1, 2, 3, 4, 5 ]
47+
48+ | When set to ``0``, the connector performs a single bulk write for
49+ the entire batch.
50+ |
51+ | When set to ``1``, the connector performs one bulk write for each
52+ record in the batch, for a total of five bulk writes as shown in
53+ the following example:
54+
55+ .. code-block:: none
56+ :copyable: false
57+
58+ [1], [2], [3], [4], [5]
59+
4160 | **Default**: ``0``
4261 | **Accepted Values**: An integer
4362
You can’t perform that action at this time.
0 commit comments