diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/apex/APEX-User-Manual.rst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/apex/APEX-User-Manual.rst b/docs/apex/APEX-User-Manual.rst index 75032466..948ead14 100644 --- a/docs/apex/APEX-User-Manual.rst +++ b/docs/apex/APEX-User-Manual.rst @@ -2644,6 +2644,31 @@ Kafka Input Kindly note that the above Kafka properties is just a reference, and the actual properties required depends on the Kafka server installation. + In cases where the message produced in Kafka topic has been serialized using KafkaAvroSerializer, + then the following parameters needs to be additionally added to `KafkaProperties` for the consumer + to have the capability of deserializing the message properly while consuming. + + .. container:: listingblock + + .. container:: content + + .. code:: + + [ + "value.deserializer", + "io.confluent.kafka.serializers.KafkaAvroDeserializer" + ], + [ + "schema.registry.url", + "<url of the schema registry configured in Kafka cluster for registering Avro schemas>" + ] + + .. container:: paragraph + + For more details on how to setup schema registry for Kafka cluster, + kindly take a look `here <https://github.com/confluentinc/schema-registry/blob/master/README.md>`__. + + Kafka Output ============ .. container:: paragraph |