Alex Damian

Results 46 comments of Alex Damian

It's related to recent merge #140. Should be backed out. Until then just checkout the commit before that.

The current FindRdKafka.cmake should work fine. It searches [here](https://github.com/mfontanini/cppkafka/blob/master/cmake/FindRdKafka.cmake#L29) to find all possible variations of the file such as `librdkafka.so`, `librdkafka.a`, `rdkafka.a` etc... Note that your rdkafka library should be...

Hi @mfontanini, can you please take a look at this? ~thanks

Agreed with you. I think it's a worthwhile change with small breakage risk.

@mfontanini are you ok going forward with this? Can we merge it? Otherwise I'll close it.

@mfontanini please check my last comment.

You can use `wait_for_acks(timeout)` so you don't block. See [here](https://github.com/mfontanini/cppkafka/blob/master/include/cppkafka/utils/buffered_producer.h#L610).

> Yes, probably. But sync_produce doesn't use timeout'ed version of wait_for_acks, and I can't find the way to make it use wait_for_acks with timeout. `sync_produce()` = `produce()` + `wait_for_acks()` (no...

The `ConfugurationOption` constructor takes a string and a value (string, bool, int) hence something like: ``` Configuration c = {{"option1","value"}, {"option2",true},{"option3",3}} ```

You can use `assign()` to specify which offsets you want to start reading from. This can be either called directly if you have a static consumer or from the rebalance...