Enhance your career, get your certificate as a Data Streaming Engineer | Get your Certificate
If you have a stream of events in a Kafka topic and wish to transform a field in each event, you an use ksqlDB's scalar functions or implement your own scalar UDF if your needs aren't met by the built-in functions.
As a concrete example, consider a stream containing events that represent movies.
CREATE STREAM movies (id INT KEY, title VARCHAR, genre VARCHAR)
WITH (KAFKA_TOPIC='movies',
PARTITIONS=1,
VALUE_FORMAT='AVRO');Each event has a title attribute that combines its title and its release year into a string, e.g., Inside Out 2::2024.
Given the stream of movies, we can break the title field into separate attributes for the title and release year using the SPLIT function. CAST is also used to convert the resulting release year's data type from string to integer.
SELECT id,
SPLIT(title, '::')[1] AS title,
CAST(SPLIT(title, '::')[2] AS INT) AS year,
genre
FROM movies
EMIT CHANGES;Clone the confluentinc/tutorials GitHub repository (if you haven't already) and navigate to the tutorials directory:
git clone git@github.com:confluentinc/tutorials.git
cd tutorialsStart ksqlDB and Kafka:
docker compose -f ./docker/docker-compose-ksqldb.yml up -dNext, open the ksqlDB CLI:
docker exec -it ksqldb-cli ksql http://ksqldb-server:8088Run the following SQL statements to create the movies stream backed by Kafka running in Docker and populate it with test data.
CREATE STREAM movies (id INT KEY, title VARCHAR, genre VARCHAR)
WITH (KAFKA_TOPIC='movies',
PARTITIONS=1,
VALUE_FORMAT='AVRO');INSERT INTO movies (id, title, genre) VALUES (1, 'Twisters::2024', 'drama');
INSERT INTO movies (id, title, genre) VALUES (2, 'Unfrosted::2024', 'comedy');
INSERT INTO movies (id, title, genre) VALUES (3, 'Family Switch::2023', 'comedy');Next, run the event transformation query to split the title field into the actual movie title and release year. Note that we first tell ksqlDB to consume from the beginning of the stream.
SET 'auto.offset.reset'='earliest';
SELECT id,
SPLIT(title, '::')[1] AS title,
CAST(SPLIT(title, '::')[2] AS INT) AS year,
genre
FROM movies
EMIT CHANGES;The query output should look like this:
+---------------------+---------------------+---------------------+---------------------+
|ID |TITLE |YEAR |GENRE |
+---------------------+---------------------+---------------------+---------------------+
|1 |Twisters |2024 |drama |
|2 |Unfrosted |2024 |comedy |
|3 |Family Switch |2023 |comedy |
+---------------------+---------------------+---------------------+---------------------+When you are finished, exit the ksqlDB CLI by entering CTRL-D and clean up the containers used for this tutorial by running:
docker compose -f ./docker/docker-compose-ksqldb.yml down