streaming-data
Build event streaming and real-time data pipelines with Kafka, Pulsar, Redpanda, Flink, and Spark. Covers producer/consumer patterns, stream processing, event sourcing, and CDC across TypeScript, Python, Go, and Java. When building real-time systems, microservices communication, or data integration pipelines.
What this skill does
# 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 - references/broker-selection.md - Kafka vs Pulsar vs Redpanda comparison - references/processor-selection.md - Flink vs Spark vs Kafka Streams - references/delivery-guarantees.md - At-least-once, exactly-once patterns ### Language-Specific Implementation - references/typescript-patterns.md - KafkaJS patterns (producer, consumer, error handling) - references/python-patterns.md - confluent-kafka-python patterns - references/go-patterns.md - kafka-go patterns - references/java-patterns.md - Apache Kafka Java client patterns ### Advanced Topics - references/event-sourcing.md - Event sourcing architecture - references/cdc-patterns.md - Change Data Capture with Debezium - references/exactly-once.md - Transactional processing - references/error-handling.md - DLQ, retries, backpressure - references/performance-tuning.md - Throughput optimization, partitioning strategies ## Validation Scripts Run these scripts for token-free validation and generation: ### Validate Kafka Configuration ```bash python scripts/validate-kafka-config.py --config producer.yaml python scripts/validate-kafka-config.py --config consumer.yaml ``` Checks: broker connectivity, configuration validity, serialization format ### Generate Schema Registry Templates ```bash python scripts/generate-schema.py --type avro --entity User python scripts/generate-schema.py --type protobuf --entity Event ``` Creates: Avro/Protobuf schema definitions for Schema Registry ### Benchmark Throughput ```bash bash scripts/benchmark-throughput.sh --broker localhost:9092 --topic test ``` Tests: Producer/consumer throughput, latency percentiles ## Code Examples ### TypeScript Example (KafkaJS) See examples/typescript/ for: - basic-producer.ts - Simple event producer with error handling - basic-consumer.ts - Consumer with manual offset commits - transactional-producer.ts - Exactly-once producer pattern - consumer-with-dlq.ts - Dead letter queue implementation ### Python Example (confluent-kafka-python) See examples/python/
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.