I try to put a big number of messages (350M) to customer topic (source topic) with value format like this
10957402000||10965746672||2|2756561822|452048703649890|8984048701003649890
and then I make some streams and table on that topic, but the delimited format supported by ksql is just comma separator. I have some questions:
- Is there any way to config ksql can understand my format? Or I have to convert to format default by ksql (comma separator)
- From the original value from source topic like above, how this command can mapping value to table column? Or I have to convert format to json? CREATE STREAM (sub_id BIGINT, contract_id BIGINT, cust_id BIGINT, account_id BIGINT,telecom_service_id BIGINT, isdn BIGINT, imsi BIGINT) \ WITH (KAFKA_TOPIC='customer', VALUE_FORMAT='DELIMITED');
Thanks you.