Jroland / kafka-net

Native C# client for Kafka queue servers.
Apache License 2.0
483 stars 232 forks source link

Consumer does not handle messages that have a size larger than max buffer size #25

Open Jroland opened 9 years ago

Jroland commented 9 years ago

The driver will silently fail when a messages is sent to kafka that is larger than the max buffer size. The driver needs to throw a buffer under run exception and then handle this exception by increasing the max buffer size until a message is returned.

Jroland commented 9 years ago

The under run is now handled but we still need a way to setup the initial values on the consumer side.