Kafka - Producers
What will be the output of the following Kafka producer code snippet?
ProducerRecordrecord = new ProducerRecord<>("topic1", null, "value1"); System.out.println(record.key()); System.out.println(record.value());
