|
5 | 5 | import com.google.protobuf.Parser;
|
6 | 6 | import org.apache.kafka.common.serialization.Deserializer;
|
7 | 7 |
|
| 8 | +/** |
| 9 | + * Custom Proto Deserializer for Kafka. |
| 10 | + * |
| 11 | + * <p>This class provides a deserialization mechanism for Kafka messages using Protocol Buffers |
| 12 | + * without schema validation. It extends the Kafka Deserializer interface and allows for direct |
| 13 | + * deserialization of byte arrays into Proto message objects by utilizing the provided Parser for |
| 14 | + * the specific Proto message type. |
| 15 | + * |
| 16 | + * <p>Motivation: In setups where both producers and consumers use the same Proto schemas, the need |
| 17 | + * for schema validation becomes redundant. The built-in {@code kafkaProtoSerdes} from Confluent |
| 18 | + * performs schema validation via the schema registry service, which introduces overhead. This |
| 19 | + * custom deserializer eliminates that overhead, simplifying the processing flow by bypassing schema |
| 20 | + * validation. |
| 21 | + * |
| 22 | + * |
| 23 | + * <p>Usage: To use this class, create a subclass specifying the Proto message type, pass the |
| 24 | + * corresponding Parser to the superclass constructor, and configure Kafka to use the custom |
| 25 | + * deserializer. |
| 26 | + * |
| 27 | + * <p>Example: |
| 28 | + * |
| 29 | + * <pre>{@code |
| 30 | + * public class MyProtoMessageDeserializer extends ProtoDeserializer<MyProtoMessage> { |
| 31 | + * public MyProtoMessageDeserializer() { |
| 32 | + * super(MyProtoMessage.parser()); |
| 33 | + * } |
| 34 | + * } |
| 35 | + * }</pre> |
| 36 | + * |
| 37 | + * Then, configure Kafka to use this deserializer: |
| 38 | + * |
| 39 | + * <pre>{@code |
| 40 | + * key.deserializer=com.example.MyProtoMessageDeserializer |
| 41 | + * }</pre> |
| 42 | + * |
| 43 | + * @param <T> The Proto message type to be deserialized. |
| 44 | + */ |
8 | 45 | public class ProtoDeserializer<T extends Message> implements Deserializer<T> {
|
9 | 46 |
|
10 | 47 | private final Parser<T> parser;
|
|
0 commit comments