Good morning, currently I’m having trouble with following through on the tutorial for the Apache Kafka setup in the Maker’s blog. Right now, I wanted to insert this code to replace it in the DumpProcessor java file but currently I’m coming up with the compiling error that the variables in this code are undefined. What steps do I need to take to fix this?
>
return new SourceRecord[]{new SourceRecord(null, //sourcePartition null, //sourceOffset kafkaTopic, //topic null, //partition null, //keySchema mTopic, //key null, //valueSchema mMessage.toString(), //value new Long(123L))}; //long timestamp }Best Regards, Keith Springs