ksqlDB Schema Inference with Schema Registry for Confluent Platform
Schema Inference is a ksqlDB feature that automatically loads schema definitions from Schema Registry using schema IDs, eliminating the need to manually define columns and data types in CREATE statements.
Schema Inference allows ksqlDB to automatically load schema definitions from
Confluent Schema Registry using explicit schema IDs. When you specify a KEY_SCHEMA_ID or
VALUE_SCHEMA_ID in CREATE statements, ksqlDB retrieves the registered schema
by its ID, eliminating
the need to manually define columns and data types. This helps ensure data serialization matches the
exact physical schema stored in Schema Registry, making output compatible with downstream systems.
Schema Inference works with Avro, Protobuf,
and JSON Schema formats and requires Schema Registry integration to be configured in ksqlDB.
For supported formats that ksqlDB can integrate with Schema Registry, see Serialization Formats.
Before using schema inference in ksqlDB, make sure that the Schema Registry is up and running and ksqlDB is configured to use it.
Schema Inference enables the following capabilities in ksqlDB:
Declare streams and tables on Kafka topics with supported key and value formats by using
CREATE STREAMandCREATE TABLEstatements, without needing to declare the key and/or value columns.Declare derived views with
CREATE STREAM AS SELECTandCREATE TABLE AS SELECTstatements. The schema of the view is registered in Schema Registry automatically.Convert data to different formats with
CREATE STREAM AS SELECTandCREATE TABLE AS SELECTstatements, by declaring the required output format in theWITHclause. For example, you can convert a stream from Avro to JSON.
If you’re declaring a stream or table with a key format that’s different from its value format, and only one of the two formats supports schema inference, you can explicitly provide the columns for the format that does not support schema inference while still having ksqlDB load columns for the format that does support schema inference from Schema Registry. This is known as partial schema inference. To infer value columns for a keyless stream, set the key format to the NONE format.
Tables require a PRIMARY KEY, so you must supply one explicitly in
your CREATE TABLE statement. KEY columns are optional for
streams, so if you don’t supply one the stream is created without a key
column.
The following example statements show how to create streams and tables
that have Avro-formatted data. If you want to use Protobuf- or
JSON-formatted data, substitute PROTOBUF, JSON or JSON_SR
for AVRO in each statement.
Note
ksqlDB handles the JSON and JSON_SR formats differently. While the
JSON format is capable of reading the schema from Schema Registry, JSON_SR
both reads and registers new schemas, as necessary.
Create a new stream
Creating a stream with schema inference registers a ksqlDB stream on a Kafka topic and automatically infers column definitions from the schema registered in Schema Registry. The following sections describe how to create a new stream either without or with a key column, and with partial schema inference. The same concepts apply to creating a new table, as described in the next section.
Without a key column
A stream without a key column infers only the value schema from Schema Registry and creates a keyless stream. The following statement shows how to create a new pageviews stream
by reading from a Kafka topic that has Avro-formatted message
values.
CREATE STREAM pageviews
WITH (
KAFKA_TOPIC='pageviews-avro-topic',
VALUE_FORMAT='AVRO'
);
In this example, you don’t need to define any columns in the CREATE
statement. ksqlDB infers this information automatically from the latest
registered schema for the pageviews-avro-topic topic. ksqlDB uses
the most recent schema at the time the statement is first executed.
Important
The schema must be registered in Schema Registry under the subject
pageviews-avro-topic-value.
With a key column
A stream with a key column infers both key and value schemas from Schema Registry, creating a stream with a defined key. The following statement shows how to create a new pageviews stream
by reading from a Kafka topic that has Avro-formatted key and
message values.
CREATE STREAM pageviews WITH (
KAFKA_TOPIC='pageviews-avro-topic',
KEY_FORMAT='AVRO',
VALUE_FORMAT='AVRO'
);
In the previous example, ksqlDB infers the key and value columns
automatically from the latest registered schemas for the
pageviews-avro-topic topic. ksqlDB uses the most recent schemas at
the time the statement is first executed.
Note
The key and value schemas must be registered in Schema Registry under the subjects
pageviews-avro-topic-key and pageviews-avro-topic-value,
respectively.
With partial schema inference
Partial schema inference occurs when you explicitly define columns for one format (such as a KAFKA-formatted key) while ksqlDB infers columns for another format (such as an Avro-formatted value) from Schema Registry. The following statement shows how to create a new pageviews stream
by reading from a Kafka topic that has Avro-formatted message
values and a KAFKA-formatted INT message key.
CREATE STREAM pageviews (
pageId INT KEY
) WITH (
KAFKA_TOPIC='pageviews-avro-topic',
KEY_FORMAT='KAFKA',
VALUE_FORMAT='AVRO'
);
In the previous example, only the key column is supplied in the CREATE
statement. ksqlDB infers the value columns automatically from the latest
registered schema for the pageviews-avro-topic topic. ksqlDB uses
the most recent schema at the time the statement is first executed.
The schema must be registered in Schema Registry under the subject pageviews-avro-topic-value.
Create a new table
Creating a table with schema inference registers a ksqlDB table on a Kafka topic and automatically infers column definitions from schemas in Schema Registry. Tables require a PRIMARY KEY, which you must explicitly define in your CREATE TABLE statement.
With key and value schema inference
The following statement shows how to create a new users table by
reading from a Kafka topic that has Avro-formatted key and message
values.
CREATE TABLE users (
userId BIGINT PRIMARY KEY
) WITH (
KAFKA_TOPIC='users-avro-topic',
KEY_FORMAT='AVRO',
VALUE_FORMAT='AVRO'
);
In the previous example, ksqlDB infers the key and value columns
automatically from the latest registered schemas for the
users-avro-topic topic. ksqlDB uses the most recent schemas at the
time the statement is first executed.
In this example, the key and value schemas must be registered in Schema Registry under the subjects
users-avro-topic-key and users-avro-topic-value, respectively.
With partial schema inference
The following statement shows how to create a new users table by
reading from a Kafka topic that has Avro-formatted message values
and a KAFKA-formatted BIGINT message key.
CREATE TABLE users (
userId BIGINT PRIMARY KEY
) WITH (
KAFKA_TOPIC='users-avro-topic',
KEY_FORMAT='KAFKA',
VALUE_FORMAT='AVRO'
);
In the previous example, only the key column is supplied in the CREATE
statement. ksqlDB infers the value columns automatically from the latest
registered schema for the users-avro-topic topic. ksqlDB uses the
most recent schema at the time the statement is first executed.
In this example, the schema must be registered in Schema Registry under the subject
users-avro-topic-value.
Create a new source with selected columns
If you want to create a STREAM or TABLE that has only a subset of the available fields in the Avro schema, you must explicitly define the columns.
The following statement shows how to create a new pageviews_reduced
stream, which is similar to the previous example, but with only a few of
the available fields in the Avro data. In this example, only the
viewtime and url value columns are picked.
CREATE STREAM pageviews_reduced (
viewtime BIGINT,
url VARCHAR
) WITH (
KAFKA_TOPIC='pageviews-avro-topic',
VALUE_FORMAT='AVRO'
);
Declaring a derived view
A derived view is a materialized stream or table created from an existing source using a CREATE AS SELECT statement. The following statement shows how to create a materialized view derived
from an existing source. The Kafka topic that the view is
materialized to inherits the value format of the source, unless it’s
overridden explicitly in the WITH clause, as shown. The value schema
is registered with Schema Registry if the value format supports the
integration, with the exception of the JSON format, which only
reads from Schema Registry.
CREATE TABLE pageviews_by_url
WITH (
VALUE_FORMAT='AVRO'
) AS
SELECT
url,
COUNT(*) AS VIEW_COUNT
FROM pageviews
GROUP BY url;
Note
The value schema will be registered in Schema Registry under the subject
PAGEVIEWS_BY_URL-value.
Converting formats
Format conversion transforms data from one serialization format to another (such as JSON to Avro) using CREATE AS SELECT statements. ksqlDB enables you to change the underlying key and value formats of streams and tables. This means that you can easily mix and match streams and tables with different data formats and also convert between formats. For example, you can join a stream backed by Avro data with a table backed by JSON data.
The example below converts a topic into JSON-formatted values into Avro.
Only the VALUE_FORMAT is required to achieve the data conversion.
ksqlDB generates an appropriate Avro schema for the new
PAGEVIEWS_AVRO stream automatically and registers the schema with
Schema Registry.
CREATE STREAM pageviews_json (
pageid VARCHAR KEY,
viewtime BIGINT,
userid VARCHAR
) WITH (
KAFKA_TOPIC='pageviews_kafka_topic_json',
VALUE_FORMAT='JSON'
);
CREATE STREAM pageviews_avro
WITH (VALUE_FORMAT = 'AVRO') AS
SELECT * FROM pageviews_json;
In this example, Schema Registry registers the value schema under the subject
PAGEVIEWS_AVRO-value.
For more information, see Changing Data Serialization Format from JSON to Avro in the Stream Processing Cookbook.
You can convert between different key formats in an analogous manner by
specifying the KEY_FORMAT property instead of VALUE_FORMAT.
Schema inference details
Schema inference translates physical schemas stored in Schema Registry into logical schemas used by ksqlDB, with specific rules for different data types and formats. The schema in Schema Registry is a “physical schema”, and the schema in
ksqlDB is a “logical schema”. The physical schema, not the logical
schema, is registered under the subject <topic-name>-key or
<topic-name>-value if a corresponding key schema or value schema is
inferred.
Schema inference schema requirements
Schema inference requires the physical schema in Schema Registry to match specific type expectations based on the WRAP_SINGLE_VALUE setting. If WRAP_SINGLE_VALUE is set to true in the SQL statement, the
physical schema is expected to be a struct type, and the field names
are used as data source column names. Field types are inferred from
corresponding column data types.
In
AVRO, thestructtype corresponds with therecordtype.In
PROTOBUFthestructtype corresponds with themessagetype.In
JSON_SR, thestructtype corresponds with theobjecttype.
In the following examples, the AVRO schema string in Schema Registry is a
single-line raw string without newline characters (\n). The strings
are shown as human-readable text for convenience.
For example, the following a physical schema is in AVRO format and
is registered with Schema Registry under subject pageviews-value:
{
"schema": {
"type": "record",
"name": "PageViewValueSchema",
"namespace": "io.confluent.ksql.avro_schemas",
"fields": [
{
"name": "page_name",
"type": "string",
"default": "abc"
},
{
"name": "ts",
"type": "int",
"default": 123
}
]
}
}
The following CREATE statement defines a stream on the pageviews
topic and the value schema will be inferred from Schema Registry.
sql hl_lines="7" CREATE STREAM pageviews ( pageId INT KEY ) WITH ( KAFKA_TOPIC='pageviews-avro-topic', KEY_FORMAT='KAFKA', VALUE_FORMAT='AVRO', PARTITIONS=1 );
The following output from the describe pageviews command shows the
inferred logical schema for the pageviews stream:
ksql> DESCRIBE pageviews;
Name : PAGEVIEWS
Field | Type
------------------------------------
PAGEID | INTEGER (key)
PAGE_NAME | VARCHAR(STRING)
TS | INTEGER
------------------------------------
Important
ksqlDB ignores unsupported types in the physical schema and continues translating supported types to the logical schema. You should verify that the logical schema is translated as expected.
During schema translation from a physical schema to a logical schema,
structtype field names are used as column names in the logical schema. Field names are translated to uppercase, in contrast with schema inference with a schema id, which does not translate field names to uppercase.
If WRAP_SINGLE_VALUE is false in the statement, and if the key
schema is inferred, ROWKEY is used as the key’s column name.
If value schema is inferred, ROWVAL is used as the value’s column
name. The physical schema is used as the column data type.
For example, the following physical schema is AVRO and is defined in
Schema Registry under subject name pageview_count-value:
{"schema": "int"}
The following CREATE statement defines a table on the
pageview-count topic and the value schema will be inferred from
Schema Registry:
sql hl_lines="7" CREATE TABLE pageview_count ( pageId INT PRIMARY KEY ) WITH ( KAFKA_TOPIC='pageview-count', KEY_FORMAT='KAFKA', VALUE_FORMAT='AVRO', WRAP_SINGLE_VALUE=false, PARTITIONS=1 );
The inferred logical schema for the pageview_count table is:
Name : PAGEVIEW_COUNT
Field | Type
-----------------------------------------
PAGEID | INTEGER (primary key)
ROWVAL | INTEGER
-----------------------------------------
For more information about WRAP_SINGLE_VALUE, see
Single field unwrapping.