You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to create a KTABLE with composite key, but it is not taking multiple columns part of the KEY syntax. Do not want to go with GROUP BY approach, that way I have to provide aggregation function and I have many columns, can not apply group by on all those columns.
Getting this error.
ksql> CREATE TABLE DHCP_TBL WITH (KAFKA_TOPIC='dhcp_topic', KEY='IP,PORT',VALUE_FORMAT='AVRO');
No column with the provided key column name in the WITH clause, IP,PORT, exists in the defined schema.
ksql>
The text was updated successfully, but these errors were encountered:
Trying to create a KTABLE with composite key, but it is not taking multiple columns part of the KEY syntax. Do not want to go with GROUP BY approach, that way I have to provide aggregation function and I have many columns, can not apply group by on all those columns.
Getting this error.
ksql> CREATE TABLE DHCP_TBL WITH (KAFKA_TOPIC='dhcp_topic', KEY='IP,PORT',VALUE_FORMAT='AVRO');
No column with the provided key column name in the WITH clause, IP,PORT, exists in the defined schema.
ksql>
The text was updated successfully, but these errors were encountered: