Kafka - with Java/Python
Given this Kafka SDK code snippet, what will be the output if the message is sent successfully?
producer = KafkaProducer(bootstrap_servers='localhost:9092')
future = producer.send('my_topic', b'hello')
result = future.get(timeout=10)
print(result)