If we have written into a Kafka topic data using a SourceTask, in which we have defined a Schema for SourceRecords different than Schema.STRING_SCHEMA, that is a custom schema for example:
private final Schema valueSchema = SchemaBuilder.struct()
.field("dim0", Schema.FLOAT64_SCHEMA)
.field("dim1", Schema.FLOAT64_SCHEMA)
.field("dim2", Schema.FLOAT64_SCHEMA)
.field("dim3", Schema.FLOAT64_SCHEMA)
.build();
then is it possible for a KafkaConsumer to be able to read data from that topic?
Or only SinkTask can read data from that topic since you can define Schema for SinkRecords as you can for SourceRecords?
Thanks in advance!