title: "CREATE SOURCE: Kafka" description: "Connecting Materialize to a Kafka or Redpanda broker" pagerank: 40 menu: main:
parent: 'create-source'
identifier: cs_kafka
name: Kafka
weight: 20
aliases:
- /sql/create-source/avro-kafka
- /sql/create-source/json-kafka
- /sql/create-source/protobuf-kafka
- /sql/create-source/text-kafka
- /sql/create-source/csv-kafka
{{% create-source/intro %}}
To connect to a Kafka broker (and optionally a schema registry), you first need
to create a connection that specifies access and
authentication parameters. Once created, a connection is reusable across
multiple CREATE SOURCE
and CREATE SINK
statements.
{{% /create-source/intro %}}
{{< note >}} The same syntax, supported formats and features can be used to connect to a Redpanda broker. {{</ note >}}
{{< diagram "create-source-kafka.svg" >}}
format_spec
{{< diagram "format-spec.svg" >}}
key_strat
{{< diagram "key-strat.svg" >}}
val_strat
{{< diagram "val-strat.svg" >}}
strat
{{< diagram "strat.svg" >}}
with_options
{{< diagram "with-options-retain-history.svg" >}}
{{% create-source/syntax-connector-details connector="kafka" envelopes="debezium upsert append-only" %}}
CONNECTION
optionsField | Value | Description |
---|---|---|
TOPIC | text |
The Kafka topic you want to subscribe to. |
GROUP ID PREFIX | text |
The prefix of the consumer group ID to use. See Monitoring consumer lag. Default: materialize-{REGION-ID}-{CONNECTION-ID}-{SOURCE_ID} |
RETAIN HISTORY FOR _retentionperiod |
*Private preview. This option has known performance or stability issues and is under active development.* Duration for which Materialize retains historical data, which is useful to implement durable subscriptions. Accepts positive interval values (e.g. '1hr' ). Default: 1s . |
Format |
Append-only envelope | Upsert envelope | Debezium envelope |
---|---|---|---|
Avro | ✓ | ✓ | ✓ |
JSON | ✓ | ✓ | |
Protobuf | ✓ | ✓ | |
Text/bytes | ✓ | ✓ | |
CSV | ✓ |
By default, the message key is decoded using the same format as the message
value. However, you can set the key and value encodings explicitly using the
KEY FORMAT ... VALUE FORMAT
syntax.
To create a source that uses the standard key-value convention to support
inserts, updates, and deletes within Materialize, you can use ENVELOPE
UPSERT
:
CREATE SOURCE kafka_upsert
FROM KAFKA CONNECTION kafka_connection (TOPIC 'events')
FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection
ENVELOPE UPSERT;
Note that:
Using this envelope is required to consume log compacted topics.
This envelope can lead to high memory and disk utilization in the cluster maintaining the source. We recommend using a standard-sized cluster, rather than a legacy-sized cluster, to automatically spill the workload to disk. See spilling to disk for details.
If a message with a NULL
key is detected, Materialize sets the source into an
error state. To recover an errored source, you must produce a record with a
NULL
value and a NULL
key to the topic, to force a retraction.
As an example, you can use kcat
to produce an empty message:
echo ":" | kcat -b $BROKER -t $TOPIC -Z -K: \
-X security.protocol=SASL_SSL \
-X sasl.mechanisms=SCRAM-SHA-256 \
-X sasl.username=$KAFKA_USERNAME \
-X sasl.password=$KAFKA_PASSWORD
By default, if an error happens while decoding the value of a message for a
specific key, Materialize sets the source into an error state. You can
configure the source to continue ingesting data in the presence of value
decoding errors using the VALUE DECODING ERRORS = INLINE
option:
CREATE SOURCE kafka_upsert
FROM KAFKA CONNECTION kafka_connection (TOPIC 'events')
KEY FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection
VALUE FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection
ENVELOPE UPSERT (VALUE DECODING ERRORS = INLINE);
When this option is specified the source will include an additional column named
error
with type record(description: text)
.
This column and all value columns will be nullable, such that if the most recent value
for the given Kafka message key cannot be decoded, this error
column will contain
the error message. If the most recent value for a key has been successfully decoded,
this column will be NULL
.
To use an alternative name for the error column, use INLINE AS ..
to specify the
column name to use:
ENVELOPE UPSERT (VALUE DECODING ERRORS = (INLINE AS my_error_col))
It might be convenient to implement a parsing view on top of your Kafka upsert source that excludes keys with decoding errors:
CREATE VIEW kafka_upsert_parsed
SELECT *
FROM kafka_upsert
WHERE error IS NULL;
{{< debezium-json >}}
Materialize provides a dedicated envelope (ENVELOPE DEBEZIUM
) to decode Kafka
messages produced by Debezium. To create a source that
interprets Debezium messages:
CREATE SOURCE kafka_repl
FROM KAFKA CONNECTION kafka_connection (TOPIC 'pg_repl.public.table1')
FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection
ENVELOPE DEBEZIUM;
Any materialized view defined on top of this source will be incrementally
updated as new change events stream in through Kafka, as a result of INSERT
,
UPDATE
and DELETE
operations in the original database.
For more details and a step-by-step guide on using Kafka+Debezium for Change Data Capture (CDC), check Using Debezium.
Note that:
Kafka sources that use ENVELOPE UPSERT
or ENVELOPE DEBEZIUM
require storing
the current value for each key in the source to produce retractions when keys
are updated. When using standard cluster sizes,
Materialize will automatically offload this state to disk, seamlessly handling
key spaces that are larger than memory.
Spilling to disk is not available with legacy cluster sizes.
In addition to the message value, Materialize can expose the message key, headers and other source metadata fields to SQL.
The message key is exposed via the INCLUDE KEY
option. Composite keys are also
supported.
CREATE SOURCE kafka_metadata
FROM KAFKA CONNECTION kafka_connection (TOPIC 'data')
KEY FORMAT TEXT
VALUE FORMAT TEXT
INCLUDE KEY AS renamed_id;
Note that:
This option requires specifying the key and value encodings explicitly using the KEY FORMAT ... VALUE FORMAT
syntax.
The UPSERT
envelope always includes keys.
The DEBEZIUM
envelope is incompatible with this option.
Message headers can be retained in Materialize and exposed as part of the source data.
Note that:
DEBEZIUM
envelope is incompatible with this option.All headers
All of a message's headers can be exposed using INCLUDE HEADERS
, followed by
an AS <header_col>
.
This introduces column with the name specified or headers
if none was
specified. The column has the type record(key: text, value: bytea?) list
,
i.e. a list of records containing key-value pairs, where the keys are text
and the values are nullable bytea
s.
CREATE SOURCE kafka_metadata
FROM KAFKA CONNECTION kafka_connection (TOPIC 'data')
FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection
INCLUDE HEADERS
ENVELOPE NONE;
To simplify turning the headers column into a map
(so individual headers can
be searched), you can use the map_build
function:
SELECT
id,
seller,
item,
convert_from(map_build(headers)->'client_id', 'utf-8') AS client_id,
map_build(headers)->'encryption_key' AS encryption_key,
FROM kafka_metadata;
id | seller | item | client_id | encryption_key
----+--------+--------------------+-----------+----------------------
2 | 1592 | Custom Art | 23 | \x796f75207769736821
3 | 1411 | City Bar Crawl | 42 | \x796f75207769736821
Individual headers
Individual message headers can be exposed via the INCLUDE HEADER key AS name
option.
The bytea
value of the header is automatically parsed into an UTF-8 string. To
expose the raw bytea
instead, the BYTES
option can be used.
CREATE SOURCE kafka_metadata
FROM KAFKA CONNECTION kafka_connection (TOPIC 'data')
FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection
INCLUDE HEADER 'c_id' AS client_id, HEADER 'key' AS encryption_key BYTES,
ENVELOPE NONE;
Headers can be queried as any other column in the source:
SELECT
id,
seller,
item,
client_id::numeric,
encryption_key
FROM kafka_metadata;
id | seller | item | client_id | encryption_key
----+--------+--------------------+-----------+----------------------
2 | 1592 | Custom Art | 23 | \x796f75207769736821
3 | 1411 | City Bar Crawl | 42 | \x796f75207769736821
Note that:
Messages that do not contain all header keys as specified in the source DDL will cause an error that prevents further querying the source.
Header values containing badly formed UTF-8 strings will cause an error in the
source that prevents querying it, unless the BYTES
option is specified.
These metadata fields are exposed via the INCLUDE PARTITION
, INCLUDE OFFSET
and INCLUDE TIMESTAMP
options.
CREATE SOURCE kafka_metadata
FROM KAFKA CONNECTION kafka_connection (TOPIC 'data')
FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection
INCLUDE PARTITION, OFFSET, TIMESTAMP AS ts
ENVELOPE NONE;
SELECT "offset" FROM kafka_metadata WHERE ts > '2021-01-01';
offset
------
15
14
13
To start consuming a Kafka stream from a specific offset, you can use the START
OFFSET
option.
CREATE SOURCE kafka_offset
FROM KAFKA CONNECTION kafka_connection (
TOPIC 'data',
-- Start reading from the earliest offset in the first partition,
-- the second partition at 10, and the third partition at 100.
START OFFSET (0, 10, 100)
)
FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection;
Note that:
If fewer offsets than partitions are provided, the remaining partitions will
start at offset 0. This is true if you provide START OFFSET (1)
or START
OFFSET (1, ...)
.
Providing more offsets than partitions is not supported.
It's also possible to set a start offset based on Kafka timestamps, using the
START TIMESTAMP
option. This approach sets the start offset for each
available partition based on the Kafka timestamp and the source behaves as if
START OFFSET
was provided directly.
It's important to note that START TIMESTAMP
is a property of the source: it
will be calculated once at the time the CREATE SOURCE
statement is issued.
This means that the computed start offsets will be the same for all views
depending on the source and stable across restarts.
If you need to limit the amount of data maintained as state after source creation, consider using temporal filters instead.
CONNECTION
optionsField | Value | Description |
---|---|---|
START OFFSET |
int |
Read partitions from the specified offset. You cannot update the offsets once a source has been created; you will need to recreate the source. Offset values must be zero or positive integers. |
START TIMESTAMP |
int |
Use the specified value to set START OFFSET based on the Kafka timestamp. Negative values will be interpreted as relative to the current system time in milliseconds (e.g. -1000 means 1000 ms ago). The offset for each partition will be the earliest offset whose timestamp is greater than or equal to the given timestamp in the corresponding partition. If no such offset exists for a partition, the partition's end offset will be used. |
KEY STRATEGY
and VALUE STRATEGY
It is possible to define how an Avro reader schema will be chosen for Avro sources by
using the KEY STRATEGY
and VALUE STRATEGY
keywords, as shown in the syntax diagram.
A strategy of LATEST
(the default) will choose the latest writer schema from
the schema registry to use as a reader schema. ID
or INLINE
will allow
specifying a schema from the registry by ID or inline in the CREATE SOURCE
statement, respectively.
By default, Kafka sources expose progress metadata as a subsource that you can
use to monitor source ingestion progress. The name of the progress
subsource can be specified when creating a source using the EXPOSE PROGRESS
AS
clause; otherwise, it will be named <src_name>_progress
.
The following metadata is available for each source as a progress subsource:
Field | Type | Meaning |
---|---|---|
partition |
numrange |
The upstream Kafka partition. |
offset |
uint8 |
The greatest offset consumed from each upstream Kafka partition. |
And can be queried using:
SELECT
partition, "offset"
FROM
(
SELECT
-- Take the upper of the range, which is null for non-partition rows
-- Cast partition to u64, which is more ergonomic
upper(partition)::uint8 AS partition, "offset"
FROM
<src_name>_progress
)
WHERE
-- Remove all non-partition rows
partition IS NOT NULL;
As long as any offset continues increasing, Materialize is consuming data from the upstream Kafka broker. For more details on monitoring source ingestion progress and debugging related issues, see Troubleshooting.
To support Kafka tools that monitor consumer lag, Kafka sources commit offsets once the messages up through that offset have been durably recorded in Materialize's storage layer.
However, rather than relying on committed offsets, Materialize suggests using our native progress monitoring, which contains more up-to-date information.
{{< note >}} Some Kafka monitoring tools may indicate that Materialize's consumer groups have no active members. This is not a cause for concern.
Materialize does not participate in the consumer group protocol nor does it recover on restart by reading the committed offsets. The committed offsets are provided solely for the benefit of Kafka monitoring tools. {{< /note >}}
Committed offsets are associated with a consumer group specific to the source.
The ID of the consumer group consists of the prefix configured with the GROUP
ID PREFIX
option followed by a Materialize-generated
suffix.
You should not make assumptions about the number of consumer groups that Materialize will use to consume from a given source. The only guarantee is that the ID of each consumer group will begin with the configured prefix.
The consumer group ID prefix for each Kafka source in the system is available in
the group_id_prefix
column of the mz_kafka_sources
table. To look up the
group_id_prefix
for a source by name, use:
SELECT group_id_prefix
FROM mz_internal.mz_kafka_sources ks
JOIN mz_sources s ON s.id = ks.id
WHERE s.name = '<src_name>'
The access control lists (ACLs) on the Kafka cluster must allow Materialize to perform the following operations on the following resources:
Operation type | Resource type | Resource name |
---|---|---|
Read | Topic | The specified TOPIC option |
Read | Group | All group IDs starting with the specified GROUP ID PREFIX option |
A connection describes how to connect and authenticate to an external system you want Materialize to read data from.
Once created, a connection is reusable across multiple CREATE SOURCE
statements. For more details on creating connections, check the
CREATE CONNECTION
documentation page.
{{< tabs tabID="1" >}} {{< tab "SSL">}}
CREATE SECRET kafka_ssl_key AS '<BROKER_SSL_KEY>';
CREATE SECRET kafka_ssl_crt AS '<BROKER_SSL_CRT>';
CREATE CONNECTION kafka_connection TO KAFKA (
BROKER 'unique-jellyfish-0000.us-east-1.aws.confluent.cloud:9093',
SSL KEY = SECRET kafka_ssl_key,
SSL CERTIFICATE = SECRET kafka_ssl_crt
);
{{< /tab >}} {{< tab "SASL">}}
CREATE SECRET kafka_password AS '<BROKER_PASSWORD>';
CREATE CONNECTION kafka_connection TO KAFKA (
BROKER 'unique-jellyfish-0000.us-east-1.aws.confluent.cloud:9092',
SASL MECHANISMS = 'SCRAM-SHA-256',
SASL USERNAME = 'foo',
SASL PASSWORD = SECRET kafka_password
);
{{< /tab >}} {{< /tabs >}}
If your Kafka broker is not exposed to the public internet, you can tunnel the connection through an AWS PrivateLink service or an SSH bastion host:
{{< tabs tabID="1" >}} {{< tab "AWS PrivateLink">}}
CREATE CONNECTION privatelink_svc TO AWS PRIVATELINK (
SERVICE NAME 'com.amazonaws.vpce.us-east-1.vpce-svc-0e123abc123198abc',
AVAILABILITY ZONES ('use1-az1', 'use1-az4')
);
CREATE CONNECTION kafka_connection TO KAFKA (
BROKERS (
'broker1:9092' USING AWS PRIVATELINK privatelink_svc,
'broker2:9092' USING AWS PRIVATELINK privatelink_svc (PORT 9093)
)
);
For step-by-step instructions on creating AWS PrivateLink connections and configuring an AWS PrivateLink service to accept connections from Materialize, check this guide.
{{< /tab >}} {{< tab "SSH tunnel">}}
CREATE CONNECTION ssh_connection TO SSH TUNNEL (
HOST '<SSH_BASTION_HOST>',
USER '<SSH_BASTION_USER>',
PORT <SSH_BASTION_PORT>
);
CREATE CONNECTION kafka_connection TO KAFKA (
BROKERS (
'broker1:9092' USING SSH TUNNEL ssh_connection,
'broker2:9092' USING SSH TUNNEL ssh_connection
)
);
For step-by-step instructions on creating SSH tunnel connections and configuring an SSH bastion server to accept connections from Materialize, check this guide. {{< /tab >}} {{< /tabs >}}
{{< tabs tabID="1" >}} {{< tab "SSL">}}
CREATE SECRET csr_ssl_crt AS '<CSR_SSL_CRT>';
CREATE SECRET csr_ssl_key AS '<CSR_SSL_KEY>';
CREATE SECRET csr_password AS '<CSR_PASSWORD>';
CREATE CONNECTION csr_connection TO CONFLUENT SCHEMA REGISTRY (
URL 'https://unique-jellyfish-0000.us-east-1.aws.confluent.cloud:9093',
SSL KEY = SECRET csr_ssl_key,
SSL CERTIFICATE = SECRET csr_ssl_crt,
USERNAME = 'foo',
PASSWORD = SECRET csr_password
);
{{< /tab >}} {{< tab "Basic HTTP Authentication">}}
CREATE SECRET IF NOT EXISTS csr_username AS '<CSR_USERNAME>';
CREATE SECRET IF NOT EXISTS csr_password AS '<CSR_PASSWORD>';
CREATE CONNECTION csr_connection TO CONFLUENT SCHEMA REGISTRY (
URL '<CONFLUENT_REGISTRY_URL>',
USERNAME = SECRET csr_username,
PASSWORD = SECRET csr_password
);
{{< /tab >}} {{< /tabs >}}
If your Confluent Schema Registry server is not exposed to the public internet, you can tunnel the connection through an AWS PrivateLink service or an SSH bastion host:
{{< tabs tabID="1" >}} {{< tab "AWS PrivateLink">}}
CREATE CONNECTION privatelink_svc TO AWS PRIVATELINK (
SERVICE NAME 'com.amazonaws.vpce.us-east-1.vpce-svc-0e123abc123198abc',
AVAILABILITY ZONES ('use1-az1', 'use1-az4')
);
CREATE CONNECTION csr_connection TO CONFLUENT SCHEMA REGISTRY (
URL 'http://my-confluent-schema-registry:8081',
AWS PRIVATELINK privatelink_svc
);
For step-by-step instructions on creating AWS PrivateLink connections and configuring an AWS PrivateLink service to accept connections from Materialize, check this guide. {{< /tab >}} {{< tab "SSH tunnel">}}
CREATE CONNECTION ssh_connection TO SSH TUNNEL (
HOST '<SSH_BASTION_HOST>',
USER '<SSH_BASTION_USER>',
PORT <SSH_BASTION_PORT>
);
CREATE CONNECTION csr_connection TO CONFLUENT SCHEMA REGISTRY (
URL 'http://my-confluent-schema-registry:8081',
SSH TUNNEL ssh_connection
);
For step-by-step instructions on creating SSH tunnel connections and configuring an SSH bastion server to accept connections from Materialize, check this guide. {{< /tab >}} {{< /tabs >}}
{{< tabs tabID="1" >}} {{< tab "Avro">}}
Using Confluent Schema Registry
CREATE SOURCE avro_source
FROM KAFKA CONNECTION kafka_connection (TOPIC 'test_topic')
FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection;
{{< /tab >}} {{< tab "JSON">}}
CREATE SOURCE json_source
FROM KAFKA CONNECTION kafka_connection (TOPIC 'test_topic')
FORMAT JSON;
CREATE VIEW typed_kafka_source AS
SELECT
(data->>'field1')::boolean AS field_1,
(data->>'field2')::int AS field_2,
(data->>'field3')::float AS field_3
FROM json_source;
JSON-formatted messages are ingested as a JSON blob. We recommend creating a parsing view on top of your Kafka source that maps the individual fields to columns with the required data types. To avoid doing this tedious task manually, you can use this JSON parsing widget!
{{< /tab >}} {{< tab "Protobuf">}}
Using Confluent Schema Registry
CREATE SOURCE proto_source
FROM KAFKA CONNECTION kafka_connection (TOPIC 'test_topic')
FORMAT PROTOBUF USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_connection;
Using an inline schema
If you're not using a schema registry, you can use the MESSAGE...SCHEMA
clause
to specify a Protobuf schema descriptor inline. Protobuf does not serialize a
schema with the message, so before creating a source you must:
Compile the Protobuf schema into a descriptor file using protoc
:
// example.proto
syntax = "proto3";
message Batch {
int32 id = 1;
// ...
}
protoc --include_imports --descriptor_set_out=example.pb example.proto
Encode the descriptor file into a SQL byte string:
$ printf '\\x' && xxd -p example.pb | tr -d '\n'
\x0a300a0d62696...
Create the source using the encoded descriptor bytes from the previous step
(including the \x
at the beginning):
CREATE SOURCE proto_source
FROM KAFKA CONNECTION kafka_connection (TOPIC 'test_topic')
FORMAT PROTOBUF MESSAGE 'Batch' USING SCHEMA '\x0a300a0d62696...';
For more details about Protobuf message names and descriptors, check the Protobuf format documentation.
{{< /tab >}} {{< tab "Text/bytes">}}
CREATE SOURCE text_source
FROM KAFKA CONNECTION kafka_connection (TOPIC 'test_topic')
FORMAT TEXT
ENVELOPE UPSERT;
{{< /tab >}} {{< tab "CSV">}}
CREATE SOURCE csv_source (col_foo, col_bar, col_baz)
FROM KAFKA CONNECTION kafka_connection (TOPIC 'test_topic')
FORMAT CSV WITH 3 COLUMNS;
{{< /tab >}} {{< /tabs >}}