.. _ksql_tutorials: KSQL Tutorials and Examples =========================== .. toctree:: :hidden: basics-docker basics-local basics-control-center clickstream-docker generate-custom-test-data connect-integration examples KSQL Basics *********** This tutorial demonstrates a simple workflow using KSQL to write streaming queries against messages in |ak-tm|. Write Streaming Queries with the KSQL CLI ----------------------------------------- .. include:: ../includes/ksql-includes.rst :start-after: CLI_welcome_start :end-before: CLI_welcome_end Get started with the KSQL CLI: - :ref:`ksql_quickstart-docker` - :ref:`ksql_quickstart-local` Write Streaming Queries with KSQL and |c3| ------------------------------------------ .. image:: ../../../images/ksql-interface-create-stream.png :width: 600px Get started with KSQL and |c3|: - |c3-short| :ref:`deployed with Docker ` - |c3-short| :ref:`deployed locally ` Stream Processing Cookbook ************************** The `Stream Processing Cookbook `__ contains KSQL recipes that provide in-depth tutorials and recommended deployment scenarios. Clickstream Data Analysis Pipeline ********************************** 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 (such as per-user-session-bandwidth, per-user-session-hits etc) The tutorial uses standard streaming functions (i.e., min, max, etc) and enrichment using child tables, stream-table join, and different types of windowing functionality. Get started now with these instructions: - :ref:`ksql_clickstream-docker` If you do not have Docker, you can also 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. KSQL Examples ************* :ref:`These examples ` provide common KSQL usage operations. .. include:: ../../../includes/connect-streams-pipeline-link.rst :start-line: 2 :end-line: 6 KSQL in a Kafka Streaming ETL ***************************** To learn how to deploy a Kafka streaming ETL using KSQL for stream processing, you can run the :ref:`Confluent Platform demo`. All components in the |cp| demo have encryption, authentication, and authorization configured end-to-end. Level Up Your KSQL Videos ************************* +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | Video | Description | +==============================================================================================+==================================================================================+ | `KSQL Introduction `_ | Intro to Kafka stream processing, with a focus on KSQL. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `KSQL Use Cases `_ | Describes several KSQL uses cases, like data exploration, arbitrary filtering, | | | streaming ETL, anomaly detection, and real-time monitoring. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `KSQL and Core Kafka `_ | Describes KSQL dependency on core Kafka, relating KSQL to clients, and describes | | | how KSQL uses Kafka topics. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Installing and Running KSQL `_ | How to get KSQL, configure and start the KSQL server, and syntax basics. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `KSQL Streams and Tables `_ | Explains the difference between a STREAM and TABLE, shows a detailed example, | | | and explains how streaming queries are unbounded. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Reading Kafka Data from KSQL `_ | How to explore Kafka topic data, create a STREAM or TABLE from a Kafka topic, | | | identify fields. Also explains metadata like ROWTIME and TIMESTAMP, and covers | | | different formats like Avro, JSON, and Delimited. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Streaming and Unbounded Data in KSQL `_ | More detail on streaming queries, how to read topics from the beginning, the | | | differences between persistent and non-persistent queries, how do streaming | | | queries end. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Enriching data with KSQL `_ | Scalar functions, changing field types, filtering data, merging data with JOIN, | | | and rekeying streams. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Aggregations in KSQL `_ | How to aggregate data with KSQL, different types of aggregate functions like | | | COUNT, SUM, MAX, MIN, TOPK, etc, and windowing and late-arriving data. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Taking KSQL to Production `_ | How to use KSQL in streaming ETL pipelines, scale query processing, isolate | | | workloads, and secure your entire deployment. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Insert Into `_ | A brief tutorial on how to use INSERT INTO in KSQL by Confluent. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Struct (Nested Data) `_ | A brief tutorial on how to use STRUCT in KSQL by Confluent. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Stream-Stream Joins `_ | A short tutorial on stream-stream joins in KSQL by Confluent. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Table-Table Joins `_ | A short tutorial on table-table joins in KSQL by Confluent. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+ | `Monitoring KSQL in Confluent Control Center `_ | Monitor performance and end-to-end message delivery of your KSQL queries. | +----------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+