Skip to content

Redpanda

Redpanda is Watasu’s streaming platform. It speaks the Kafka protocol, so existing Kafka clients work unchanged.

Use Redpanda when you need ordered, durable, replayable event streams — and when “publish to a topic, consume from a topic” is the right shape for your problem.

  • analytics and product event pipelines
  • audit and event-sourcing buses
  • decoupling services that don’t need synchronous responses
  • ingestion buffers in front of slower downstream systems
Terminal window
watasu addons:create redpanda --app my-app

After attachment, your app receives Redpanda connection details (broker addresses, credentials) as config vars. Use any Kafka-compatible client library.

People reach for both for “queues.” They’re not the same:

ValkeyRedpanda
OrderingBest-effortStrict per partition
DurabilityOptional, plan-dependentBuilt in
ReplayNoYes (consumer offsets)
Best forSpeed, ephemeral coordinationDurable event flow

If you’d lose sleep over dropped messages, you want Redpanda.

Redpanda is replicated and durable by design. Retention is controlled by topic configuration — you decide how long to keep messages, and consumers can replay from any retained offset.

There isn’t a Watasu-side scheduled backup product for Redpanda the way there is for SQL databases. Design retention and downstream durability deliberately for your use case.