DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Current state: "Under Discussion"
Discussion thread: here [Change the link from the KIP proposal email archive to your own email thread]
JIRA: here [Change the link from KAFKA-1 to your own ticket]
Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).
Motivation
Note: This KIP is a result of working with members of Apache Cassandra community who are working on CEP-44: Kafka integration for Cassandra CDC using Sidecar and one of the limitations they have faced was large message sizes
Motivation
Kafka has a limit for message Kafka has a limit for message size which limits some use cases where they might have messages that are larger than message.max.bytes even after enabling compression on the producer side or after applying serialization formats like Apache Avro or Protocol Buffers to reduce payload size. Increasing message size indefinitely is not a viable solution as it can lead to performance degradation, memory issues, and instability of the broker. And by looking at some of the enterprise/cloud offerings of Kafka you can see that on average they can offer 8MB to 10MB as max message size.
...
- How it works
- Upload the payload to external storage (e.g., S3, HDFS, or a database).
- Send a reference (e.g.,
s3://bucket/key) via Kafka. - Consumers fetch the payload using the reference
- Considerations
- Reduces Kafka network/storage load.
- Introduces dependency on external systems.
- Available open-source implementation
- There isn't a specific open-source implementation for Reference-Based Messaging. Mostly everyone adopting this has their custom solution
| Pattern | Pros | Cons |
|---|---|---|
| Chunking | No external storage required | Complex client logic to split and reassemble messages |
| Reference-Based | Minimizes Kafka load | External system dependency |
This KIP is proposing
- A serializer in Apache Kafka that implements Reference-Based Messaging as this is the simplest one.
- A notion of a
Composableserializer where the client can apply a list of serializers before applying a large message serializer
Note:
This KIP will benefit CEP-44: Kafka integration for Cassandra CDC using Sidecar
Public Interfaces
1. New Producer/Consumer configs to support Composable Serializer/Deserializer
In some use-cases we might need a way to be able to chain of Kafka serializer/deserializer before applying large message serializer for example need to apply schema or special format like avro or protobuf. We could just create a single LargeMessageSerializer that implemented org.apache.kafka.common.serialization.largemessage.Serializer that implemented the Kafka Serializer interface, but we would need to create the different versions (AvroSerializer, ProtobufSerializer) with their support for the schema.
Instead the KIP is proposing idea of having a composable serializer , that still implements the Kafka Serializer interface, but allows concatenating several serializers to perform what we are looking for here.
This will be enabled by new configs in Producer/Consumer side
2
...
. org.apache.kafka.common.serialization.largemessage.Serializer
A configurable Kafka serializer that:
- Check if the estimated size of the data (bytes) it needs to serialize is bigger larger than the configured threshold.
- If it is large than the provided threshold (`
large.message.threshold.bytes`):- Use the provided PayloadStore implementation to publish the large message into payload
- store, generating an id which is the reference to access this later.
- Encapsulate that ID into a simple Kafka event using a structured format.
- Pass payload Id as new Kafka Event down to Kafka
- Add a
large-message: trueheader
- If it’s not large then provided threshold (
large.message.threshold.bytes):- Do
- nothing, pass the data as it is.
- If it is large than the provided threshold (`
- If it is
- If it’s not
...
3.org.apache.kafka.common.serialization.largemessage.Deserializer
A configurable Kafka deserializer that performs:
- Check if the event is of the Large blob type by large message by looking for
large-message: trueheader- If it does have `
large-message` header:- Parse the event and retrieve the
- ID and the needed useful information on the event.
- Use
- the provided PayloadStore implementation to
- download the
- original data from the
- payload-store.
- Return payload as the final value
- If it doesn't have the
large-messageheader:- Do nothing return the Kafka message as
If - If it does have `
- it is
If it’s not
Proposed Changes
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[]>`. |
2. LargeMessageSerializer
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
ConfigurationConfiguration
| Key | Description | Type | Default | Required |
large.message.blob.store.class| value.deserializers | List of deserializer classes that implements the `org |
| .apache.kafka.common.serialization. |
large.message.blob.store.timeout.msDeserializer` 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[]>
Configuration
| Key | Description | Type | Default | Required |
|---|---|---|---|---|
large.message.payload.store.class |
max.block.msfor Kafka producers ormax.poll.interval.msin Kafka consumer.large.message.blob.store.retry.countlarge.message.blob.store.retry.max.backoff.mslarge.message.blob.store.retry.delay.backoff.mslarge.message.blob.store.blob.id.generatorImplementation of org.apache.kafka.common. |
serialization.largemessage. |
PayloadStore |
| . | Class | None | Yes |
org.apache.kafka.common.serialization.largemessage.blobstore.BlobIdGenerator.DefaultBlobIDGeneratorlarge.message.threshold.bytes | The maximum size of the message is considered large. | Long | 1MB (Default of max.message.bytes) | No |
3. LargeMessageDeserializer
Configuration
4.org.apache.kafka.common.serialization.largemessage.Deserializer<byte[]>
Configuration
| Key | Description | Type |
|---|
| Default | Required |
|---|---|
large.message. |
payload.store.class | Implementation of org.apache.kafka.common.serialization.largemessage. |
PayloadStore . | Class | None | Yes |
5.
...
org.
...
apache.
...
kafka.
...
large.message.blob.store.blob.id.generator
...
common.serialization.largemessage.PayloadStore
| Code Block | ||
|---|---|---|
| ||
/**
* An interface for publishing and downloading serialised data to/from payload store.
* The store config will passed down from the original config of the Kafka producer/consumer client.
*/
public interface PayloadStore implements Configurable, Closeable {
/**
* Publish data into the store.
*
* @param data data that will be published to the store.
* @return full path to object in the store.
* @throw PayloadStoreException in case failed to publish to the store.
*/
String publish(String topic, byte[] data) throw PayloadStoreException;
/**
* Download full data from the store.
*
* @param fullPath of the data's reference in the store for example `remote_store/topic_name/<record_random_uuid>`
* @return content of the object as bytes.
* @throw PayloadStoreException
*/
byte[] download(String fullPath) throw PayloadStoreException;
/**
* Generate an id for the data's reference in the store (Not the full path in the store).
* By default the id is a random UUID however some stores might need more smarter way to calculate
* its reference id based on the data itself. In such a case please override this method.
* @param data data that will be published to the store.
* @return object id as string, the default implementation support UTF-8 encoding. If any other encoding is required the
* implementation will need to address this.
default String id(byte[] data) {
return java.util.UUID.randomUUID().toString(); // Java UUID is already composed entirely of ASCII characters which are valid UTF-8
}
} |
6. org.apache.kafka.common.serialization.largemessage.PayloadStoreException
| Code Block |
|---|
/**
* Exception class that represent exceptions during interaction with the store.
* this helps the Payload store to decided either to retry or to crash.
* The final Serializer and Deserializer will propagate this as SerializationException to client.
**/
public class PayloadStoreException extends RuntimeException {
|
4. BlobStore
| Code Block | ||
|---|---|---|
| ||
public abstract class BlobStore implements Configurable, Closeable {
@Override
public void configure(Map<String, ?> configs) {
// configure
}
/**
* Upload data into object store.
*
* @param data data that will be uploaded into the object.
* @return {@link BlobResponse}.
*/
public abstract BlobResponse putObject(String topic, byte[] data);
/**
* Download object from object store.
*
* @param blobPath id of the object in blobstore
* @return content of the object as bytes.
*/
public abstract byte[] getObject(String blobPath);
} |
5. BlobIdGenerator
| Code Block | ||
|---|---|---|
| ||
public interface BlobIdGenerator extends Configurable { BlobIdGenerator DEFAULT_BLOB_ID_GENERATOR = new BlobIdGenerator() { @Override public void configure(Map<String, ?> configs) { // Nothing to do with config } @Override public String id(byte[] data) { return UUID.randomUUID().toString(); } }; /** * generate blob id Constructor PayloadStoreException with message and throwable. */ Stringpublic id(byte[] data); } |
6. LargeBlobMessage
| Code Block | ||
|---|---|---|
| ||
public interface LargeMessageFormatter<T> extends ConfigurablePayloadStoreException(String message, Throwable t) { LargeMessageFormatter JSON = new LargeMessageFormattersuper(message, t) {; } /** // implement* aConstructor defaultPayloadStoreException jsonwith onemessage. */ // format is public PayloadStoreException(String message) { //super(message); } /** "full-blob-path": "<full-path-to-access-blob-as-string>", * Constructor PayloadStoreException with throwable. // */ public PayloadStoreException(Throwable "blob-store-class": "<used-blob-store-class-path-to-upload-blob>",t) { //super(t); "blob-id-generator-class": "<class-used-to-generate-blob-id>", // "large-message-formatter-class": "<formatter-class-path>" // } }; /** * build message bytes from blob store response and data. */ byte[] messageBytes(byte[] data, BlobResponse response); /** * parse data into LargeBlobMessage. */ T largeBlobMessage(byte[] data); } |
7. BlobResponse
| Code Block | ||
|---|---|---|
| ||
public class BlobResponse {
public final int responseCode;
public final String fullBlobPath;
public final BlobStoreException blobStoreException;
/**
* Construct blob response with response code and blob id.
*/
public BlobResponse(int responseCode, String fullBlobPath) {
this(responseCode, fullBlobPath, null);
}
/**
* Construct blob response with response code, blob id and exception.
*/
public BlobResponse(int responseCode, String fullBlobPath, BlobStoreException blobStoreException) {
this.responseCode = responseCode;
this.fullBlobPath = fullBlobPath;
this.blobStoreException = blobStoreException;
}
} |
Example
...
| language | java |
|---|
...
}
}
|
Example
Producer
| Code Block | ||
|---|---|---|
| ||
Map<String, Object> producerConfig = new HashMap<>();
producerConfig.put("value.serializers", "kafka.serializers.KafkaAvroDeserializer, org.apache.kafka.common.serialization.largemessage.Serializer");
producerConfig.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer"); producerConfig.put("large.message.payload.store.class", "myclient.payloadstore.CustomS3Store")
producerConfig.put("large.message.threshold.bytes", 1048576);
producerConfig.put("s3.bucket", "my-bucket")
producerConfig.put("s3.retry.attempts", "3");
producerConfig.put("s3.connection.timeout.ms", "5000");
producerConfig.put("bootstrap.servers", "localhost:9092");
KafkaProducer<String, byte[]> producer = new KafkaProducer<>(producerConfig); |
Consumer
| Code Block | ||
|---|---|---|
| ||
Map<String, Object> consumerConfig = new HashMap<>();
producerConfig.put("value.deserializers", "org.apache.kafka.common.serialization.largemessage.Serializer, kafka.serializers.KafkaAvroDeserializer");
consumerConfig.put("key.deserializer", "org.apache.kafka.common.serialization.StringSerializer"); consumerConfig.put("large.message.payload.store.class", "myclient.payloadstore.CustomS3Store")
consumerConfig.put("s3.bucket", "my-bucket")
consumerConfig.put("s3.retry.attempts", "3");
consumerConfig.put("s3.connection.timeout.ms", "5000");
consumerConfig.put("bootstrap.servers", "localhost:9092");
KafkaConsumer<String, Object> consumer = new KafkaConsumer<>(consumerConfig); |
Considerations
TTL Configuration Risk: If the payload store owner doesn't configure an appropriate TTL that aligns with Kafka topic retention, the payload store may grow indefinitely. This occurs because objects remain in storage even after Kafka no longer references them, leading to unnecessary storage costs.
TTL Too Short Risk: If the TTL is set too aggressively (shorter than needed), Kafka references may point to objects that no longer exist in the payload store. When this happens:
Consumers will encounter NOT_FOUND errors
To prevent blocking behavior, consumers should capture SerializationException::getCause and decide what to do if the exception is PayloadException/PayloadNotFoundException.
This allows graceful handling of missing payload references
- TTL and usage of Compacted Topic: for applications that do use compacted topics with large payloads, the PayloadStore implementation should handle this by:
Consistent ID Generation:PayloadStore implementations should use deterministic IDs based on message content or metadata (rather than random UUIDs) so that identical payloads can reuse the same storage object, reducing storage costs.
TTL Strategy:
Since compacted topics can retain data indefinitely, users must accept the indefinite storage costs that comes with this case. If cost is an issue they will need to setup a cleanup job that observer Kafka key with null value and delete the associated payload with this key.
Topics with
cleanup.policy=compact,deletewill eventually remove old data, so standard TTL approaches work normally.
Recommendation: Set TTL duration to exceed your Kafka topic retention period by a reasonable buffer (e.g., 10-20%) to ensure payload availability throughout the message lifecycle while preventing indefinite storage growth.
- Partial Failure Handling: If payload storage succeeds but Kafka produce fails, the payload will remain in storage until TTL expires. This is acceptable as it only affects storage costs, not correctness. If Kafka message is consumed but payload download fails, the client can capture SerializationException::getCause and determine behavior.
Critical Timing Constraints: The total timeout for payload store operations (including all retries) cannot exceed `max.block.ms` for Kafka producers or `max.poll.interval.ms` for Kafka consumers. This is a fundamental requirement for any implementation of org.apache.kafka.common.serialization
...
.largemessage.PayloadStore.
Exceeding these limits will cause producer blocking or consumer rebalancing issues.
Memory Constrains: Large messages will consume memory during serialization so ensure heap size can accommodate your largest expected message. ConsiderPayloadStoreimplementationsthatsupportcompressiontoreducestoragefootprint.
Compatibility, Deprecation, and Migration Plan
- Old clients just need to set the needed configuration to use this feature
Rejected Alternatives
- We have rejected implementing the chunking pattern due to its many potential edge cases and complexity added to the consumer side. A peak of those complexities can be explored more deeply in the LinkedIn presentation.
- Implement this as a separate project outside of Apache Kafka as this seems to be a pattern that needs more use cases and it would be better to have this in Apache Kafka as native implementation instead of a separate project
- Implement the AsyncPayloadStore: Thisdoesn'tprovideanybenefitsinceKafka'sSerializerinterfaceissynchronous/blocking-anyasyncoperationswouldneedtoimmediatelycall.get(),negatingtheasyncbenefits. Also the reality is that most of use-cases that needs more > 1MB messages:
Are dealing with bulk data (collections, arrays)
Can afford the memory cost during brief serialization
Run on appropriately sized JVMs
Usecases with truly memory-constrained environments probably shouldn't be sending GB-sized messages through Kafka anyway.
Compatibility, Deprecation, and Migration Plan
- Old clients just need to set the needed configuration to use this feature
Rejected Alternatives
...