Architecture
KSI is a filter created to run within the Kroxylicious Kafka proxy (https://github.com/kroxylicious/kroxylicious). The filter utilises an embedded or external Iceberg engine to fetch data before reformatting it for Kafka purposes.

A typical flow may look like this:
Kroxylicious receives a FETCH request for offsets that are stored in Iceberg not Kafka
This satisfies the routing config in Kroxylicious and so the request is intercepted by the K.S.I. filter
In parallel the filter:
Fetches data matching the request from Iceberg using a provided Iceberg engine
Fetches the appropriate schema of the data of the data from Schema Registry
Launches a pre-fetch task to fetch the next chunk of data from Iceberg (K.S.I. expects sequential access by Kafka clients and can greatly increase performance by fetching data to satisfy future requests ahead of time).
K.S.I. encodes the Iceberg data into Kafka message format
The K.S.I. filter passes the encoded response back to Korxylicious to return to the client.
Last updated

