.. _custom-transform: Custom transformations ---------------------- If none of the available Single Message Transformations (SMTs) provide the necessary transformation, you can create your own. .. caution:: Custom transformations are not currently available for `managed connectors `__. An important concept to understand first is that, generally, SMT implementations provide the bulk of the logic in an abstract class. The SMT implementation then provides two concrete subclasses called *Key* and *Value* that specify whether to process the Connect record's key or value. When using a transformation, users specify the fully qualified class names of either the Key or Value class. .. tip:: See `How to Use Single Message Transforms in Kafka Connect `__. This tutorial provides a deep dive into building your own custom transformation. The following are the high-level steps necessary to create and use a custom SMT. #. Review the different SMT source java files available from the default `Kafka Connect transformations `__. Use one of these as a basis for creating your new custom transformation. The following are important methods to note when reviewing the source java files: * Search for ``apply()`` and see how this method is implemented. * Search for ``configure()`` and see how this method is implemented. .. note:: For additional details see `Interface Transformation `__. #. Write and compile your source code and unit tests. Sample unit tests for SMTs can be found in the `Apache Kafka GitHub project `__. #. Create your JAR file. #. Install the JAR file. Copy your custom SMT JAR file (and any non-|ak| JAR files required by the transformation) into a directory that is **under** one of the directories listed in the ``plugin.path`` property in the |kconnect| worker configuration file as shown below: :: plugin.path=/usr/local/share/kafka/plugins For example, create a directory named ``my-custom-smt`` under ``/usr/local/share/kafka/plugins`` and copy the JAR files into the ``my-custom-smt`` directory. .. important:: Make sure to do this on all worker nodes. See :connect-common:`Installing Connect Plugins|userguide.html#installing-kconnect-plugins` for details. #. Start up the workers and the connector, and then try out your custom transformation. The |kconnect| worker logs each transformation class it finds at the DEBUG level. Enable DEBUG mode and verify that your transformation was found. If not, check the JAR installation and make sure it's in the correct location. .. note:: **Custom partitioners** By default, connectors inherit the partitioner used for the |ak| topic. You can create a custom partitioner for a connector. The custom partitioner must be placed in a connector’s ``/lib`` folder. Partitioners can also be placed in a common location that you choose. If using this alternative, add a symlink to this location from each connector’s ``/lib`` folder. For example: You place a custom partitioner in the path ``share/confluent-hub-components/partitioners``. You would then add the symlink ``share/confluent-hub-components/kafka-connect-s3/lib/partitioners -> ../../partitioners``.