Compact integer encoding for Kafka payloads — smaller messages without giving up clarity.
bijou64
Related
Shrink Kafka int payloads with bijou64 ↗ ↖
Variable-length unsigned 64-bit ints — small numbers stay small on the wire.
Send Half the Bytes Over the Network: Cut Kafka Integer Payloads with Bijou64
·1465 words·7 mins
Every Kafka record with a Long value you produce sends 8 bytes over the wire, even when the value is 42. Bijou64 encodes integers in 1–3 bytes with drop-in serializers, cutting network transfer and replication traffic on integer-heavy topics by up to 50% or more.
SSE Kafka Connector: Stream Real-time Events into Kafka
·380 words·2 mins
The Problem: Getting Real-time Data into Kafka # Have you ever tried to stream Wikipedia changes or other real-time Server-Sent Events (SSE) updates into Kafka? If you have, you probably wrote custom Kafka producer and consumer code to handle these events, managed reconnections, and built your own error handling.

