CREATE TABLE AS SELECT¶
Synopsis¶
1 2 3 4 5 6 7 8 9 10 |
|
Description¶
Create a new ksqlDB materialized table view, along with the corresponding Kafka topic, and stream the result of the query as a changelog into the topic.
Note that the WINDOW clause can only be used if the from_item
is a stream and the query contains
a GROUP BY
clause.
Joins to streams can use any stream column. If the join criteria is not the key column of the stream ksqlDB will internally repartition the data.
Important
Kafka guarantees the relative order of any two messages from one source partition only if they are also both in the same partition after the repartition. Otherwise, Kafka is likely to interleave messages. The use case will determine if these ordering guarantees are acceptable.
Joins to tables must use the table's PRIMARY KEY as the join criteria: none primary key joins are not yet supported. For more information, see Join Event Streams with ksqlDB.
See Partition Data to Enable Joins for more information about how to correctly partition your data for joins.
The primary key of the resulting table is determined by the following rules, in order of priority:
1. if the query has a GROUP BY
:
1. if the GROUP BY
is on a single source column reference, the primary key will match the
name, type and contents of the source column.
1. if the GROUP BY
is any other single expression, the primary key will have a system
generated name, unless you provide an alias in the projection, and will match the type and
contents of the result of the expression.
1. otherwise, the primary key will have a system generated name, and will be of type STRING
and contain the grouping expression concatenated together.
1. if the query has a join see Join Synthetic Key Columns for more info.
1. otherwise, the primary key will match the name, unless you provide an alias in the projection,
and type of the source table's primary key.
The projection must include all columns required in the result, including any primary key columns.
For supported serialization formats,
ksqlDB can integrate with the Confluent Schema Registry.
ksqlDB registers the value schema of the new table with Schema Registry automatically.
The schema is registered under the subject <topic-name>-value
.
The WITH clause supports the following properties:
Property | Description |
---|---|
KAFKA_TOPIC | The name of the Kafka topic that backs this table. If this property is not set, then the name of the table will be used as default. |
VALUE_FORMAT | Specifies the serialization format of the message value in the topic. For supported formats, see Serialization Formats. If this property is not set, then the format of the input stream/table is used. |
VALUE_DELIMITER | Used when VALUE_FORMAT='DELIMITED'. Supports single character to be a delimiter, defaults to ','. For space and tab delimited values you must use the special values 'SPACE' or 'TAB', not an actual space or tab character. |
PARTITIONS | The number of partitions in the backing topic. If this property is not set, then the number of partitions of the input stream/table will be used. In join queries, the property values are taken from the left-side stream or table. |
REPLICAS | The replication factor for the topic. If this property is not set, then the number of replicas of the input stream or table will be used. In join queries, the property values are taken from the left-side stream or table. |
TIMESTAMP | Sets a column within this stream's schema to be used as the default source of ROWTIME for any downstream queries. Downstream queries that use time-based operations, such as windowing, will process records in this stream based on the timestamp in this column. The column will be used to set the timestamp on any records emitted to Kafka. Timestamps have a millisecond accuracy. If not supplied, the ROWTIME of the source stream is used. Note: This doesn't affect the processing of the query that populates this stream. For example, given the following statement: CREATE STREAM foo WITH (TIMESTAMP='t2') ASThe window into which each row of bar is placed is determined by bar's ROWTIME , not t2 . |
TIMESTAMP_FORMAT | Used in conjunction with TIMESTAMP. If not set the timestamp column must be of type bigint . If it is set, then the TIMESTAMP column must be of type varchar and have a format that can be parsed with the Java DateTimeFormatter . If your timestamp format has characters requiring single quotes, you can escape them with two successive single quotes, '' , for example: 'yyyy-MM-dd''T''HH:mm:ssX' . For more information on timestamp formats, see DateTimeFormatter. |
WRAP_SINGLE_VALUE | Controls how values are serialized where the values schema contains only a single column. The setting controls how the query will serialize values with a single-column schema. If set to true , ksqlDB will serialize the column as a named column within a record.If set to false , ksqlDB will serialize the column as an anonymous value.If not supplied, the system default, defined by ksql.persistence.wrap.single.values and defaulting to true , is used.Note: null values have special meaning in ksqlDB. Care should be taken when dealing with single-column schemas where the value can be null . For more information, see Single column (un)wrapping.Note: Supplying this property for formats that do not support wrapping, for example DELIMITED , or when the value schema has multiple columns, will result in an error. |
Note
- To use Avro or Protobuf, you must have Schema Registry enabled and
ksql.schema.registry.url
must be set in the ksqlDB server configuration file. See Configure ksqlDB for Avro, Protobuf, and JSON schemas. - Avro and Protobuf field names are not case sensitive in ksqlDB. This matches the ksqlDB column name behavior.
Example¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
1 2 3 4 5 6 7 |
|
1 2 3 4 5 |
|