Skip to Content
SourcesRedpanda

Redpanda

Redpanda is a Kafka®-compatible streaming platform designed for low-latency and high-performance workloads without JVM overhead. It eliminates ZooKeeper and reduces infrastructure complexity while exposing the Kafka API.

Using Redpanda with GlassFlow

Redpanda implements the Kafka wire protocol. Connect with the GlassFlow Kafka source — the configuration is identical to any other Kafka cluster.

Local / unsecured Redpanda

{ "type": "kafka", "source_id": "events", "connection_params": { "brokers": ["redpanda:9092"], "protocol": "PLAINTEXT", "mechanism": "NO_AUTH" }, "topic": "events", "consumer_group_initial_offset": "earliest", "schema_fields": [ {"name": "event_id", "type": "string"} ] }

Redpanda Cloud / SASL_SSL

{ "type": "kafka", "source_id": "events", "connection_params": { "brokers": ["seed-xxxxx.region.aws.cloud.redpanda.com:9092"], "protocol": "SASL_SSL", "mechanism": "SCRAM-SHA-256", "username": "<REDPANDA_USERNAME>", "password": "<REDPANDA_PASSWORD>" }, "topic": "events", "consumer_group_initial_offset": "earliest", "schema_fields": [ {"name": "event_id", "type": "string"} ] }

Redpanda Cloud also supports SCRAM-SHA-512 — set mechanism accordingly. Use the user/role credentials created in the Redpanda Cloud console under Security → Users.

Last updated on