data-engineering-ecosystem
data-engineering-ecosystem copied to clipboard
Wrong method used to send in kafka-advanced wiki
Currently in line 26 of kafka_producer.py the tutorial uses self.producer.send_messages().
For the latest version of kafka-python this should be self.producer.send().
Good catch @tyaq