Kafka - with Java/Python
Given this snippet, what will be printed if send() throws a SerializationException?
try {
producer.send(record).get();
System.out.println("Message sent");
} catch (Exception e) {
System.out.println("Error: " + e.getClass().getSimpleName());
}
