data-storage / server
Redpanda
Capability: Redpanda
Use it when
- run Kafka-compatible event streaming without a JVM broker
- retain and replay service events through consumer groups
What it solves
Not the fit when
- operating a durable event log still requires capacity and retention planning
Install
docker run -d --name redpanda -p 9092:9092 redpandadata/redpanda:latest redpanda start --overprovisioned --smp 1 --memory 1G --reserve-memory 0M --node-id 0 --check=false
Invoke
Create topics with `rpk`, connect Kafka-compatible producers and consumer groups, then monitor lag retention and replay behavior.
Alternatives
No reviewed alternatives recorded yet.