Kafka - Basics and Event Streaming
What will be the output of this Python code snippet using kafka-python?
from kafka import KafkaProducer
producer = KafkaProducer(bootstrap_servers='localhost:9092')
future = producer.send('test-topic', b'hello')
result = future.get(timeout=10)
print(result.topic)
