Hello.
I’m working on a test to insert a Kafka message to a singlestore record, using confluent schema registry.
I used the following pipeline statement to send records to a simple test table with 2 columns of (id, name).
CREATE PIPELINE kafka
AS LOAD DATA KAFKA ‘bootstrapserver:9092/topicname’
SKIP DUPLICATE KEY ERRORS
INTO TABLE ppline
FORMAT AVRO
SCHEMA REGISTRY “schemaregistry:8081”
(ppline.id ← %::id, ppline.name ← %::name);
I had no problem creating and starting the pipeline, but the data is all coming in as NULL.
I was wondering if I should specify the topic name of the schema-value in the CONFIG value or make any other additional settings.