vertx-kafka-client icon indicating copy to clipboard operation
vertx-kafka-client copied to clipboard

Reactive Kafka Client for Vert.x

Results 31 vertx-kafka-client issues
Sort by recently updated
recently updated
newest added

### Questions resume and pause in KafkaConsumer (reactivex) are not working as expected and causing rebalancing of consumer group ### Version 3.6.0 ### Context It is causing rebalancing of consumer...

bug

I'm using vertx-kafka-client 3.9.1. When i meant to send a message ("abc") to consumer, i got an exception in handler function. After that, i tried to send another message ("xyz"),...

bug

### Questions Getting following exception when I try to build and run with jar file java -jar demo-1.0.0.jar io.vertx.core.impl.NoStackTraceThrowable: Kafka properties file at location kafka.properties is missing. Either specify using...

bug

1. Fixes master branch failure because of ExampleTest 2. Handling the error and fail the handler properly.

`KafkaConsumer.pause()` will *immediately* stop the `KafkaConsumer` from calling the record handler until `resume()` is called. This includes preventing the processing of buffered messages. In contrast, `KafkaConsumer.pause(TopicPartition)` and `KafkaConsumer.pause(Set)` just correspond...

All Links in documentation in `README.md` in this project are broken.

when execute kafak producer write() method,eg: eventloop-1-5 execute wirte method,but the callback is executing in eventloop-3-5, in write method ,i think should add a line like Context context = vertx.getOrCreateContext();...

Hi We are currently experiencing lost records from kafka that are not delivered to the registered data handler. We did some further investigating and testing and there probably seems to...

Thanks to your awesome project, my consumer was up and running in minutes. However, I needed to re-consume the entire queue so did a consumer-group offset reset, then started my...