DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
1. New ProducerConfig to support Composable Serializer
Configuration
| Key | Description | Type | Default | Required |
| value.serializers | List of serializers class that implements the `org.apache.kafka.common.serialization.Serializer` interface in order. The first serializer is `Serializer<T>` while the remaining serializers must be `Serializer<byte[]>`. Can't be configured with value.serializer at the same time. | List<Serializer> | None | No, If not exist the code will fail back to value.serializer. Can't exist with value.serializer |
| key.serializers | List of serializers class that implements the `org.apache.kafka.common.serialization.Serializer` interface in order. The first serializer is `Serializer<T>` while the remaining serializers must be `Serializer<byte[]>`. Can't be configured with key.serializer at the same time. | List<Serializer> | None | No, If not exist the code will fail back to key.serializer. Can't exist with key.serializer |
2. New ConsumerConfig to support Composable Deserializer
Configuration
| Key | Description | Type | Default | Required |
| value.deserializers | List of deserializer classes that implements the `org.apache.kafka.common.serialization.Deserializer` interface in order. The last deserializer must be `Deserializer<T>` while the rest must be `Deserializer<byte[]>`. Can't be configured with value.deserializer at the same time. | List<Deserialzer> | None | No, If not exist the code will fail back to value.deserializer. Can't exist with value.deserializer |
| key.deserializers | List of deserializer classes that implements the `org.apache.kafka.common.serialization.Deserializer` interface in order. The last deserializer must be `Deserializer<T>` while the rest must be `Deserializer<byte[]>`. Can't be configured with key.deserializer at the same time. | List<Deserialzer> | None | No, If not exist the code will fail back to key.deserializer. Can't exist with key.deserializer |
3. org.apache.kafka.common.serialization.largemessage.Serializer<byte[]>
...