streaming-data
This skill provides production-ready patterns and architectural guidance for building event-driven systems using message brokers like Kafka, Pulsar, and Redpanda alongside stream processors such as Flink and Spark. Use it when implementing real-time data pipelines, microservices communication, CDC systems, analytics platforms, or any application requiring asynchronous event processing across TypeScript, Python, Go, and Java environments.
git clone --depth 1 https://github.com/ancoleman/ai-design-components /tmp/streaming-data && cp -r /tmp/streaming-data/skills/streaming-data ~/.claude/skills/streaming-dataSKILL.md
# Streaming Data Processing Build production-ready event streaming systems and real-time data pipelines using modern message brokers and stream processors. ## When to Use This Skill Use this skill when: - Building event-driven architectures and microservices communication - Processing real-time analytics, monitoring, or alerting systems - Implementing data integration pipelines (CDC, ETL/ELT) - Creating log or metrics aggregation systems - Developing IoT platforms or high-frequency trading systems ## Core Concepts ### Message Brokers vs Stream Processors **Message Brokers** (Kafka, Pulsar, Redpanda): - Store and distribute event streams - Provide durability, replay capability, partitioning - Handle producer/consumer coordination **Stream Processors** (Flink, Spark, Kafka Streams): - Transform and aggregate streaming data - Provide windowing, joins, stateful operations - Execute complex event processing (CEP) ### Delivery Guarantees **At-Most-Once**: - Messages may be lost, no duplicates - Lowest overhead - Use for: Metrics, logs where loss is acceptable **At-Least-Once**: - Messages never lost, may have duplicates - Moderate overhead, requires idempotent consumers - Use for: Most applications (default choice) **Exactly-Once**: - Messages never lost or duplicated - Highest overhead, requires transactional processing - Use for: Financial transactions, critical state updates ## Quick Start Guide ### Step 1: Choose a Message Broker See references/broker-selection.md for detailed comparison. **Quick decision**: - **Apache Kafka**: Mature ecosystem, enterprise features, event sourcing - **Redpanda**: Low latency, Kafka-compatible, simpler operations (no ZooKeeper) - **Apache Pulsar**: Multi-tenancy, geo-replication, tiered storage - **RabbitMQ**: Traditional message queues, RPC patterns ### Step 2: Choose a Stream Processor (if needed) See references/processor-selection.md for detailed comparison. **Quick decision**: - **Apache Flink**: Millisecond latency, real-time analytics, CEP - **Apache Spark**: Batch + stream hybrid, ML integration, analytics - **Kafka Streams**: Embedded in microservices, no separate cluster - **ksqlDB**: SQL interface for stream processing ### Step 3: Implement Producer/Consumer Patterns Choose language-specific guide: - TypeScript/Node.js: references/typescript-patterns.md (KafkaJS) - Python: references/python-patterns.md (confluent-kafka-python) - Go: references/go-patterns.md (kafka-go) - Java/Scala: references/java-patterns.md (Apache Kafka Java Client) ## Common Patterns ### Basic Producer Pattern Send events to a topic with error handling: ``` 1. Create producer with broker addresses 2. Configure delivery guarantees (acks, retries, idempotence) 3. Send messages with key (for partitioning) and value 4. Handle delivery callbacks or errors 5. Flush and close producer on shutdown ``` ### Basic Consumer Pattern Process events from topics with offset management: ``` 1. Create consumer with broker addresses and group ID 2. Subscribe to topics 3. Poll for messages 4. Process each message 5. Commit offsets (auto or manual) 6. Handle errors (retry, DLQ, skip) 7. Close consumer gracefully ``` ### Error Handling Strategy For production systems, implement: - **Dead Letter Queue (DLQ)**: Send failed messages to separate topic - **Retry Logic**: Configurable retry attempts with backoff - **Graceful Shutdown**: Finish processing, commit offsets, close connections - **Monitoring**: Track consumer lag, error rates, throughput ## Decision Frameworks ### Framework: Message Broker Selection ``` START: What are requirements? 1. Need Kafka API compatibility? YES → Kafka or Redpanda NO → Continue 2. Is multi-tenancy critical? YES → Apache Pulsar NO → Continue 3. Operational simplicity priority? YES → Redpanda (single binary, no ZooKeeper) NO → Continue 4. Mature ecosystem needed? YES → Apache Kafka NO → Redpanda (better performance) 5. Task queues (not event streams)? YES → RabbitMQ or message-queues skill NO → Kafka/Redpanda/Pulsar ``` ### Framework: Stream Processor Selection ``` START: What is latency requirement? 1. Millisecond-level latency needed? YES → Apache Flink NO → Continue 2. Batch + stream in same pipeline? YES → Apache Spark Streaming NO → Continue 3. Embedded in microservice? YES → Kafka Streams NO → Continue 4. SQL interface for analysts? YES → ksqlDB NO → Flink or Spark 5. Python primary language? YES → Spark (PySpark) or Faust NO → Flink (Java/Scala) ``` ### Framework: Language Selection **TypeScript/Node.js**: - API gateways, web services, real-time dashboards - KafkaJS library (827 code snippets, high reputation) **Python**: - Data science, ML pipelines, analytics - confluent-kafka-python (192 snippets, score 68.8) **Go**: - High-performance microservices, infrastructure tools - kafka-go (42 snippets, idiomatic Go) **Java/Scala**: - Enterprise applications, Kafka Streams, Flink, Spark - Apache Kafka Java Client (683 snippets, score 76.9) ## Advanced Patterns ### Event Sourcing Store state changes as immutable events. See references/event-sourcing.md for: - Event store design patterns - Event schema evolution - Snapshot strategies - Temporal queries and audit trails ### Change Data Capture (CDC) Capture database changes as events. See references/cdc-patterns.md for: - Debezium integration (MySQL, PostgreSQL, MongoDB) - Real-time data synchronization - Microservices data integration patterns ### Exactly-Once Processing Implement transactional guarantees. See references/exactly-once.md for: - Idempotent producers - Transactional consumers - End-to-end exactly-once pipelines ### Error Handling Production-grade error management. See references/error-handling.md for: - Dead letter queue patterns - Retry strategies with exponential backoff - Backpressure handling - Circuit breakers for downstream failures ## Reference Files ### Decision Guides - referen
Manage Linux systems covering systemd services, process management, filesystems, networking, performance tuning, and troubleshooting. Use when deploying applications, optimizing server performance, diagnosing production issues, or managing users and security on Linux servers.
Data pipelines, feature stores, and embedding generation for AI/ML systems. Use when building RAG pipelines, ML feature serving, or data transformations. Covers feature stores (Feast, Tecton), embedding pipelines, chunking strategies, orchestration (Dagster, Prefect, Airflow), dbt transformations, data versioning (LakeFS), and experiment tracking (MLflow, W&B).
Strategic guidance for designing modern data platforms, covering storage paradigms (data lake, warehouse, lakehouse), modeling approaches (dimensional, normalized, data vault, wide tables), data mesh principles, and medallion architecture patterns. Use when architecting data platforms, choosing between centralized vs decentralized patterns, selecting table formats (Iceberg, Delta Lake), or designing data governance frameworks.
Design cloud network architectures with VPC patterns, subnet strategies, zero trust principles, and hybrid connectivity. Use when planning VPC topology, implementing multi-cloud networking, or establishing secure network segmentation for cloud workloads.
Design comprehensive security architectures using defense-in-depth, zero trust principles, threat modeling (STRIDE, PASTA), and control frameworks (NIST CSF, CIS Controls, ISO 27001). Use when designing security for new systems, auditing existing architectures, or establishing security governance programs.
Assembles component outputs from AI Design Components skills into unified, production-ready component systems with validated token integration, proper import chains, and framework-specific scaffolding. Use as the capstone skill after running theming, layout, dashboard, data-viz, or feedback skills to wire components into working React/Next.js, Python, or Rust projects.
Builds AI chat interfaces and conversational UI with streaming responses, context management, and multi-modal support. Use when creating ChatGPT-style interfaces, AI assistants, code copilots, or conversational agents. Handles streaming text, token limits, regeneration, feedback loops, tool usage visualization, and AI-specific error patterns. Provides battle-tested components from leading AI products with accessibility and performance built in.
Constructs secure, efficient CI/CD pipelines with supply chain security (SLSA), monorepo optimization, caching strategies, and parallelization patterns for GitHub Actions, GitLab CI, and Argo Workflows. Use when setting up automated testing, building, or deployment workflows.