openova/platform/redpanda
talent-mesh c9d04a53b4 refactor: flatten platform/ structure (41 components)
Remove hierarchical grouping (networking/, security/, etc.) and use flat
structure for all 41 platform components.

Changes:
- All components now directly under platform/ (no subfolders)
- AI Hub components moved from meta-platforms/ai-hub/components/ to platform/
- Open Banking components (lago, openmeter) moved to platform/
- meta-platforms/ now only contains README files that reference platform/
- Open Banking custom services remain in meta-platforms/open-banking/services/

Structure:
- platform/ (41 components, flat)
- meta-platforms/ai-hub/ (README only, references platform/)
- meta-platforms/open-banking/ (README + 6 custom services)

All documentation links updated.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-08 15:19:48 +00:00
..
README.md refactor: flatten platform/ structure (41 components) 2026-02-08 15:19:48 +00:00

Redpanda

Kafka-compatible event streaming for OpenOva platform.

Status: Accepted | Updated: 2026-01-17


Overview

Redpanda provides Kafka-compatible event streaming:

  • Drop-in Kafka replacement
  • Lower resource footprint
  • MirrorMaker2 for cross-region replication
  • Debezium integration for CDC

Architecture

Single Region

flowchart TB
    subgraph Redpanda["Redpanda Cluster"]
        RP1[Broker 1]
        RP2[Broker 2]
        RP3[Broker 3]
    end

    subgraph Producers
        Debezium[Debezium CDC]
        Apps[Applications]
    end

    subgraph Consumers
        Workers[Workers]
        OpenMeter[OpenMeter]
    end

    Debezium --> RP1
    Apps --> RP2
    RP1 --> Workers
    RP2 --> OpenMeter

Multi-Region (MirrorMaker2)

flowchart TB
    subgraph Region1["Region 1"]
        RP1[Redpanda]
        MM1[MirrorMaker2]
    end

    subgraph Region2["Region 2"]
        RP2[Redpanda]
        MM2[MirrorMaker2]
    end

    RP1 -->|"Mirror"| MM1
    MM1 --> RP2
    RP2 -->|"Mirror"| MM2
    MM2 --> RP1

Why Redpanda

Factor Redpanda Kafka
Resource usage Lower (no JVM) Higher
Latency Lower Higher
Operations Simpler Complex ZooKeeper
Compatibility 100% Kafka API Native
License BSL → Apache 2.0 Apache 2.0

Configuration

Redpanda Cluster

apiVersion: cluster.redpanda.com/v1alpha1
kind: Cluster
metadata:
  name: redpanda
  namespace: databases
spec:
  image: "docker.redpanda.com/redpandadata/redpanda:v24.1.1"
  replicas: 3
  resources:
    requests:
      cpu: 1
      memory: 2Gi
    limits:
      cpu: 2
      memory: 4Gi
  storage:
    capacity: 100Gi
    storageClassName: <storage-class>
  configuration:
    group: kafka
    name: cluster
    value:
      auto.create.topics.enable: "false"
      default.replication.factor: "3"
      min.insync.replicas: "2"

MirrorMaker2 Configuration

apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaMirrorMaker2
metadata:
  name: mm2
  namespace: databases
spec:
  version: 3.6.0
  replicas: 2
  connectCluster: "region2"
  clusters:
    - alias: "region1"
      bootstrapServers: redpanda.region1.<domain>:9092
      tls: {}
    - alias: "region2"
      bootstrapServers: redpanda.databases.svc:9092
  mirrors:
    - sourceCluster: "region1"
      targetCluster: "region2"
      sourceConnector:
        config:
          replication.factor: 3
          offset-syncs.topic.replication.factor: 3
          heartbeats.topic.replication.factor: 3
          checkpoints.topic.replication.factor: 3
          sync.topic.acls.enabled: "false"
      topicsPattern: ".*"
      groupsPattern: ".*"

Topics

Topic Pattern Purpose Retention
cdc.mongodb.* MongoDB CDC events 7 days
events.* Application events 7 days
openmeter.* Usage metering 30 days

Monitoring

Metric Description
redpanda_kafka_request_latency_seconds Request latency
redpanda_kafka_partitions_with_under_replicated Under-replicated partitions
redpanda_cluster_topics Topic count
kafka_consumer_group_lag Consumer lag

Debezium Integration

Redpanda serves as the transport layer for CDC:

flowchart LR
    MongoDB[MongoDB] -->|"CDC"| Debezium[Debezium]
    Debezium --> Redpanda[Redpanda]
    Redpanda --> Sink[Sink Connector]
    Sink --> MongoDBDR[MongoDB DR]

Part of OpenOva