| ▲ | Show HN: Kafka-compatible streaming on S3 with stateless brokers | |
| 2 points by 2pk03 2 days ago | 1 comments | ||
Hi HN, KafScale is Kafka-compatible streaming, k8s native, where S3 is the source of truth and brokers hold no persistent state. Written in Go, runs on Kubernetes. Built this after years of operating Kafka and hitting the same walls: broker failures that take hours to recover, partition rebalancing that blocks deploys, disk capacity planning that never ends. How it works: - Producers and consumers use standard Kafka clients - Brokers buffer in memory, flush to S3 - etcd stores metadata and consumer group state - Recovery means restarting a pod and reading from S3 - Optional Iceberg processor reads segments directly from S3, bypasses brokers entirely for batch/analytical workloads What you give up: latency is 400-500ms (S3 round-trip), no transactions, no compacted topics. It's not a 100% replacement. What you get: brokers are disposable, scaling is just replica count, no disk management, direct access to streamed data over S3 ACL License: Apache 2.0 GitHub: https://github.com/novatechflow/kafscale | ||
| ▲ | stympy a day ago | parent [-] | |
Thanks for sharing this! I'd love to see a section in the readme comparing this to other s3-backed kafka replacements such as warpstream and bufstream, and why you'd use this over those. | ||