CREATE PIPELINE AS LOAD DATA KAFKA ‘host:9092/’
CONFIG ‘{“sasl.username”: “”,
“sasl.mechanism”: “PLAIN”,
“security.protocol”: “”,
“ssl.ca.location”: “/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem”}’
CREDENTIALS ‘{“sasl.password”: “”}’
INTO TABLE
FORMAT JSON;
I created this pipeline successfully, but when I check the table in SingleStore, it does not have any data.
This is the data I have in a kafka message structure
{ “transaction_id”: “”,
“date”: “”,
“account_id”: “”,
“transaction_type”: “”,
“amount”: ,
“currency”: “”,
“status”: “” }
When the data is extracted, what format is it being extracted in, is it being serialized?
By specifying the FORMAT JSON, is it affecting how the data is being extracted or is the coversion to JSON on the Target (SingleStore end). Can you help with the flow?