What problem does it solve? Building reliable streaming pipelines on Databricks requires navigating checkpoint management, trigger selection, stateful operations, joins, and multi-sink writes, where misconfiguration causes data loss, duplicates, or runaway costs. ## Core Features & Use Cases - Kafka Streaming Patterns: Ingest Kafka topics into Delta bronze layers, build Kafka-to-Kafka enrichment pipelines, and route events across multiple topics with DLQ validation. - Real-Time Mode (RTM): Configure sub-second latency streaming with correct cluster setup, slot math, supported operators, and error-class troubleshooting. - Stateful Operations & Checkpoints: Manage watermarks, state stores, checkpoint recovery, and exactly-once semantics with idempotent Delta writes. - Multi-Sink & Merge Operations: Fan out one stream to bronze/silver/gold tables, run parallel MERGE upserts, and write to Lakebase Postgres with transactional upserts. - Use Case: A data engineer needs a Kafka-to-Delta pipeline with deduplication, a 30-second trigger, and a persistent checkpoint on a Unity Catalog volume; this Skill provides the complete pattern plus a production checklist. ## Quick Start Ask the agent to create a Spark Structured Streaming pipeline that reads from a Kafka topic and writes to a Delta table with checkpointing and a processing-time trigger.