2021-04-24 18:43:28 +02:00
|
|
|
#!/usr/bin/env python3
|
2021-04-24 19:01:26 +02:00
|
|
|
from kafka import KafkaProducer
|
|
|
|
|
|
|
|
|
|
|
|
producer = KafkaProducer(bootstrap_servers='localhost:9092')
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
n = 10
|
|
|
|
string = "\"" + "a" * n + "\""
|
|
|
|
binstring = string.encode('UTF-8')
|
|
|
|
while True:
|
|
|
|
producer.send('test', binstring)
|
|
|
|
except Exception:
|
|
|
|
producer.close()
|