I have an existing Avro File with the schema. I need to send the file to Producer.
Following is the code i have written.
public class ProducerDataSample {
public static void main(String[] args) {
String topic = "my-topic";
Schema.Parser parser = new Schema.Parser();
Schema schema = parser.parse(AvroSchemaDefinitionLoader.fromFile("encounter.avsc").get());
File file = new File("/home/hello.avro");
try{
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
DatumWriter<GenericRecord> datumWriter = new GenericDatumWriter<GenericRecord>(schema);
DataFileWriter<GenericRecord> dataFileWriter = new DataFileWriter<GenericRecord>(datumWriter);
dataFileWriter.create(schema, outputStream);
dataFileWriter.appendTo(file);
dataFileWriter.close();
System.out.println("Here comes the data: " + outputStream);
// Start KAFKA publishing
Properties props = new Properties();
props.put("bootstrap.servers", "localhost:9092");
props.put("serializer.class", "kafka.serializer.StringEncoder");
props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
props.put("value.serializer", "org.apache.kafka.common.serialization.ByteArraySerializer");
KafkaProducer<String, byte[]> messageProducer = new KafkaProducer<String, byte[]>(props);
ProducerRecord<String, byte[]> producerRecord = null;
producerRecord = new ProducerRecord<String, byte[]>("m-topic","1",outputStream.toByteArray());
messageProducer.send(producerRecord);
messageProducer.close();
}catch(Exception e){
System.out.println("Error in sending to kafka");
e.printStackTrace();
}
}
}
As soon as I execute this, I get the error:
Error in sending to kafka org.apache.avro.AvroRuntimeException: already open
at org.apache.avro.file.DataFileWriter.assertNotOpen(DataFileWriter.java:85)
at org.apache.avro.file.DataFileWriter.appendTo(DataFileWriter.java:203)
at org.apache.avro.file.DataFileWriter.appendTo(DataFileWriter.java:193)
at ProducerDataSample.main(ProducerDataSample.java:51)
Any help. Thanks.