Class KafkaKeySerializer
java.lang.Object
com.linkedin.venice.serialization.KafkaKeySerializer
- All Implemented Interfaces:
VeniceKafkaSerializer<KafkaKey>,Closeable,AutoCloseable
VeniceKafkaSerializer to encode/decode KafkaKey for Venice customized kafka message
Used by Kafka to convert to/from byte arrays.
KafkaKey Schema (in order)
- Key header byte - Either 0 (PUT or DELETE), or 2 (CONTROL_MESSAGE)
- Payload (Key Object)-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Close this serializer.voidConfigure this class.deserialize(String topic, byte[] bytes) Create an object from an array of bytesbyte[]Construct an array of bytes from the given object
-
Constructor Details
-
KafkaKeySerializer
public KafkaKeySerializer()
-
-
Method Details
-
deserialize
Description copied from interface:VeniceKafkaSerializerCreate an object from an array of bytes- Specified by:
deserializein interfaceVeniceKafkaSerializer<KafkaKey>- Parameters:
topic- Topic to which the array of bytes belongs.bytes- An array of bytes with the objects data- Returns:
- A java object serialzed from the bytes
-
serialize
Description copied from interface:VeniceKafkaSerializerConstruct an array of bytes from the given object- Specified by:
serializein interfaceVeniceKafkaSerializer<KafkaKey>- Parameters:
topic- Topic to which the object belongs.kafkaKey- The object- Returns:
- The bytes taken from the object
-
configure
Description copied from interface:VeniceKafkaSerializerConfigure this class.- Specified by:
configurein interfaceVeniceKafkaSerializer<KafkaKey>- Parameters:
configMap- configs in key/value pairsisKey- whether is for key or value
-
close
public void close()Description copied from interface:VeniceKafkaSerializerClose this serializer. This method has to be idempotent if the serializer is used in KafkaProducer because it might be called multiple times.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceVeniceKafkaSerializer<KafkaKey>
-