I'm trying to backup Kafka data using FileStreamSink connector. I know there are better options but my company already have file backup infrastructure (based on NetApp), so I'd like to dump Kafka data to a binary file and backup the file.
As the data stored in Kafka is encrypted, so we don't have a schema to use or transform. I tried to use this setting, but doesn't seem to work well: key.converter=org.apache.kafka.connect.converters.ByteArrayConverter value.converter=org.apache.kafka.connect.converters.ByteArrayConverter
Do you have suggestions for this case? Thanks.