| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
KafScale is a Kafka-protocol compatible streaming platform built around a simple premise:
durable logs belong in object storage, not in stateful brokers.
Traditional Kafka couples durability, replication, and compute into long-lived broker processes.
This made sense in a disk-centric world. It becomes an operational and economic liability once object storage is available.
KafScale separates concerns cleanly. Brokers are stateless and ephemeral. Durability lives in S3.
The Kafka protocol remains intact.
KafScale is open source under the Apache 2.0 license and implemented in Go.
(KafScale is not a registered trademark.)
Most Kafka deployments are not event-driven transaction engines.
They are durable pipes: producers write, consumers read, teams rely on replay when something breaks.
Despite this, traditional Kafka clusters still require:
These costs are structural, not accidental.
Object storage changes the failure model, the scaling model, and the economics of durable logs.
Once durability is externalized, broker state stops being an asset and becomes a liability.
KafScale targets this common case by:
KafScale is used in production environments, but there are no warranties or guarantees.
Kafka brokers were designed in a world where durable storage meant local disks and failure meant replacing machines. In that model, brokers had to own both compute and data. Replication, leader election, and rebalancing were necessary to protect durability.
Cloud object storage changes this entirely.
Object storage already provides durability, availability, and cost efficiency at a level that broker-local disks cannot match. Once log segments live in object storage, brokers no longer need to be long-lived, stateful processes. They become protocol endpoints and transient compute.
Stateful brokers introduce complexity without adding resilience:
Stateless brokers backed by immutable object storage invert this model:
KafScale is built on the assumption that broker state is a historical constraint, not a requirement. The Kafka protocol remains valuable. The broker-centric storage model does not.
In scope:
Explicit non-goals:
Stream processing is expected to run in external compute engines such as Apache Flink (https://flink.apache.org) or Apache Wayang (https://wayang.apache.org).
For the technical specification and data formats, see kafscale-spec.md.
A detailed architecture overview and design rationale are available here: https://www.novatechflow.com/p/kafscale.html
| Back | FazBrowse Home | New Git URL |