Kafka - Event-Driven Architecture
You have this Kafka consumer code snippet:
What is the main issue that can cause scaling problems?
consumer.subscribe(['topic1'])
for message in consumer:
print(message.value)
consumer.commit()What is the main issue that can cause scaling problems?
