Tutorials and Examples with ksqlDB for Confluent Platform¶
Confluent provides many resources for learning how to create ksqlDB applications.
- ksqlDB quick starts: If you’re new to streaming data technology, start with these.
- ksqlDB blog posts: Official Confluent blog posts on ksqlDB.
- Confluent developer courses: Created by devs for devs.
- Confluent demos on Gitpod: Confluent tutorials running on Gitpod.
- Common use cases: Frequently encountered ksqlDB use cases, like materializing a view.
- ksqlDB videos: The latest videos about Confluent Platform ksqlDB and Confluent Cloud ksqlDB.
ksqlDB quick starts¶
- Confluent Platform Quick Start: Demonstrates a simple workflow using ksqlDB to write streaming queries against messages in Apache Kafka®. You can deploy locally or with Docker.
- Confluent Cloud Quick Start: Run ksqlDB in a fully managed environment.
ksqlDB blog posts¶
- Is Apache Kafka a Database? With ksqlDB, Most Definitely
- Real-Time Gaming Infrastructure for Millions of Users with Apache Kafka, ksqlDB, and WebSockets
- Data Enrichment in Existing Data Pipelines Using Confluent Cloud
- Serverless Stream Processing with Apache Kafka, Azure Functions, and ksqlDB
- Apache Kafka at Home: A Houseplant Alerting System with ksqlDB
- Introduction to Streaming Data Pipelines with Apache Kafka and ksqlDB
- A Guide to Stream Processing and ksqlDB Fundamentals
- Intrusion Detection with ksqlDB
- How Real-Time Stream Processing Safely Scales with ksqlDB, Animated
Confluent developer courses¶
- ksqlDB 101: This course covers ksqlDB architecture, how ksqlDB works, and typical use cases, with examples.
- Inside ksqlDB: This advanced ksqlDB course shows you how to read, write, process, and transform data using common queries and functions in SQL.
Confluent demos on Gitpod¶
- Gitpod: Confluent Platform Demo: Confluent’s showcase demo running on Gitpod. Explore Confluent Platform on your mobile devices.
Common use cases¶
Use ksqlDB to implement solutions for these common use cases.
Materialized view/cache¶
- Materialized view/cache: Create and query a set of materialized views about phone calls made to a call center. This tutorial demonstrates capturing changes from a MySQL database, forwarding them into Kafka, creating materialized views with ksqlDB, and querying them from your applications.
Streaming ETL pipeline¶
- Streaming ETL pipeline: Create a streaming ETL pipeline that ingests and joins events together to create a cohesive view of orders that have shipped. This tutorial demonstrates capturing changes from Postgres and MongoDB databases, forwarding them into Kafka, joining them together with ksqlDB, and sinking them out to ElasticSearch for analytics.
- Confluent Platform demo: Deploy a Kafka streaming ETL that uses ksqlDB for stream processing. All components in the Confluent Platform demo have encryption, authentication, and authorization configured end-to-end.
- Use Case: Streaming ETL: Confluent makes it easy to gain real-time insights by moving from batch to streaming ETL through scalable, performant, and cloud-native data pipelines. Ingest, aggregate, and transform data streams in-flight from any system, application, or device at any scale and across any environment, to power real-time analytics use cases.
Event-driven microservice¶
- Event-driven microservice: Create an event-driven microservice that identifies suspicious activity and notifies customers. This tutorial demonstrates finding anomalies with ksqlDB and sending alert emails using a simple Kafka consumer with SendGrid.
- Use Case: Event Driven Microservices: Completely decouple your architecture and eliminate interservice dependencies so developers can build business logic faster. Build a new class of highly scalable event-driven microservices that are resilient in design and contextually aware.
Clickstream data analysis pipeline¶
- Create Clickstream Data Analysis Pipeline Using ksqlDB in Confluent Platform: The tutorial uses standard streaming functions,
like
min
andmax
, and enrichment using child tables, stream-table join, and different types of windowing functionality.
Clickstream analysis is the process of collecting, analyzing, and reporting aggregate data about which pages a website visitor visits and in what order. The path the visitor takes though a website is called the clickstream.
This tutorial focuses on building real-time analytics of users to determine:
- General website analytics, such as hit count and visitors
- Bandwidth use
- Mapping user-IP addresses to actual users and their location
- Detection of high-bandwidth user sessions
- Error-code occurrence and enrichment
- Sessionization to track user-sessions and understand behavior, like per-user-session-bandwidth and per-user-session-hits
If you don’t have Docker, you can run an automated version of the Clickstream tutorial designed for local Confluent Platform installs. Running the Clickstream demo locally without Docker requires that you have Confluent Platform installed locally, along with Elasticsearch and Grafana.
ksqlDB how-to guides¶
How-to Guides provide compact lessons that help you work with common ksqlDB functionality, for example:
ksqlDB recipes¶
- ksqlDB recipes and Kafka Tutorials include code and step-by-step instructions for building ksqlDB and Kafka applications.
ksqlDB videos¶
See the latest videos on Confluent Platform ksqlDB and Confluent Cloud ksqlDB at the Confluent YouTube channel.
Video | Description |
---|---|
Flink vs Kafka Streams/ksqlDB | Jeff Bean and Matthias Sax compare stream processing tools. |
Build a Plant Monitoring System with ksqlDB | Robin Moffatt’s quick videos about ksqlDB, based on demo scripts that you can run for yourself. |
Apache Kafka 101: ksqlDB | Tim Berglund provides a gentle introduction to ksqlDB concepts and queries. |
Confluent Cloud Quick Start, ksqlDB, and Project Reactor (Redux) | Viktor Gamov provisions Kafka, Connect, and ksqlDB clusters in Confluent Cloud and accesses them with the ksqlDB Reactor client. |
Demo: The Event Streaming Database in Action | Tim Berglund builds a movie rating system with ksqlDB to write movie records into a Kafka topic. |
Demo: Seamless Stream Processing with Kafka Connect & ksqlDB | Set up and build ksqlDB applications using the AWS source, Azure sink, and MongoDB source connectors in Confluent Cloud. |
Introduction to ksqlDB and stream processing | Vish Srinivasan talks Kafka stream processing fundamentals and discusses ksqlDB. |
Ask Confluent #16: ksqlDB edition | Gwen Shapira hosts Vinoth Chandar in a wide-ranging talk on ksqlDB. |
An introduction to ksqlDB | Robin Moffatt describes how ksqlDB helps you build scalable and fault-tolerant stream processing systems. |
ksqlDB and the Kafka Connect JDBC Sink | Robin Moffatt demonstrates how to use ksqlDB with the Connect JDBC sink. |
How to Transform a Stream of Events Using ksqlDB | Viktor Gamov demonstrates how to transform a stream of movie data. |
ksqlDB Java Client and Confluent Cloud | Viktor Gamov takes the ksqlDB Java client for a spin and tests it against Confluent Cloud. |
Recommended Resources¶
- Confluent Resources: Videos, presentations, white papers, and more.