The json in kafka is a complex nested json, how to parse it and put it into clickhouse
To parse complex nested JSON data in Kafka and insert it into ClickHouse, you can follow the steps below:
Create a Kafka engine table to read data from Kafka. For example:
CREATE TABLE my_kafka_table (
key String,
value String
) ENGINE = Ka...
h.zshipu.com2 min read