Skip to content

DOCSP-45577 v1.14 rn and new sink processor #188

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

Merged
merged 3 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion config/redirects
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
define: prefix docs/kafka-connector
define: base https://www.mongodb.com/${prefix}

define: versions v1.0 v1.1 v1.2 v1.3 v1.4 v1.5 v1.6 v1.7 v1.8 v1.9 v1.10 v1.11 v1.12 v1.13 master
define: versions v1.0 v1.1 v1.2 v1.3 v1.4 v1.5 v1.6 v1.7 v1.8 v1.9 v1.10 v1.11 v1.12 v1.13 v1.14 master

symlink: current -> master

Expand Down
2 changes: 1 addition & 1 deletion snooty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ avro = "Avro"
avro-converter = "Kafka Connect Avro Converter (Avro Converter)"
protobuf-converter = "Kafka Connect Protobuf Converter"
json-schema-converter = "Kafka Connect JSON Schema Converter"
connector_version = "1.13"
connector_version = "1.14"
connector_patch_version = "1"
connector_driver_version = "4.7"
connector_version_github_tag = "master"
Expand Down
9 changes: 9 additions & 0 deletions source/sink-connector/fundamentals/post-processors.txt
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,15 @@ sink connector.
| For information on configuration, see the
:ref:`Renaming by Regular Expression Example <field-renamer-regex-example>`.

* - | **NullFieldValueRemover**
- | **Full Path:**

.. code-block:: none

com.mongodb.kafka.connect.sink.processor.NullFieldValueRemover``

| Removes all document fields that contain ``null`` values from the sink record.

.. _sink-post-processors-document-id-adder:

Configure the Document Id Adder Post Processor
Expand Down
9 changes: 9 additions & 0 deletions source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ What's New
.. meta::
:keywords: bug fix, features

.. _kafka-connector-whats-new-1.14:

What's New in 1.14
------------------

- Added support for removing all null valued fields in the output with the
``NullFieldValueRemover`` prebuilt post processor. To learn more, see
:ref:`sink-post-processors-prebuilt-list`.

.. _kafka-connector-whats-new-1.13.1:

What's New in 1.13.1
Expand Down
Loading