1234567891011 |
- def connect_kafka_producer():
- _producer = None
- try:
- _producer = KafkaProducer(bootstrap_servers=['localhost:9092'], api_version=(0, 10))
- except Exception as ex:
- print('Exception while connecting Kafka')
- print(str(ex))
- finally:
- return _producer
|