Re: handle multiple requests

2020-06-10 Thread Robin Moffatt
You might also find this resource useful in general: https://www.confluent.io/whitepaper/comparing-confluent-platform-with-traditional-messaging-middleware/ -- Robin Moffatt | Senior Developer Advocate | ro...@confluent.io | @rmoff ‪On Wed, 10 Jun 2020 at 16:00, ‫נתי אלמגור‬‎ wrote:‬ > hell

Re: handle multiple requests

2020-06-10 Thread Ricardo Ferreira
Hi there, Unless you are dealing with a low volume scenario, you should avoid tie each message/record to a specific thread. It will limit your ability to scale the processing out as CPU is a scarce resource. Alternatively, you should write your code to fetch multiple records at once (like a ba