Y
Hacker News
new
|
ask
|
show
|
jobs
by
tmk1108
2026 days ago
How does the architecture of Kinesis compare to Kafka? If you scale up the number of Kafka brokers can you hit similar problem? Or does Kafka not rely on creating threads to connect to each other broker
1 comments
aloknnikhil
2026 days ago
Kafka uses a thread pool for request processing. Both the brokers and the consumer clients use the same request processing loop.
This goes a bit more in-depth:
https://jaceklaskowski.gitbooks.io/apache-kafka/content/kafk...
link
This goes a bit more in-depth: https://jaceklaskowski.gitbooks.io/apache-kafka/content/kafk...